diff --git a/.pipelines/OneBranch.Official.yml b/.pipelines/OneBranch.Official.yml
index 5ecc638b6..91e686622 100644
--- a/.pipelines/OneBranch.Official.yml
+++ b/.pipelines/OneBranch.Official.yml
@@ -130,12 +130,6 @@ extends:
artifactName: 'drop_build_x64'
targetPath: '$(Build.SourcesDirectory)/x64'
- - task: DownloadPipelineArtifact@2
- displayName: 'Download arm artifacts'
- inputs:
- artifactName: 'drop_build_arm'
- targetPath: '$(Build.SourcesDirectory)/arm'
-
- task: DownloadPipelineArtifact@2
displayName: 'Download arm64 artifacts'
inputs:
@@ -159,7 +153,6 @@ extends:
echo d | xcopy $(Build.SourcesDirectory)\x86\cppwinrt_fast_forwarder.lib build\native\lib\Win32
echo d | xcopy $(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib build\native\lib\amd64
echo d | xcopy $(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib build\native\lib\x64
- echo d | xcopy $(Build.SourcesDirectory)\arm\cppwinrt_fast_forwarder.lib build\native\lib\arm
echo d | xcopy $(Build.SourcesDirectory)\arm64\cppwinrt_fast_forwarder.lib build\native\lib\arm64
- stage: NuGet
diff --git a/.pipelines/build.yml b/.pipelines/build.yml
index b46e36eb9..ebe8ad041 100644
--- a/.pipelines/build.yml
+++ b/.pipelines/build.yml
@@ -31,8 +31,6 @@ jobs:
buildPlatform: 'x86'
x64:
buildPlatform: 'x64'
- arm:
- buildPlatform: 'arm'
arm64:
buildPlatform: 'arm64'
@@ -169,12 +167,6 @@ jobs:
artifactName: $(BuildConfiguration)_x64
downloadPath: $(Build.SourcesDirectory)\x64
- - task: DownloadPipelineArtifact@1
- displayName: Download arm Artifacts
- inputs:
- artifactName: $(BuildConfiguration)_arm
- downloadPath: $(Build.SourcesDirectory)\arm
-
- task: DownloadPipelineArtifact@1
displayName: Download arm64 Artifacts
inputs:
@@ -262,7 +254,7 @@ jobs:
- task: CmdLine@2
displayName: Stage MSBuild vpack
inputs:
- script: "set TargetDir=$(Build.SourcesDirectory)\\msbuild\nrd /s /q %TargetDir% >nul 2>&1\nmd %TargetDir%\ncd %TargetDir%\n\ncopy $(Build.SourcesDirectory)\\vsix\\Microsoft.Cpp.CppWinRT.props\ncopy $(Build.SourcesDirectory)\\nuget\\Microsoft.Windows.CppWinRT.props Microsoft.Cpp.CppWinRTEnabled.props \ncopy $(Build.SourcesDirectory)\\nuget\\Microsoft.Windows.CppWinRT.targets Microsoft.Cpp.CppWinRTEnabled.targets\ncopy $(Build.SourcesDirectory)\\nuget\\CppWinrtRules.Project.xml CppWinrtRules.Project.xml\necho d | xcopy $(Build.SourcesDirectory)\\x86\\cppwinrt_fast_forwarder.lib build\\native\\lib\\i386\necho d | xcopy $(Build.SourcesDirectory)\\x86\\cppwinrt_fast_forwarder.lib build\\native\\lib\\Win32\necho d | xcopy $(Build.SourcesDirectory)\\x64\\cppwinrt_fast_forwarder.lib build\\native\\lib\\amd64\necho d | xcopy $(Build.SourcesDirectory)\\x64\\cppwinrt_fast_forwarder.lib build\\native\\lib\\x64\necho d | xcopy $(Build.SourcesDirectory)\\arm\\cppwinrt_fast_forwarder.lib build\\native\\lib\\arm\necho d | xcopy $(Build.SourcesDirectory)\\arm64\\cppwinrt_fast_forwarder.lib build\\native\\lib\\arm64\n"
+ script: "set TargetDir=$(Build.SourcesDirectory)\\msbuild\nrd /s /q %TargetDir% >nul 2>&1\nmd %TargetDir%\ncd %TargetDir%\n\ncopy $(Build.SourcesDirectory)\\vsix\\Microsoft.Cpp.CppWinRT.props\ncopy $(Build.SourcesDirectory)\\nuget\\Microsoft.Windows.CppWinRT.props Microsoft.Cpp.CppWinRTEnabled.props \ncopy $(Build.SourcesDirectory)\\nuget\\Microsoft.Windows.CppWinRT.targets Microsoft.Cpp.CppWinRTEnabled.targets\ncopy $(Build.SourcesDirectory)\\nuget\\CppWinrtRules.Project.xml CppWinrtRules.Project.xml\necho d | xcopy $(Build.SourcesDirectory)\\x86\\cppwinrt_fast_forwarder.lib build\\native\\lib\\i386\necho d | xcopy $(Build.SourcesDirectory)\\x86\\cppwinrt_fast_forwarder.lib build\\native\\lib\\Win32\necho d | xcopy $(Build.SourcesDirectory)\\x64\\cppwinrt_fast_forwarder.lib build\\native\\lib\\amd64\necho d | xcopy $(Build.SourcesDirectory)\\x64\\cppwinrt_fast_forwarder.lib build\\native\\lib\\x64\necho d | xcopy $(Build.SourcesDirectory)\\arm64\\cppwinrt_fast_forwarder.lib build\\native\\lib\\arm64\n"
failOnStderr: true
- task: PkgESVPack@12
@@ -343,12 +335,6 @@ jobs:
artifactName: $(BuildConfiguration)_x64
downloadPath: $(Build.SourcesDirectory)\x64
- - task: DownloadPipelineArtifact@1
- displayName: Download arm Artifacts
- inputs:
- artifactName: $(BuildConfiguration)_arm
- downloadPath: $(Build.SourcesDirectory)\arm
-
- task: DownloadPipelineArtifact@1
displayName: Download arm64 Artifacts
inputs:
@@ -430,7 +416,7 @@ jobs:
command: pack
searchPatternPack: nuget/Microsoft.Windows.CppWinRT.nuspec
versioningScheme: byBuildNumber
- buildProperties: 'target_version=$(Build.BuildNumber);cppwinrt_exe=$(Build.ArtifactStagingDirectory)\x86\cppwinrt.exe;cppwinrt_fast_fwd_x86=$(Build.SourcesDirectory)\x86\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=$(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm=$(Build.SourcesDirectory)\arm\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=$(Build.SourcesDirectory)\arm64\cppwinrt_fast_forwarder.lib '
+ buildProperties: 'target_version=$(Build.BuildNumber);cppwinrt_exe=$(Build.ArtifactStagingDirectory)\x86\cppwinrt.exe;cppwinrt_fast_fwd_x86=$(Build.SourcesDirectory)\x86\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=$(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=$(Build.SourcesDirectory)\arm64\cppwinrt_fast_forwarder.lib '
- task: ComponentGovernanceComponentDetection@0
displayName: Component Detection
diff --git a/.pipelines/jobs/OneBranchBuild.yml b/.pipelines/jobs/OneBranchBuild.yml
index f8ca8cedc..9053fc21c 100644
--- a/.pipelines/jobs/OneBranchBuild.yml
+++ b/.pipelines/jobs/OneBranchBuild.yml
@@ -20,8 +20,6 @@ jobs:
BuildPlatform: 'x86'
x64:
BuildPlatform: 'x64'
- arm:
- BuildPlatform: 'arm'
arm64:
BuildPlatform: 'arm64'
diff --git a/.pipelines/jobs/OneBranchNuGet.yml b/.pipelines/jobs/OneBranchNuGet.yml
index e2a871114..4d4a7b2ea 100644
--- a/.pipelines/jobs/OneBranchNuGet.yml
+++ b/.pipelines/jobs/OneBranchNuGet.yml
@@ -43,12 +43,6 @@ jobs:
artifactName: 'drop_build_x64'
targetPath: '$(Build.SourcesDirectory)/x64'
- - task: DownloadPipelineArtifact@1
- displayName: 'Download arm artifacts'
- inputs:
- artifactName: 'drop_build_arm'
- targetPath: '$(Build.SourcesDirectory)/arm'
-
- task: DownloadPipelineArtifact@1
displayName: 'Download arm64 artifacts'
inputs:
@@ -59,7 +53,7 @@ jobs:
displayName: 'Build NuGet package'
inputs:
command: 'custom'
- arguments: 'pack nuget/Microsoft.Windows.CppWinRT.nuspec -NonInteractive -OutputDirectory $(ob_outputDirectory)\packages -Properties Configuration=release;cppwinrt_exe=$(Build.SourcesDirectory)\x86\cppwinrt\cppwinrt.exe;cppwinrt_fast_fwd_x86=$(Build.SourcesDirectory)\x86\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=$(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm=$(Build.SourcesDirectory)\arm\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=$(Build.SourcesDirectory)\arm64\cppwinrt_fast_forwarder.lib;target_version=$(PackageVersion) -Version $(PackageVersion) -Verbosity Detailed'
+ arguments: 'pack nuget/Microsoft.Windows.CppWinRT.nuspec -NonInteractive -OutputDirectory $(ob_outputDirectory)\packages -Properties Configuration=release;cppwinrt_exe=$(Build.SourcesDirectory)\x86\cppwinrt\cppwinrt.exe;cppwinrt_fast_fwd_x86=$(Build.SourcesDirectory)\x86\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=$(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=$(Build.SourcesDirectory)\arm64\cppwinrt_fast_forwarder.lib;target_version=$(PackageVersion) -Version $(PackageVersion) -Verbosity Detailed'
- task: onebranch.pipeline.signing@1
displayName: '🔒 Onebranch Signing for NuGet package'
diff --git a/.pipelines/jobs/OneBranchVsix.yml b/.pipelines/jobs/OneBranchVsix.yml
index b4d23eb44..b1a6c8eeb 100644
--- a/.pipelines/jobs/OneBranchVsix.yml
+++ b/.pipelines/jobs/OneBranchVsix.yml
@@ -71,12 +71,6 @@ jobs:
artifactName: 'drop_build_x64'
targetPath: '$(Build.SourcesDirectory)\x64'
- - task: DownloadPipelineArtifact@2
- displayName: 'Download arm binaries'
- inputs:
- artifactName: 'drop_build_arm'
- targetPath: '$(Build.SourcesDirectory)\arm'
-
- task: DownloadPipelineArtifact@2
displayName: 'Download arm64 binaries'
inputs:
diff --git a/Directory.Build.Props b/Directory.Build.Props
index 95286d288..cff3f7bda 100644
--- a/Directory.Build.Props
+++ b/Directory.Build.Props
@@ -42,7 +42,7 @@
x86
$(SolutionDir)_build\$(CppWinRTPlatform)\$(Configuration)\
$(OutDir)
- $(SolutionDir)_build\x86\$(Configuration)\
+ $(SolutionDir)_build\x86\$(Configuration)\
diff --git a/README.md b/README.md
index 691809d31..1749fea0c 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ If you really want to build it yourself, the simplest way to do so is to run the
* Open the `cppwinrt.sln` solution.
* Choose a configuration (x64, x86, Release, Debug) and build projects as needed.
-If you are working on an ARM64 or ARM specific issue from an x64 or x86 host, you will need to instead:
+If you are working on an ARM64 specific issue from an x64 or x86 host, you will need to instead:
* Open the `cppwinrt.sln` solution
* Build the x86 version of the "cppwinrt" project first
diff --git a/build_nuget.cmd b/build_nuget.cmd
index cb950a625..3926e4d0b 100644
--- a/build_nuget.cmd
+++ b/build_nuget.cmd
@@ -5,9 +5,8 @@ if "%target_version%"=="" set target_version=3.0.0.0
call msbuild /m /p:Configuration=Release,Platform=x86,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
call msbuild /m /p:Configuration=Release,Platform=x64,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
-call msbuild /m /p:Configuration=Release,Platform=arm,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
call msbuild /m /p:Configuration=Release,Platform=arm64,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
call msbuild /m /p:Configuration=Release,Platform=x86,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:cppwinrt
-nuget pack nuget\Microsoft.Windows.CppWinRT.nuspec -Properties target_version=%target_version%;cppwinrt_exe=%cd%\_build\x86\Release\cppwinrt.exe;cppwinrt_fast_fwd_x86=%cd%\_build\x86\Release\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=%cd%\_build\x64\Release\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm=%cd%\_build\arm\Release\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=%cd%\_build\arm64\Release\cppwinrt_fast_forwarder.lib
+nuget pack nuget\Microsoft.Windows.CppWinRT.nuspec -Properties target_version=%target_version%;cppwinrt_exe=%cd%\_build\x86\Release\cppwinrt.exe;cppwinrt_fast_fwd_x86=%cd%\_build\x86\Release\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=%cd%\_build\x64\Release\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=%cd%\_build\arm64\Release\cppwinrt_fast_forwarder.lib
diff --git a/build_prior_projection.cmd b/build_prior_projection.cmd
index c7bdf2f64..9d10f3eaa 100644
--- a/build_prior_projection.cmd
+++ b/build_prior_projection.cmd
@@ -12,7 +12,6 @@ if /I "%target_platform%" equ "all" (
)
call %0 x86 !target_configuration!
call %0 x64 !target_configuration!
- call %0 arm !target_configuration!
call %0 arm64 !target_configuration!
goto :eof
)
diff --git a/build_projection.cmd b/build_projection.cmd
index 778fa7aca..140e6c7f8 100644
--- a/build_projection.cmd
+++ b/build_projection.cmd
@@ -12,7 +12,6 @@ if /I "%target_platform%" equ "all" (
)
call %0 x86 !target_configuration!
call %0 x64 !target_configuration!
- call %0 arm !target_configuration!
call %0 arm64 !target_configuration!
goto :eof
)
diff --git a/build_test_all.cmd b/build_test_all.cmd
index 89967a04b..4372acfd5 100644
--- a/build_test_all.cmd
+++ b/build_test_all.cmd
@@ -18,8 +18,6 @@ call .nuget\nuget.exe restore test\nuget\NugetTest.sln
call msbuild /m /p:Configuration=%target_configuration%,Platform=%target_platform%,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
-if "%target_platform%"=="arm" goto :eof
-
call msbuild /p:Configuration=%target_configuration%,Platform=%target_platform%,Deployment=Component;CppWinRTBuildVersion=%target_version% natvis\cppwinrtvisualizer.sln
call msbuild /p:Configuration=%target_configuration%,Platform=%target_platform%,Deployment=Standalone;CppWinRTBuildVersion=%target_version% natvis\cppwinrtvisualizer.sln
diff --git a/build_vsix.cmd b/build_vsix.cmd
index 111527a48..9908462ef 100644
--- a/build_vsix.cmd
+++ b/build_vsix.cmd
@@ -19,7 +19,6 @@ call .nuget\nuget.exe restore test\nuget\NugetTest.sln
rem Build fast forwarder libs or all arches
call msbuild /m /p:Configuration=%target_configuration%,Platform=x86,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
call msbuild /m /p:Configuration=%target_configuration%,Platform=x64,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
-call msbuild /m /p:Configuration=%target_configuration%,Platform=arm,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
call msbuild /m /p:Configuration=%target_configuration%,Platform=arm64,CppWinRTBuildVersion=%target_version% cppwinrt.sln /t:fast_fwd
rem Build cppwinrt.exe for x86 only
@@ -31,7 +30,7 @@ call msbuild /p:Configuration=%target_configuration%,Platform=x86,Deployment=%ta
call msbuild /p:Configuration=%target_configuration%,Platform=arm64,Deployment=%target_deployment%,CppWinRTBuildVersion=%target_version% natvis\cppwinrtvisualizer.sln
rem Build nuget
-.nuget\nuget.exe pack nuget\Microsoft.Windows.CppWinRT.nuspec -NonInteractive -OutputDirectory %this_dir%_build -Properties Configuration=%target_configuration%;cppwinrt_exe=%this_dir%_build\x86\%target_configuration%\cppwinrt.exe;cppwinrt_fast_fwd_x86=%this_dir%_build\x86\%target_configuration%\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=%this_dir%_build\x64\%target_configuration%\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm=%this_dir%_build\arm\%target_configuration%\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=%this_dir%_build\arm64\%target_configuration%\cppwinrt_fast_forwarder.lib -version %target_version% -Verbosity Detailed
+.nuget\nuget.exe pack nuget\Microsoft.Windows.CppWinRT.nuspec -NonInteractive -OutputDirectory %this_dir%_build -Properties Configuration=%target_configuration%;cppwinrt_exe=%this_dir%_build\x86\%target_configuration%\cppwinrt.exe;cppwinrt_fast_fwd_x86=%this_dir%_build\x86\%target_configuration%\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_x64=%this_dir%_build\x64\%target_configuration%\cppwinrt_fast_forwarder.lib;cppwinrt_fast_fwd_arm64=%this_dir%_build\arm64\%target_configuration%\cppwinrt_fast_forwarder.lib -version %target_version% -Verbosity Detailed
rem Build vsix
call msbuild /restore /p:Configuration=%target_configuration%,Platform="Any CPU",Deployment=%target_deployment%,CppWinRTVersion=%target_version%,NatvisDirx86=%this_dir%natvis\x86\%target_configuration%\%target_deployment%,NatvisDirx64=%this_dir%natvis\x64\%target_configuration%\%target_deployment%,NatvisDirarm64=%this_dir%natvis\arm64\%target_configuration%\%target_deployment%,NupkgDir=%this_dir%_build vsix\vsix.sln
diff --git a/cppwinrt.sln b/cppwinrt.sln
index e2ac95942..5964f976b 100644
--- a/cppwinrt.sln
+++ b/cppwinrt.sln
@@ -134,346 +134,260 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
- Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|ARM.ActiveCfg = Debug|ARM
- {D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|ARM.Build.0 = Debug|ARM
{D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|ARM64.ActiveCfg = Debug|ARM64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|ARM64.Build.0 = Debug|ARM64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|x64.ActiveCfg = Debug|x64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|x64.Build.0 = Debug|x64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|x86.ActiveCfg = Debug|Win32
{D613FB39-5035-4043-91E2-BAB323908AF4}.Debug|x86.Build.0 = Debug|Win32
- {D613FB39-5035-4043-91E2-BAB323908AF4}.Release|ARM.ActiveCfg = Release|ARM
- {D613FB39-5035-4043-91E2-BAB323908AF4}.Release|ARM.Build.0 = Release|ARM
{D613FB39-5035-4043-91E2-BAB323908AF4}.Release|ARM64.ActiveCfg = Release|ARM64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Release|ARM64.Build.0 = Release|ARM64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Release|x64.ActiveCfg = Release|x64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Release|x64.Build.0 = Release|x64
{D613FB39-5035-4043-91E2-BAB323908AF4}.Release|x86.ActiveCfg = Release|Win32
{D613FB39-5035-4043-91E2-BAB323908AF4}.Release|x86.Build.0 = Release|Win32
- {FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|ARM.ActiveCfg = Debug|ARM
- {FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|ARM.Build.0 = Debug|ARM
{FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|ARM64.ActiveCfg = Debug|ARM64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|ARM64.Build.0 = Debug|ARM64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|x64.ActiveCfg = Debug|x64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|x64.Build.0 = Debug|x64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|x86.ActiveCfg = Debug|Win32
{FB239623-7D19-4025-BCEA-B43298D4A315}.Debug|x86.Build.0 = Debug|Win32
- {FB239623-7D19-4025-BCEA-B43298D4A315}.Release|ARM.ActiveCfg = Release|ARM
- {FB239623-7D19-4025-BCEA-B43298D4A315}.Release|ARM.Build.0 = Release|ARM
{FB239623-7D19-4025-BCEA-B43298D4A315}.Release|ARM64.ActiveCfg = Release|ARM64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Release|ARM64.Build.0 = Release|ARM64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Release|x64.ActiveCfg = Release|x64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Release|x64.Build.0 = Release|x64
{FB239623-7D19-4025-BCEA-B43298D4A315}.Release|x86.ActiveCfg = Release|Win32
{FB239623-7D19-4025-BCEA-B43298D4A315}.Release|x86.Build.0 = Release|Win32
- {C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|ARM.ActiveCfg = Debug|ARM
- {C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|ARM.Build.0 = Debug|ARM
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|ARM64.ActiveCfg = Debug|ARM64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|ARM64.Build.0 = Debug|ARM64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|x64.ActiveCfg = Debug|x64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|x64.Build.0 = Debug|x64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|x86.ActiveCfg = Debug|Win32
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Debug|x86.Build.0 = Debug|Win32
- {C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|ARM.ActiveCfg = Release|ARM
- {C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|ARM.Build.0 = Release|ARM
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|ARM64.ActiveCfg = Release|ARM64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|ARM64.Build.0 = Release|ARM64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|x64.ActiveCfg = Release|x64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|x64.Build.0 = Release|x64
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|x86.ActiveCfg = Release|Win32
{C8B95FCB-9B0B-4E9F-B7D5-643883C192C9}.Release|x86.Build.0 = Release|Win32
- {559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|ARM.ActiveCfg = Debug|ARM
- {559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|ARM.Build.0 = Debug|ARM
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|ARM64.ActiveCfg = Debug|ARM64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|ARM64.Build.0 = Debug|ARM64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|x64.ActiveCfg = Debug|x64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|x64.Build.0 = Debug|x64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|x86.ActiveCfg = Debug|Win32
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Debug|x86.Build.0 = Debug|Win32
- {559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|ARM.ActiveCfg = Release|ARM
- {559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|ARM.Build.0 = Release|ARM
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|ARM64.ActiveCfg = Release|ARM64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|ARM64.Build.0 = Release|ARM64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|x64.ActiveCfg = Release|x64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|x64.Build.0 = Release|x64
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|x86.ActiveCfg = Release|Win32
{559A7CF4-DC5F-4D62-BA6B-0C2B025593F8}.Release|x86.Build.0 = Release|Win32
- {152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|ARM.ActiveCfg = Debug|ARM
- {152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|ARM.Build.0 = Debug|ARM
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|ARM64.ActiveCfg = Debug|ARM64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|ARM64.Build.0 = Debug|ARM64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|x64.ActiveCfg = Debug|x64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|x64.Build.0 = Debug|x64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|x86.ActiveCfg = Debug|Win32
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Debug|x86.Build.0 = Debug|Win32
- {152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|ARM.ActiveCfg = Release|ARM
- {152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|ARM.Build.0 = Release|ARM
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|ARM64.ActiveCfg = Release|ARM64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|ARM64.Build.0 = Release|ARM64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|x64.ActiveCfg = Release|x64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|x64.Build.0 = Release|x64
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|x86.ActiveCfg = Release|Win32
{152E4C6E-9A9D-4D5A-B38D-4905D173649A}.Release|x86.Build.0 = Release|Win32
- {A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|ARM.ActiveCfg = Debug|ARM
- {A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|ARM.Build.0 = Debug|ARM
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|ARM64.ActiveCfg = Debug|ARM64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|ARM64.Build.0 = Debug|ARM64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|x64.ActiveCfg = Debug|x64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|x64.Build.0 = Debug|x64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|x86.ActiveCfg = Debug|Win32
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Debug|x86.Build.0 = Debug|Win32
- {A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|ARM.ActiveCfg = Release|ARM
- {A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|ARM.Build.0 = Release|ARM
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|ARM64.ActiveCfg = Release|ARM64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|ARM64.Build.0 = Release|ARM64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|x64.ActiveCfg = Release|x64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|x64.Build.0 = Release|x64
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|x86.ActiveCfg = Release|Win32
{A91B8BF3-28E4-4D9E-8DBA-64B70E4F0270}.Release|x86.Build.0 = Release|Win32
- {D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|ARM.ActiveCfg = Debug|ARM
- {D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|ARM.Build.0 = Debug|ARM
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|ARM64.ActiveCfg = Debug|ARM64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|ARM64.Build.0 = Debug|ARM64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|x64.ActiveCfg = Debug|x64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|x64.Build.0 = Debug|x64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|x86.ActiveCfg = Debug|Win32
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Debug|x86.Build.0 = Debug|Win32
- {D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|ARM.ActiveCfg = Release|ARM
- {D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|ARM.Build.0 = Release|ARM
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|ARM64.ActiveCfg = Release|ARM64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|ARM64.Build.0 = Release|ARM64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|x64.ActiveCfg = Release|x64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|x64.Build.0 = Release|x64
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|x86.ActiveCfg = Release|Win32
{D2961EA1-A8CA-4A62-B760-948403DC8494}.Release|x86.Build.0 = Release|Win32
- {85695954-3800-4558-9857-966E69E9F9EC}.Debug|ARM.ActiveCfg = Debug|ARM
- {85695954-3800-4558-9857-966E69E9F9EC}.Debug|ARM.Build.0 = Debug|ARM
{85695954-3800-4558-9857-966E69E9F9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64
{85695954-3800-4558-9857-966E69E9F9EC}.Debug|ARM64.Build.0 = Debug|ARM64
{85695954-3800-4558-9857-966E69E9F9EC}.Debug|x64.ActiveCfg = Debug|x64
{85695954-3800-4558-9857-966E69E9F9EC}.Debug|x64.Build.0 = Debug|x64
{85695954-3800-4558-9857-966E69E9F9EC}.Debug|x86.ActiveCfg = Debug|Win32
{85695954-3800-4558-9857-966E69E9F9EC}.Debug|x86.Build.0 = Debug|Win32
- {85695954-3800-4558-9857-966E69E9F9EC}.Release|ARM.ActiveCfg = Release|ARM
- {85695954-3800-4558-9857-966E69E9F9EC}.Release|ARM.Build.0 = Release|ARM
{85695954-3800-4558-9857-966E69E9F9EC}.Release|ARM64.ActiveCfg = Release|ARM64
{85695954-3800-4558-9857-966E69E9F9EC}.Release|ARM64.Build.0 = Release|ARM64
{85695954-3800-4558-9857-966E69E9F9EC}.Release|x64.ActiveCfg = Release|x64
{85695954-3800-4558-9857-966E69E9F9EC}.Release|x64.Build.0 = Release|x64
{85695954-3800-4558-9857-966E69E9F9EC}.Release|x86.ActiveCfg = Release|Win32
{85695954-3800-4558-9857-966E69E9F9EC}.Release|x86.Build.0 = Release|Win32
- {F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|ARM.ActiveCfg = Debug|ARM
- {F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|ARM.Build.0 = Debug|ARM
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|ARM64.ActiveCfg = Debug|ARM64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|ARM64.Build.0 = Debug|ARM64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|x64.ActiveCfg = Debug|x64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|x64.Build.0 = Debug|x64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|x86.ActiveCfg = Debug|Win32
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Debug|x86.Build.0 = Debug|Win32
- {F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|ARM.ActiveCfg = Release|ARM
- {F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|ARM.Build.0 = Release|ARM
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|ARM64.ActiveCfg = Release|ARM64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|ARM64.Build.0 = Release|ARM64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|x64.ActiveCfg = Release|x64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|x64.Build.0 = Release|x64
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|x86.ActiveCfg = Release|Win32
{F1C915B3-2C64-4992-AFB7-7F035B1A7607}.Release|x86.Build.0 = Release|Win32
- {13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|ARM.ActiveCfg = Debug|ARM
- {13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|ARM.Build.0 = Debug|ARM
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|ARM64.ActiveCfg = Debug|ARM64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|ARM64.Build.0 = Debug|ARM64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|x64.ActiveCfg = Debug|x64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|x64.Build.0 = Debug|x64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|x86.ActiveCfg = Debug|Win32
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Debug|x86.Build.0 = Debug|Win32
- {13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|ARM.ActiveCfg = Release|ARM
- {13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|ARM.Build.0 = Release|ARM
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|ARM64.ActiveCfg = Release|ARM64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|ARM64.Build.0 = Release|ARM64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|x64.ActiveCfg = Release|x64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|x64.Build.0 = Release|x64
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|x86.ActiveCfg = Release|Win32
{13333A6F-6A4A-48CD-865C-0F65135EB018}.Release|x86.Build.0 = Release|Win32
- {0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|ARM.ActiveCfg = Debug|ARM
- {0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|ARM.Build.0 = Debug|ARM
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|ARM64.ActiveCfg = Debug|ARM64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|ARM64.Build.0 = Debug|ARM64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|x64.ActiveCfg = Debug|x64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|x64.Build.0 = Debug|x64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|x86.ActiveCfg = Debug|Win32
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Debug|x86.Build.0 = Debug|Win32
- {0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|ARM.ActiveCfg = Release|ARM
- {0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|ARM.Build.0 = Release|ARM
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|ARM64.ActiveCfg = Release|ARM64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|ARM64.Build.0 = Release|ARM64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|x64.ActiveCfg = Release|x64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|x64.Build.0 = Release|x64
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|x86.ActiveCfg = Release|Win32
{0080F6D1-AEC3-4F89-ADE1-3D22A7EBF99E}.Release|x86.Build.0 = Release|Win32
- {0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|ARM.ActiveCfg = Debug|ARM
- {0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|ARM.Build.0 = Debug|ARM
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|ARM64.ActiveCfg = Debug|ARM64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|ARM64.Build.0 = Debug|ARM64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|x64.ActiveCfg = Debug|x64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|x64.Build.0 = Debug|x64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|x86.ActiveCfg = Debug|Win32
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Debug|x86.Build.0 = Debug|Win32
- {0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|ARM.ActiveCfg = Release|ARM
- {0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|ARM.Build.0 = Release|ARM
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|ARM64.ActiveCfg = Release|ARM64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|ARM64.Build.0 = Release|ARM64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|x64.ActiveCfg = Release|x64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|x64.Build.0 = Release|x64
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|x86.ActiveCfg = Release|Win32
{0E0ACA62-A92F-44CF-BD41-AEB541946DF8}.Release|x86.Build.0 = Release|Win32
- {F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|ARM.ActiveCfg = Debug|ARM
- {F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|ARM.Build.0 = Debug|ARM
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|ARM64.ActiveCfg = Debug|ARM64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|ARM64.Build.0 = Debug|ARM64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|x64.ActiveCfg = Debug|x64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|x64.Build.0 = Debug|x64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|x86.ActiveCfg = Debug|Win32
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Debug|x86.Build.0 = Debug|Win32
- {F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|ARM.ActiveCfg = Release|ARM
- {F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|ARM.Build.0 = Release|ARM
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|ARM64.ActiveCfg = Release|ARM64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|ARM64.Build.0 = Release|ARM64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|x64.ActiveCfg = Release|x64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|x64.Build.0 = Release|x64
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|x86.ActiveCfg = Release|Win32
{F8A1FE5A-DC8A-49DF-B882-DEF76E38E484}.Release|x86.Build.0 = Release|Win32
- {B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|ARM.ActiveCfg = Debug|ARM
- {B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|ARM.Build.0 = Debug|ARM
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|ARM64.ActiveCfg = Debug|ARM64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|ARM64.Build.0 = Debug|ARM64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|x64.ActiveCfg = Debug|x64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|x64.Build.0 = Debug|x64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|x86.ActiveCfg = Debug|Win32
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Debug|x86.Build.0 = Debug|Win32
- {B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|ARM.ActiveCfg = Release|ARM
- {B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|ARM.Build.0 = Release|ARM
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|ARM64.ActiveCfg = Release|ARM64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|ARM64.Build.0 = Release|ARM64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|x64.ActiveCfg = Release|x64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|x64.Build.0 = Release|x64
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|x86.ActiveCfg = Release|Win32
{B68C61C6-4699-41E6-A158-EA1BE029E7A0}.Release|x86.Build.0 = Release|Win32
- {303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|ARM.ActiveCfg = Debug|ARM
- {303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|ARM.Build.0 = Debug|ARM
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|ARM64.ActiveCfg = Debug|ARM64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|ARM64.Build.0 = Debug|ARM64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|x64.ActiveCfg = Debug|x64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|x64.Build.0 = Debug|x64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|x86.ActiveCfg = Debug|Win32
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Debug|x86.Build.0 = Debug|Win32
- {303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|ARM.ActiveCfg = Release|ARM
- {303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|ARM.Build.0 = Release|ARM
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|ARM64.ActiveCfg = Release|ARM64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|ARM64.Build.0 = Release|ARM64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|x64.ActiveCfg = Release|x64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|x64.Build.0 = Release|x64
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|x86.ActiveCfg = Release|Win32
{303CC0FE-7D66-4F9F-B7A1-0AF7F9359074}.Release|x86.Build.0 = Release|Win32
- {A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|ARM.ActiveCfg = Debug|ARM
- {A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|ARM.Build.0 = Debug|ARM
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|ARM64.ActiveCfg = Debug|ARM64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|ARM64.Build.0 = Debug|ARM64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|x64.ActiveCfg = Debug|x64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|x64.Build.0 = Debug|x64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|x86.ActiveCfg = Debug|Win32
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Debug|x86.Build.0 = Debug|Win32
- {A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|ARM.ActiveCfg = Release|ARM
- {A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|ARM.Build.0 = Release|ARM
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|ARM64.ActiveCfg = Release|ARM64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|ARM64.Build.0 = Release|ARM64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|x64.ActiveCfg = Release|x64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|x64.Build.0 = Release|x64
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|x86.ActiveCfg = Release|Win32
{A63B3AD1-AB7B-461E-9FFF-2447F5BCD459}.Release|x86.Build.0 = Release|Win32
- {E893622C-47DE-4F83-B422-0A26711590A4}.Debug|ARM.ActiveCfg = Debug|ARM
- {E893622C-47DE-4F83-B422-0A26711590A4}.Debug|ARM.Build.0 = Debug|ARM
{E893622C-47DE-4F83-B422-0A26711590A4}.Debug|ARM64.ActiveCfg = Debug|ARM64
{E893622C-47DE-4F83-B422-0A26711590A4}.Debug|ARM64.Build.0 = Debug|ARM64
{E893622C-47DE-4F83-B422-0A26711590A4}.Debug|x64.ActiveCfg = Debug|x64
{E893622C-47DE-4F83-B422-0A26711590A4}.Debug|x64.Build.0 = Debug|x64
{E893622C-47DE-4F83-B422-0A26711590A4}.Debug|x86.ActiveCfg = Debug|Win32
{E893622C-47DE-4F83-B422-0A26711590A4}.Debug|x86.Build.0 = Debug|Win32
- {E893622C-47DE-4F83-B422-0A26711590A4}.Release|ARM.ActiveCfg = Release|ARM
- {E893622C-47DE-4F83-B422-0A26711590A4}.Release|ARM.Build.0 = Release|ARM
{E893622C-47DE-4F83-B422-0A26711590A4}.Release|ARM64.ActiveCfg = Release|ARM64
{E893622C-47DE-4F83-B422-0A26711590A4}.Release|ARM64.Build.0 = Release|ARM64
{E893622C-47DE-4F83-B422-0A26711590A4}.Release|x64.ActiveCfg = Release|x64
{E893622C-47DE-4F83-B422-0A26711590A4}.Release|x64.Build.0 = Release|x64
{E893622C-47DE-4F83-B422-0A26711590A4}.Release|x86.ActiveCfg = Release|Win32
{E893622C-47DE-4F83-B422-0A26711590A4}.Release|x86.Build.0 = Release|Win32
- {D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|ARM.ActiveCfg = Debug|ARM
- {D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|ARM.Build.0 = Debug|ARM
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|ARM64.ActiveCfg = Debug|ARM64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|ARM64.Build.0 = Debug|ARM64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|x64.ActiveCfg = Debug|x64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|x64.Build.0 = Debug|x64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|x86.ActiveCfg = Debug|Win32
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Debug|x86.Build.0 = Debug|Win32
- {D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|ARM.ActiveCfg = Release|ARM
- {D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|ARM.Build.0 = Release|ARM
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|ARM64.ActiveCfg = Release|ARM64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|ARM64.Build.0 = Release|ARM64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|x64.ActiveCfg = Release|x64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|x64.Build.0 = Release|x64
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|x86.ActiveCfg = Release|Win32
{D48A96C2-8512-4CC3-B6E4-7CFF07ED8ED3}.Release|x86.Build.0 = Release|Win32
- {08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|ARM.ActiveCfg = Debug|ARM
- {08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|ARM.Build.0 = Debug|ARM
{08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|ARM64.ActiveCfg = Debug|ARM64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|ARM64.Build.0 = Debug|ARM64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|x64.ActiveCfg = Debug|x64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|x64.Build.0 = Debug|x64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|x86.ActiveCfg = Debug|Win32
{08C40663-B6A3-481E-8755-AE32BAD99501}.Debug|x86.Build.0 = Debug|Win32
- {08C40663-B6A3-481E-8755-AE32BAD99501}.Release|ARM.ActiveCfg = Release|ARM
- {08C40663-B6A3-481E-8755-AE32BAD99501}.Release|ARM.Build.0 = Release|ARM
{08C40663-B6A3-481E-8755-AE32BAD99501}.Release|ARM64.ActiveCfg = Release|ARM64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Release|ARM64.Build.0 = Release|ARM64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Release|x64.ActiveCfg = Release|x64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Release|x64.Build.0 = Release|x64
{08C40663-B6A3-481E-8755-AE32BAD99501}.Release|x86.ActiveCfg = Release|Win32
{08C40663-B6A3-481E-8755-AE32BAD99501}.Release|x86.Build.0 = Release|Win32
- {5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|ARM.ActiveCfg = Debug|ARM
- {5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|ARM.Build.0 = Debug|ARM
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|ARM64.ActiveCfg = Debug|ARM64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|ARM64.Build.0 = Debug|ARM64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|x64.ActiveCfg = Debug|x64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|x64.Build.0 = Debug|x64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|x86.ActiveCfg = Debug|Win32
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Debug|x86.Build.0 = Debug|Win32
- {5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|ARM.ActiveCfg = Release|ARM
- {5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|ARM.Build.0 = Release|ARM
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|ARM64.ActiveCfg = Release|ARM64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|ARM64.Build.0 = Release|ARM64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|x64.ActiveCfg = Release|x64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|x64.Build.0 = Release|x64
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|x86.ActiveCfg = Release|Win32
{5FF6CD6C-515A-4D55-97B6-62AD9BCB77EA}.Release|x86.Build.0 = Release|Win32
- {D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|ARM.ActiveCfg = Debug|ARM
- {D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|ARM.Build.0 = Debug|ARM
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|ARM64.ActiveCfg = Debug|ARM64
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|ARM64.Build.0 = Debug|ARM64
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|x64.ActiveCfg = Debug|x64
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|x64.Build.0 = Debug|x64
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|x86.ActiveCfg = Debug|Win32
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Debug|x86.Build.0 = Debug|Win32
- {D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Release|ARM.ActiveCfg = Release|ARM
- {D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Release|ARM.Build.0 = Release|ARM
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Release|ARM64.ActiveCfg = Release|ARM64
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Release|ARM64.Build.0 = Release|ARM64
{D4C8F881-84D5-4A7B-8BDE-AB4E34A05374}.Release|x64.ActiveCfg = Release|x64
diff --git a/cppwinrt/cppwinrt.vcxproj b/cppwinrt/cppwinrt.vcxproj
index 46b5836e7..069f8103a 100644
--- a/cppwinrt/cppwinrt.vcxproj
+++ b/cppwinrt/cppwinrt.vcxproj
@@ -2,10 +2,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -14,10 +10,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -132,10 +124,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -145,11 +133,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -172,18 +155,12 @@
-
-
-
-
-
-
@@ -211,23 +188,6 @@
-
-
- Disabled
- ..\inc;$(OutputPath);$(WinMDPackageDir);
- MultiThreadedDebug
-
-
- Console
-
-
- $(OutputPath)prebuild.exe ..\strings $(OutputPath)
-
-
-
-
-
-
Disabled
@@ -285,29 +245,6 @@
-
-
- MaxSpeed
- true
- true
- ..\inc;$(OutputPath);$(WinMDPackageDir);
- MultiThreaded
- Guard
-
-
- Console
- true
- true
- /DEBUGTYPE:CV,FIXUP %(AdditionalOptions)
-
-
- $(OutputPath)prebuild.exe ..\strings $(OutputPath)
-
-
-
-
-
-
MaxSpeed
diff --git a/fast_fwd/arm/thunks.asm b/fast_fwd/arm/thunks.asm
deleted file mode 100644
index 9010908b6..000000000
--- a/fast_fwd/arm/thunks.asm
+++ /dev/null
@@ -1,58 +0,0 @@
-; ARM fast forwarder thunk implementations
-; Calling convention: https://docs.microsoft.com/en-us/cpp/build/overview-of-arm-abi-conventions
-
-#include "ksarm.h"
-
- IMPORT __guard_check_icall_fptr
-
- TEXTAREA
-
- CFG_ALIGN
- NESTED_ENTRY InvokeForwarder
-
- ; Save enregistered args and return address
- PROLOG_PUSH {r0-r4, lr}
-
- ; Replace forwarder abi with owner abi
- ldr r1, [r0, #4]
- str r1, [sp]
-
- ; Add offset and index (on stack)
- ldr r2, [sp, #24]
- ldr r3, [r0, #8]
- add r2, r2, r3
-
- ; Get method address from owner abi vtable
- ldr r0, [r1]
- ldr r4, [r0, r2, lsl #2]
- mov r0, r4
-
- ; Verify indirect call target
- mov32 r12, __guard_check_icall_fptr
- ldr r12, [r12]
- blx r12
-
- ; Restore method address, return address, and args
- mov r12, r4
- EPILOG_POP {r0-r4, lr}
- EPILOG_NOP add sp, #4
-
- ; Jump to method
- EPILOG_NOP bx r12
-
- NESTED_END InvokeForwarder
-
- ; Define thunks
- MACRO
- WINRT_FF_THUNK $i
- LEAF_ENTRY winrt_ff_thunk$i
- ; Note: no scratch registers available (r12/IP is used by CFG), must use stack
- mov r12, $i
- push r12
- ldr pc, =InvokeForwarder
- LEAF_END winrt_ff_thunk$i
- MEND
-
-#include "thunks.inc"
-
- END
\ No newline at end of file
diff --git a/fast_fwd/fast_fwd.vcxproj b/fast_fwd/fast_fwd.vcxproj
index 6d7a42d77..b9452d149 100644
--- a/fast_fwd/fast_fwd.vcxproj
+++ b/fast_fwd/fast_fwd.vcxproj
@@ -17,14 +17,6 @@
Release
x64
-
- Debug
- ARM
-
-
- Release
- ARM
-
Debug
ARM64
@@ -79,16 +71,10 @@
- true
+ true
false
!$(Platform_Arm)
-
- cppwinrt_fast_forwarder
-
-
- cppwinrt_fast_forwarder
-
cppwinrt_fast_forwarder
diff --git a/nuget/Microsoft.Windows.CppWinRT.nuspec b/nuget/Microsoft.Windows.CppWinRT.nuspec
index 882931734..a63e08bf9 100644
--- a/nuget/Microsoft.Windows.CppWinRT.nuspec
+++ b/nuget/Microsoft.Windows.CppWinRT.nuspec
@@ -20,7 +20,6 @@
-
diff --git a/prebuild/prebuild.vcxproj b/prebuild/prebuild.vcxproj
index 8308ae560..e5fa52565 100644
--- a/prebuild/prebuild.vcxproj
+++ b/prebuild/prebuild.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -44,10 +36,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -57,11 +45,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -84,18 +67,12 @@
-
-
-
-
-
-
@@ -116,16 +93,6 @@
Console
-
-
- Disabled
- ..\cppwinrt
- MultiThreadedDebug
-
-
- Console
-
-
Disabled
@@ -160,20 +127,6 @@
true
-
-
- MaxSpeed
- true
- true
- ..\cppwinrt
- MultiThreaded
-
-
- Console
- true
- true
-
-
MaxSpeed
diff --git a/prepare_versionless_diffs.cmd b/prepare_versionless_diffs.cmd
index 468645657..05cb6dd0b 100644
--- a/prepare_versionless_diffs.cmd
+++ b/prepare_versionless_diffs.cmd
@@ -12,7 +12,6 @@ if /I "%target_platform%" equ "all" (
)
call %0 x86 !target_configuration!
call %0 x64 !target_configuration!
- call %0 arm !target_configuration!
call %0 arm64 !target_configuration!
goto :eof
)
diff --git a/scratch/scratch.vcxproj b/scratch/scratch.vcxproj
index 45122c13d..98ed21948 100644
--- a/scratch/scratch.vcxproj
+++ b/scratch/scratch.vcxproj
@@ -2,10 +2,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -14,10 +10,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
diff --git a/strings/base_activation.h b/strings/base_activation.h
index bb6be5ca1..be24c6ad9 100644
--- a/strings/base_activation.h
+++ b/strings/base_activation.h
@@ -119,10 +119,8 @@ WINRT_EXPORT namespace winrt
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#endif
-#if defined(__GNUC__) && (defined(__arm__) || defined(__aarch64__))
+#if defined(__GNUC__) && defined(__aarch64__)
#define WINRT_IMPL_INTERLOCKED_READ_MEMORY_BARRIER __asm__ __volatile__ ("dmb ish");
-#elif defined _M_ARM
-#define WINRT_IMPL_INTERLOCKED_READ_MEMORY_BARRIER (__dmb(_ARM_BARRIER_ISH));
#elif defined _M_ARM64
#define WINRT_IMPL_INTERLOCKED_READ_MEMORY_BARRIER (__dmb(_ARM64_BARRIER_ISH));
#endif
@@ -135,7 +133,7 @@ namespace winrt::impl
int32_t const result = *target;
_ReadWriteBarrier();
return result;
-#elif defined _M_ARM || defined _M_ARM64
+#elif defined _M_ARM64
#if defined(__GNUC__)
int32_t const result = *target;
#else
@@ -308,7 +306,7 @@ namespace winrt::impl
static_assert(std::is_standard_layout_v);
-#if !defined _M_IX86 && !defined _M_X64 && !defined _M_ARM && !defined _M_ARM64
+#if !defined _M_IX86 && !defined _M_X64 && !defined _M_ARM64
#error Unsupported architecture: verify that zero-initialization of SLIST_HEADER is still safe
#endif
diff --git a/test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj b/test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj
index 15d9a8842..819c788d8 100644
--- a/test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj
+++ b/test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj
@@ -13,10 +13,18 @@
+
+ Debug
+ ARM64
+
Debug
Win32
+
+ Release
+ ARM64
+
Release
Win32
diff --git a/test/nuget/Directory.Build.props b/test/nuget/Directory.Build.props
index 9f410480b..a54887b1e 100644
--- a/test/nuget/Directory.Build.props
+++ b/test/nuget/Directory.Build.props
@@ -23,7 +23,7 @@
$(IntDir)Generated Files\
high
$(Platform)
- x86
+ x86
$(SolutionDir)..\..\_build\$(CppWinRTPlatform)\$(Configuration)\
diff --git a/test/nuget/NuGetTest.sln b/test/nuget/NuGetTest.sln
index db32e2b61..310b0f252 100644
--- a/test/nuget/NuGetTest.sln
+++ b/test/nuget/NuGetTest.sln
@@ -49,270 +49,230 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestProxyStub", "TestProxyS
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
- Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM.ActiveCfg = Debug|ARM
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM.Build.0 = Debug|ARM
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM.Deploy.0 = Debug|ARM
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|ARM64.Deploy.0 = Debug|ARM64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|x64.ActiveCfg = Debug|x64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|x64.Build.0 = Debug|x64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|x64.Deploy.0 = Debug|x64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|x86.ActiveCfg = Debug|Win32
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|x86.Build.0 = Debug|Win32
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Debug|x86.Deploy.0 = Debug|Win32
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM.ActiveCfg = Release|ARM
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM.Build.0 = Release|ARM
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM.Deploy.0 = Release|ARM
- {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM64.ActiveCfg = Release|Win32
+ {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM64.ActiveCfg = Release|ARM64
+ {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM64.Build.0 = Release|ARM64
+ {A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|ARM64.Deploy.0 = Release|ARM64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|x64.ActiveCfg = Release|x64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|x64.Build.0 = Release|x64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|x64.Deploy.0 = Release|x64
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|x86.ActiveCfg = Release|Win32
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|x86.Build.0 = Release|Win32
{A8BDBDE9-1A3D-4F5E-8668-9F6E84790D44}.Release|x86.Deploy.0 = Release|Win32
- {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|ARM.ActiveCfg = Debug|ARM
- {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|ARM.Build.0 = Debug|ARM
- {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|ARM64.Build.0 = Debug|ARM64
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|x64.ActiveCfg = Debug|x64
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|x64.Build.0 = Debug|x64
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|x86.ActiveCfg = Debug|Win32
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Debug|x86.Build.0 = Debug|Win32
- {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|ARM.ActiveCfg = Release|ARM
- {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|ARM.Build.0 = Release|ARM
- {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|ARM64.ActiveCfg = Release|Win32
+ {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|ARM64.ActiveCfg = Release|ARM64
+ {E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|ARM64.Build.0 = Release|ARM64
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|x64.ActiveCfg = Release|x64
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|x64.Build.0 = Release|x64
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|x86.ActiveCfg = Release|Win32
{E0EBBE54-C046-4611-B048-3CE893B1DF8A}.Release|x86.Build.0 = Release|Win32
- {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|ARM.ActiveCfg = Debug|ARM
- {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|ARM.Build.0 = Debug|ARM
- {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|ARM64.Build.0 = Debug|ARM64
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|x64.ActiveCfg = Debug|x64
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|x64.Build.0 = Debug|x64
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|x86.ActiveCfg = Debug|Win32
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Debug|x86.Build.0 = Debug|Win32
- {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|ARM.ActiveCfg = Release|ARM
- {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|ARM.Build.0 = Release|ARM
- {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|ARM64.ActiveCfg = Release|Win32
+ {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|ARM64.ActiveCfg = Release|ARM64
+ {4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|ARM64.Build.0 = Release|ARM64
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|x64.ActiveCfg = Release|x64
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|x64.Build.0 = Release|x64
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|x86.ActiveCfg = Release|Win32
{4BBB2DE7-4596-4DA6-A923-E65E838363B5}.Release|x86.Build.0 = Release|Win32
- {2158F418-CA97-4599-8103-EFC133850BAA}.Debug|ARM.ActiveCfg = Debug|Win32
- {2158F418-CA97-4599-8103-EFC133850BAA}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {2158F418-CA97-4599-8103-EFC133850BAA}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {2158F418-CA97-4599-8103-EFC133850BAA}.Debug|ARM64.Build.0 = Debug|ARM64
{2158F418-CA97-4599-8103-EFC133850BAA}.Debug|x64.ActiveCfg = Debug|x64
{2158F418-CA97-4599-8103-EFC133850BAA}.Debug|x64.Build.0 = Debug|x64
{2158F418-CA97-4599-8103-EFC133850BAA}.Debug|x86.ActiveCfg = Debug|Win32
{2158F418-CA97-4599-8103-EFC133850BAA}.Debug|x86.Build.0 = Debug|Win32
- {2158F418-CA97-4599-8103-EFC133850BAA}.Release|ARM.ActiveCfg = Release|Win32
- {2158F418-CA97-4599-8103-EFC133850BAA}.Release|ARM64.ActiveCfg = Release|Win32
+ {2158F418-CA97-4599-8103-EFC133850BAA}.Release|ARM64.ActiveCfg = Release|ARM64
+ {2158F418-CA97-4599-8103-EFC133850BAA}.Release|ARM64.Build.0 = Release|ARM64
{2158F418-CA97-4599-8103-EFC133850BAA}.Release|x64.ActiveCfg = Release|x64
{2158F418-CA97-4599-8103-EFC133850BAA}.Release|x64.Build.0 = Release|x64
{2158F418-CA97-4599-8103-EFC133850BAA}.Release|x86.ActiveCfg = Release|Win32
{2158F418-CA97-4599-8103-EFC133850BAA}.Release|x86.Build.0 = Release|Win32
- {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|ARM.ActiveCfg = Debug|Win32
- {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|ARM64.Build.0 = Debug|ARM64
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|x64.ActiveCfg = Debug|x64
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|x64.Build.0 = Debug|x64
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|x86.ActiveCfg = Debug|Win32
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Debug|x86.Build.0 = Debug|Win32
- {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|ARM.ActiveCfg = Release|Win32
- {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|ARM64.ActiveCfg = Release|Win32
+ {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|ARM64.ActiveCfg = Release|ARM64
+ {0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|ARM64.Build.0 = Release|ARM64
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|x64.ActiveCfg = Release|x64
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|x64.Build.0 = Release|x64
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|x86.ActiveCfg = Release|Win32
{0011F69F-2363-4DFD-B02A-1E7E909BCE89}.Release|x86.Build.0 = Release|Win32
- {C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|ARM.ActiveCfg = Debug|ARM
- {C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|ARM.Build.0 = Debug|ARM
- {C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|ARM64.Build.0 = Debug|ARM64
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|x64.ActiveCfg = Debug|x64
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|x64.Build.0 = Debug|x64
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|x86.ActiveCfg = Debug|Win32
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Debug|x86.Build.0 = Debug|Win32
- {C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|ARM.ActiveCfg = Release|ARM
- {C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|ARM.Build.0 = Release|ARM
- {C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|ARM64.ActiveCfg = Release|Win32
+ {C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|ARM64.ActiveCfg = Release|ARM64
+ {C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|ARM64.Build.0 = Release|ARM64
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|x64.ActiveCfg = Release|x64
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|x64.Build.0 = Release|x64
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|x86.ActiveCfg = Release|Win32
{C2820B98-A31F-46D0-A96D-B8F24392B049}.Release|x86.Build.0 = Release|Win32
- {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|ARM.ActiveCfg = Debug|ARM
- {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|ARM.Build.0 = Debug|ARM
- {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|ARM64.Build.0 = Debug|ARM64
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|x64.ActiveCfg = Debug|x64
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|x64.Build.0 = Debug|x64
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|x86.ActiveCfg = Debug|Win32
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Debug|x86.Build.0 = Debug|Win32
- {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|ARM.ActiveCfg = Release|ARM
- {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|ARM.Build.0 = Release|ARM
- {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|ARM64.ActiveCfg = Release|Win32
+ {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|ARM64.ActiveCfg = Release|ARM64
+ {1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|ARM64.Build.0 = Release|ARM64
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|x64.ActiveCfg = Release|x64
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|x64.Build.0 = Release|x64
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|x86.ActiveCfg = Release|Win32
{1350E626-038B-4BDF-8E1D-C751EF33D90F}.Release|x86.Build.0 = Release|Win32
- {ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|ARM.ActiveCfg = Debug|ARM
- {ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|ARM.Build.0 = Debug|ARM
{ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|ARM64.ActiveCfg = Debug|ARM64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|ARM64.Build.0 = Debug|ARM64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|x64.ActiveCfg = Debug|x64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|x64.Build.0 = Debug|x64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|x86.ActiveCfg = Debug|Win32
{ADC53200-B456-4386-9851-5BF69DFB8928}.Debug|x86.Build.0 = Debug|Win32
- {ADC53200-B456-4386-9851-5BF69DFB8928}.Release|ARM.ActiveCfg = Release|ARM
- {ADC53200-B456-4386-9851-5BF69DFB8928}.Release|ARM.Build.0 = Release|ARM
{ADC53200-B456-4386-9851-5BF69DFB8928}.Release|ARM64.ActiveCfg = Release|ARM64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Release|ARM64.Build.0 = Release|ARM64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Release|x64.ActiveCfg = Release|x64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Release|x64.Build.0 = Release|x64
{ADC53200-B456-4386-9851-5BF69DFB8928}.Release|x86.ActiveCfg = Release|Win32
{ADC53200-B456-4386-9851-5BF69DFB8928}.Release|x86.Build.0 = Release|Win32
- {432068A4-B206-4468-9254-446CCEB15A2C}.Debug|ARM.ActiveCfg = Debug|ARM
- {432068A4-B206-4468-9254-446CCEB15A2C}.Debug|ARM.Build.0 = Debug|ARM
- {432068A4-B206-4468-9254-446CCEB15A2C}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {432068A4-B206-4468-9254-446CCEB15A2C}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {432068A4-B206-4468-9254-446CCEB15A2C}.Debug|ARM64.Build.0 = Debug|ARM64
{432068A4-B206-4468-9254-446CCEB15A2C}.Debug|x64.ActiveCfg = Debug|x64
{432068A4-B206-4468-9254-446CCEB15A2C}.Debug|x64.Build.0 = Debug|x64
{432068A4-B206-4468-9254-446CCEB15A2C}.Debug|x86.ActiveCfg = Debug|Win32
{432068A4-B206-4468-9254-446CCEB15A2C}.Debug|x86.Build.0 = Debug|Win32
- {432068A4-B206-4468-9254-446CCEB15A2C}.Release|ARM.ActiveCfg = Release|ARM
- {432068A4-B206-4468-9254-446CCEB15A2C}.Release|ARM.Build.0 = Release|ARM
- {432068A4-B206-4468-9254-446CCEB15A2C}.Release|ARM64.ActiveCfg = Release|Win32
+ {432068A4-B206-4468-9254-446CCEB15A2C}.Release|ARM64.ActiveCfg = Release|ARM64
+ {432068A4-B206-4468-9254-446CCEB15A2C}.Release|ARM64.Build.0 = Release|ARM64
{432068A4-B206-4468-9254-446CCEB15A2C}.Release|x64.ActiveCfg = Release|x64
{432068A4-B206-4468-9254-446CCEB15A2C}.Release|x64.Build.0 = Release|x64
{432068A4-B206-4468-9254-446CCEB15A2C}.Release|x86.ActiveCfg = Release|Win32
{432068A4-B206-4468-9254-446CCEB15A2C}.Release|x86.Build.0 = Release|Win32
- {8456C55F-BF01-4798-B79B-7388681C398F}.Debug|ARM.ActiveCfg = Debug|ARM
- {8456C55F-BF01-4798-B79B-7388681C398F}.Debug|ARM.Build.0 = Debug|ARM
- {8456C55F-BF01-4798-B79B-7388681C398F}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {8456C55F-BF01-4798-B79B-7388681C398F}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {8456C55F-BF01-4798-B79B-7388681C398F}.Debug|ARM64.Build.0 = Debug|ARM64
{8456C55F-BF01-4798-B79B-7388681C398F}.Debug|x64.ActiveCfg = Debug|x64
{8456C55F-BF01-4798-B79B-7388681C398F}.Debug|x64.Build.0 = Debug|x64
{8456C55F-BF01-4798-B79B-7388681C398F}.Debug|x86.ActiveCfg = Debug|Win32
{8456C55F-BF01-4798-B79B-7388681C398F}.Debug|x86.Build.0 = Debug|Win32
- {8456C55F-BF01-4798-B79B-7388681C398F}.Release|ARM.ActiveCfg = Release|ARM
- {8456C55F-BF01-4798-B79B-7388681C398F}.Release|ARM.Build.0 = Release|ARM
- {8456C55F-BF01-4798-B79B-7388681C398F}.Release|ARM64.ActiveCfg = Release|Win32
+ {8456C55F-BF01-4798-B79B-7388681C398F}.Release|ARM64.ActiveCfg = Release|ARM64
+ {8456C55F-BF01-4798-B79B-7388681C398F}.Release|ARM64.Build.0 = Release|ARM64
{8456C55F-BF01-4798-B79B-7388681C398F}.Release|x64.ActiveCfg = Release|x64
{8456C55F-BF01-4798-B79B-7388681C398F}.Release|x64.Build.0 = Release|x64
{8456C55F-BF01-4798-B79B-7388681C398F}.Release|x86.ActiveCfg = Release|Win32
{8456C55F-BF01-4798-B79B-7388681C398F}.Release|x86.Build.0 = Release|Win32
- {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|ARM.ActiveCfg = Debug|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|ARM.Build.0 = Debug|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|ARM64.Build.0 = Debug|ARM64
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|x64.ActiveCfg = Debug|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|x64.Build.0 = Debug|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|x86.ActiveCfg = Debug|Win32
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Debug|x86.Build.0 = Debug|Win32
- {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|ARM.ActiveCfg = Release|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|ARM.Build.0 = Release|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|ARM64.ActiveCfg = Release|Win32
+ {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|ARM64.ActiveCfg = Release|ARM64
+ {DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|ARM64.Build.0 = Release|ARM64
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|x64.ActiveCfg = Release|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|x64.Build.0 = Release|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|x86.ActiveCfg = Release|Win32
{DC435C3F-C38E-43D1-B702-DC03F530A3CB}.Release|x86.Build.0 = Release|Win32
- {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|ARM.ActiveCfg = Debug|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|ARM.Build.0 = Debug|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|ARM64.Build.0 = Debug|ARM64
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|x64.ActiveCfg = Debug|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|x64.Build.0 = Debug|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|x86.ActiveCfg = Debug|Win32
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Debug|x86.Build.0 = Debug|Win32
- {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|ARM.ActiveCfg = Release|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|ARM.Build.0 = Release|ARM
- {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|ARM64.ActiveCfg = Release|Win32
+ {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|ARM64.ActiveCfg = Release|ARM64
+ {DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|ARM64.Build.0 = Release|ARM64
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|x64.ActiveCfg = Release|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|x64.Build.0 = Release|x64
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|x86.ActiveCfg = Release|Win32
{DC435C3F-C38E-43D1-B702-DC03F530A3DD}.Release|x86.Build.0 = Release|Win32
- {C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|ARM.ActiveCfg = Debug|ARM
- {C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|ARM.Build.0 = Debug|ARM
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|ARM64.ActiveCfg = Debug|ARM64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|ARM64.Build.0 = Debug|ARM64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|x64.ActiveCfg = Debug|x64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|x64.Build.0 = Debug|x64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|x86.ActiveCfg = Debug|x86
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Debug|x86.Build.0 = Debug|x86
- {C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|ARM.ActiveCfg = Release|ARM
- {C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|ARM.Build.0 = Release|ARM
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|ARM64.ActiveCfg = Release|ARM64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|ARM64.Build.0 = Release|ARM64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|x64.ActiveCfg = Release|x64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|x64.Build.0 = Release|x64
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|x86.ActiveCfg = Release|x86
{C47F8562-A2B9-4BA3-87AC-B42D015E241D}.Release|x86.Build.0 = Release|x86
- {8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|ARM.ActiveCfg = Debug|ARM
- {8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|ARM.Build.0 = Debug|ARM
- {8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|ARM64.Build.0 = Debug|ARM64
{8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|x64.ActiveCfg = Debug|x64
{8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|x64.Build.0 = Debug|x64
{8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|x86.ActiveCfg = Debug|Win32
{8717FA32-34A8-457D-B77B-AE005703EB55}.Debug|x86.Build.0 = Debug|Win32
- {8717FA32-34A8-457D-B77B-AE005703EB55}.Release|ARM.ActiveCfg = Release|ARM
- {8717FA32-34A8-457D-B77B-AE005703EB55}.Release|ARM.Build.0 = Release|ARM
- {8717FA32-34A8-457D-B77B-AE005703EB55}.Release|ARM64.ActiveCfg = Release|Win32
+ {8717FA32-34A8-457D-B77B-AE005703EB55}.Release|ARM64.ActiveCfg = Release|ARM64
+ {8717FA32-34A8-457D-B77B-AE005703EB55}.Release|ARM64.Build.0 = Release|ARM64
{8717FA32-34A8-457D-B77B-AE005703EB55}.Release|x64.ActiveCfg = Release|x64
{8717FA32-34A8-457D-B77B-AE005703EB55}.Release|x64.Build.0 = Release|x64
{8717FA32-34A8-457D-B77B-AE005703EB55}.Release|x86.ActiveCfg = Release|Win32
{8717FA32-34A8-457D-B77B-AE005703EB55}.Release|x86.Build.0 = Release|Win32
- {FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|ARM.ActiveCfg = Debug|ARM
- {FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|ARM.Build.0 = Debug|ARM
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|ARM64.ActiveCfg = Debug|ARM64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|ARM64.Build.0 = Debug|ARM64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|x64.ActiveCfg = Debug|x64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|x64.Build.0 = Debug|x64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|x86.ActiveCfg = Debug|Win32
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Debug|x86.Build.0 = Debug|Win32
- {FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|ARM.ActiveCfg = Release|ARM
- {FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|ARM.Build.0 = Release|ARM
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|ARM64.ActiveCfg = Release|ARM64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|ARM64.Build.0 = Release|ARM64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|x64.ActiveCfg = Release|x64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|x64.Build.0 = Release|x64
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|x86.ActiveCfg = Release|Win32
{FF846D79-F4B8-495A-9FB4-79BAAEB98E4F}.Release|x86.Build.0 = Release|Win32
- {F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|ARM.ActiveCfg = Debug|ARM
- {F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|ARM.Build.0 = Debug|ARM
- {F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|ARM64.Build.0 = Debug|ARM64
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|x64.ActiveCfg = Debug|x64
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|x64.Build.0 = Debug|x64
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|x86.ActiveCfg = Debug|Win32
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Debug|x86.Build.0 = Debug|Win32
- {F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|ARM.ActiveCfg = Release|ARM
- {F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|ARM.Build.0 = Release|ARM
- {F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|ARM64.ActiveCfg = Release|Win32
+ {F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|ARM64.ActiveCfg = Release|ARM64
+ {F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|ARM64.Build.0 = Release|ARM64
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|x64.ActiveCfg = Release|x64
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|x64.Build.0 = Release|x64
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|x86.ActiveCfg = Release|Win32
{F89C2185-7834-443D-A449-53BD52FFEA3B}.Release|x86.Build.0 = Release|Win32
- {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|ARM.ActiveCfg = Debug|Win32
- {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|ARM64.ActiveCfg = Debug|Win32
+ {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|ARM64.Build.0 = Debug|ARM64
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|x64.ActiveCfg = Debug|x64
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|x64.Build.0 = Debug|x64
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|x86.ActiveCfg = Debug|Win32
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Debug|x86.Build.0 = Debug|Win32
- {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|ARM.ActiveCfg = Release|Win32
- {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|ARM64.ActiveCfg = Release|Win32
+ {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|ARM64.ActiveCfg = Release|ARM64
+ {4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|ARM64.Build.0 = Release|ARM64
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|x64.ActiveCfg = Release|x64
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|x64.Build.0 = Release|x64
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|x86.ActiveCfg = Release|Win32
{4DD64EAE-4B27-415A-863E-55CB8D5863DD}.Release|x86.Build.0 = Release|Win32
- {98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|ARM.ActiveCfg = Debug|x64
- {98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|ARM.Build.0 = Debug|x64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|ARM64.ActiveCfg = Debug|ARM64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|ARM64.Build.0 = Debug|ARM64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|x64.ActiveCfg = Debug|x64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|x64.Build.0 = Debug|x64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|x86.ActiveCfg = Debug|Win32
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Debug|x86.Build.0 = Debug|Win32
- {98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Release|ARM.ActiveCfg = Release|x64
- {98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Release|ARM.Build.0 = Release|x64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Release|ARM64.ActiveCfg = Release|ARM64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Release|ARM64.Build.0 = Release|ARM64
{98E28FC8-2EB7-4544-9B6A-941462C6D3E2}.Release|x64.ActiveCfg = Release|x64
diff --git a/test/nuget/TestApp/TestApp.vcxproj b/test/nuget/TestApp/TestApp.vcxproj
index 582b95103..84029a4c9 100644
--- a/test/nuget/TestApp/TestApp.vcxproj
+++ b/test/nuget/TestApp/TestApp.vcxproj
@@ -16,9 +16,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -28,9 +28,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj b/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj
index 7827c2b21..1b7621ea0 100644
--- a/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj
+++ b/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj
@@ -16,9 +16,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -28,9 +28,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj b/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj
index eb12311c1..48f9acfb0 100644
--- a/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj
+++ b/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj
@@ -17,9 +17,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -29,9 +29,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj b/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj
index 24d061de0..8a876e601 100644
--- a/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj
+++ b/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj
@@ -17,9 +17,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -29,9 +29,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharp.csproj b/test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharp.csproj
index b2a1dfbe8..57f14194d 100644
--- a/test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharp.csproj
+++ b/test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharp.csproj
@@ -36,24 +36,6 @@
false
prompt
-
- ARM
- true
- DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
- ;2008
- full
- false
- prompt
-
-
- ARM
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
ARM64
true
diff --git a/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj b/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj
index 97b5c5613..237b9fcf3 100644
--- a/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj
+++ b/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj
@@ -2,10 +2,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -18,10 +14,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
@@ -69,12 +61,6 @@
-
-
-
-
-
-
@@ -95,12 +81,6 @@
false
-
- false
-
-
- false
-
false
@@ -145,38 +125,6 @@
false
-
-
- Use
- _WINRT_DLL;%(PreprocessorDefinitions)
- pch.h
- $(IntDir)pch.pch
- $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)
- /bigobj /Zc:twoPhase- %(AdditionalOptions)
- 28204
- true
-
-
- Console
- false
-
-
-
-
- Use
- _WINRT_DLL;NDEBUG;%(PreprocessorDefinitions)
- pch.h
- $(IntDir)pch.pch
- $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)
- /bigobj /Zc:twoPhase- %(AdditionalOptions)
- 28204
- true
-
-
- Console
- false
-
-
Use
@@ -251,8 +199,6 @@
Create
Create
Create
- Create
- Create
Create
Create
diff --git a/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj b/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj
index 6131345a9..68b71c94e 100644
--- a/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj
+++ b/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj
@@ -2,10 +2,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -18,10 +14,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
@@ -51,10 +43,6 @@
DynamicLibrary
true
-
- DynamicLibrary
- true
-
DynamicLibrary
true
@@ -68,11 +56,6 @@
false
true
-
- DynamicLibrary
- false
- true
-
DynamicLibrary
false
@@ -94,12 +77,6 @@
-
-
-
-
-
-
@@ -120,12 +97,6 @@
false
-
- false
-
-
- false
-
false
@@ -168,36 +139,6 @@
false
-
-
- Use
- _WINRT_DLL;%(PreprocessorDefinitions)
- pch.h
- $(IntDir)pch.pch
- $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)
- /bigobj /Zc:twoPhase- %(AdditionalOptions)
- 28204
-
-
- Console
- false
-
-
-
-
- Use
- _WINRT_DLL;NDEBUG;%(PreprocessorDefinitions)
- pch.h
- $(IntDir)pch.pch
- $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)
- /bigobj /Zc:twoPhase- %(AdditionalOptions)
- 28204
-
-
- Console
- false
-
-
Use
@@ -268,8 +209,6 @@
Create
Create
Create
- Create
- Create
Create
Create
diff --git a/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj b/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj
index 66a6713df..7572238eb 100644
--- a/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj
+++ b/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj
@@ -17,9 +17,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -29,9 +29,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj b/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj
index b07497f7f..693a97596 100644
--- a/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj
+++ b/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj
@@ -17,9 +17,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -29,9 +29,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj b/test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj
index 679f4b60c..a34e7429c 100644
--- a/test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj
+++ b/test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj
@@ -18,9 +18,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -30,9 +30,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
@@ -70,10 +70,10 @@
-
+
-
+
@@ -111,7 +111,7 @@
true
-
+
Use
Level4
@@ -170,7 +170,7 @@
true
-
+
Use
Level4
@@ -202,10 +202,10 @@
Create
Create
- Create
+ Create
Create
Create
- Create
+ Create
TestStaticLibrary1Class.idl
diff --git a/test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj b/test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj
index cb8352c96..5f3ee5220 100644
--- a/test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj
+++ b/test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj
@@ -18,9 +18,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -30,9 +30,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
@@ -70,10 +70,10 @@
-
+
-
+
@@ -111,7 +111,7 @@
true
-
+
Use
Level4
@@ -170,7 +170,7 @@
true
-
+
Use
Level4
@@ -202,10 +202,10 @@
Create
Create
- Create
+ Create
Create
Create
- Create
+ Create
TestStaticLibrary2Class.idl
diff --git a/test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj b/test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj
index 8b2d75f40..c79a847a3 100644
--- a/test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj
+++ b/test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj
@@ -18,9 +18,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -30,9 +30,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
@@ -70,10 +70,10 @@
-
+
-
+
@@ -111,7 +111,7 @@
true
-
+
Use
Level4
@@ -170,7 +170,7 @@
true
-
+
Use
Level4
@@ -202,10 +202,10 @@
Create
Create
- Create
+ Create
Create
Create
- Create
+ Create
TestStaticLibrary3Class.idl
diff --git a/test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj b/test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj
index 36fcfb1be..b3efe02c4 100644
--- a/test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj
+++ b/test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj
@@ -2,9 +2,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -14,9 +14,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
@@ -65,10 +65,10 @@
-
+
-
+
@@ -85,10 +85,10 @@
false
-
+
false
-
+
false
@@ -121,7 +121,7 @@
false
-
+
Use
false
@@ -133,7 +133,7 @@
false
-
+
Use
false
@@ -181,10 +181,10 @@
Create
Create
- Create
- Create
Create
Create
+ Create
+ Create
Create
Create
diff --git a/test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj b/test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj
index e088b38f8..bfc6db45c 100644
--- a/test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj
+++ b/test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj
@@ -2,9 +2,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -14,9 +14,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
@@ -65,10 +65,10 @@
-
+
-
+
@@ -85,10 +85,10 @@
false
-
+
false
-
+
false
@@ -121,7 +121,7 @@
false
-
+
Use
false
@@ -133,7 +133,7 @@
false
-
+
Use
false
@@ -181,10 +181,10 @@
Create
Create
- Create
- Create
Create
Create
+ Create
+ Create
Create
Create
diff --git a/test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj b/test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj
index 8cf328f99..89a0e55c9 100644
--- a/test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj
+++ b/test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj
@@ -2,9 +2,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -14,9 +14,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
@@ -65,10 +65,10 @@
-
+
-
+
@@ -85,10 +85,10 @@
false
-
+
false
-
+
false
@@ -121,7 +121,7 @@
false
-
+
Use
false
@@ -133,7 +133,7 @@
false
-
+
Use
false
@@ -185,10 +185,10 @@
Create
Create
- Create
- Create
Create
Create
+ Create
+ Create
Create
Create
diff --git a/test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj b/test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj
index 3189c7294..0fdf11744 100644
--- a/test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj
+++ b/test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj
@@ -18,9 +18,9 @@
-
+
Debug
- ARM
+ ARM64
Debug
@@ -30,9 +30,9 @@
Debug
x64
-
+
Release
- ARM
+ ARM64
Release
diff --git a/test/old_tests/Component/Component.vcxproj b/test/old_tests/Component/Component.vcxproj
index 9af296c51..dbc55f2d3 100644
--- a/test/old_tests/Component/Component.vcxproj
+++ b/test/old_tests/Component/Component.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -17,10 +13,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -67,12 +54,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -122,12 +97,6 @@
..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
Midl
-
- false
- false
- ..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
- Midl
-
false
false
@@ -140,12 +109,6 @@
..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
Midl
-
- false
- false
- ..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
- Midl
-
false
false
@@ -210,42 +173,6 @@
-
-
- false
- $(ProjectDir);$(OutputPath);Generated Files;..\Composable\Generated Files
- false
- MultiThreadedDebug
- NOMINMAX;_WINDLL;%(PreprocessorDefinitions)
- 4100;4297;4458
-
-
- Console
- false
- module.def
- true
-
-
-
-
-
-
-
-
- ..\Composable
-
-
-
-
-
-
-
-
-
-
-
-
-
false
@@ -315,41 +242,6 @@
-
-
- false
- $(ProjectDir);$(OutputPath);Generated Files;..\Composable\Generated Files
- MultiThreaded
- NOMINMAX;_WINDLL;%(PreprocessorDefinitions)
- 4100;4297;4458
-
-
- Console
- false
- module.def
- true
-
-
-
-
-
-
-
-
- ..\Composable
-
-
-
-
-
-
-
-
-
-
-
-
-
false
@@ -478,50 +370,38 @@
$(SystemRoot)\System32\WinMetadata
- $(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
- $(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(OutputPath)$(ProjectName).winmd
- $(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
- $(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
true
- true
true
true
- true
true
true
true
$(OutputPath)$(ProjectName)_h.h
- $(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
- $(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
..\Composable
- ..\Composable
..\Composable
..\Composable
- ..\Composable
..\Composable
..\Composable
..\Composable
true
- true
true
true
- true
true
true
true
diff --git a/test/old_tests/Composable/Composable.vcxproj b/test/old_tests/Composable/Composable.vcxproj
index d13d779b9..3b78edce4 100644
--- a/test/old_tests/Composable/Composable.vcxproj
+++ b/test/old_tests/Composable/Composable.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -17,10 +13,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -67,12 +54,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -122,12 +97,6 @@
..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
Midl
-
- false
- false
- ..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
- Midl
-
false
false
@@ -140,12 +109,6 @@
..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
Midl
-
- false
- false
- ..\..;$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
- Midl
-
false
false
@@ -210,42 +173,6 @@
-
-
- false
- $(ProjectDir);$(OutDir);Generated Files
- false
- MultiThreadedDebug
- NOMINMAX;_WINDLL;%(PreprocessorDefinitions)
- 4100;4297;4458
- precomp.hpp
-
-
- Console
- false
- module.def
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
false
@@ -315,41 +242,6 @@
-
-
- false
- $(ProjectDir);$(OutDir);Generated Files
- MultiThreaded
- NOMINMAX;_WINDLL;%(PreprocessorDefinitions)
- 4100;4297;4458
- precomp.hpp
-
-
- Console
- false
- module.def
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
false
@@ -470,42 +362,32 @@
$(SystemRoot)\System32\WinMetadata
- $(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
- $(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(SystemRoot)\System32\WinMetadata
$(OutputPath)$(ProjectName).winmd
- $(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
- $(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
$(OutputPath)$(ProjectName).winmd
true
- true
true
true
- true
true
true
true
$(OutputPath)$(ProjectName)_h.h
- $(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
- $(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
$(OutputPath)$(ProjectName)_h.h
true
- true
true
true
- true
true
true
true
diff --git a/test/old_tests/UnitTests/Tests.vcxproj b/test/old_tests/UnitTests/Tests.vcxproj
index c0c178442..a0711f41d 100644
--- a/test/old_tests/UnitTests/Tests.vcxproj
+++ b/test/old_tests/UnitTests/Tests.vcxproj
@@ -1,10 +1,6 @@

-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -146,11 +138,6 @@
true
x64
-
- Application
- true
- x64
-
Application
true
@@ -162,12 +149,6 @@
x64
true
-
- Application
- false
- x64
- true
-
Application
false
@@ -193,18 +174,12 @@
-
-
-
-
-
-
@@ -240,25 +215,6 @@
$(OutDir)test_old.exe
-
-
- Disabled
- _HAS_AUTO_PTR_ETC;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
- $(OutputPath);..\Composable\Generated Files;..\Component\Generated Files;..\Composable;..\Reflection\Generated Files;..\..\;
- ProgramDatabase
- Default
- false
- false
- MultiThreadedDebug
- 4100;4297;4458
-
-
- Console
- true
- false
- $(OutDir)test_old.exe
-
-
Disabled
@@ -316,25 +272,6 @@
$(OutDir)test_old.exe
-
-
- MaxSpeed
- true
- true
- _HAS_AUTO_PTR_ETC;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- $(OutputPath);..\Composable\Generated Files;..\Component\Generated Files;..\Composable;..\Reflection\Generated Files;..\..\;
- MultiThreaded
- 4100;4297;4458
-
-
- Console
- true
- true
- true
- false
- $(OutDir)test_old.exe
-
-
MaxSpeed
diff --git a/test/test/test.vcxproj b/test/test/test.vcxproj
index a82465149..f1035ab6c 100644
--- a/test/test/test.vcxproj
+++ b/test/test/test.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -45,10 +37,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -58,11 +46,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -85,18 +68,12 @@
-
-
-
-
-
-
@@ -147,24 +124,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..;..\..\cppwinrt
- _MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
-
-
- $(CppWinRTDir)cppwinrt -in $(OutputPath)test_component.winmd $(OutputPath)test_component_no_pch.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi
-
-
-
-
-
-
Disabled
@@ -223,28 +182,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..;..\..\cppwinrt
- _MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
-
-
- $(CppWinRTDir)cppwinrt -in $(OutputPath)test_component.winmd $(OutputPath)test_component_no_pch.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi
-
-
-
-
-
-
MaxSpeed
@@ -290,8 +227,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
@@ -300,8 +235,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
@@ -310,8 +243,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
@@ -349,8 +280,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
@@ -361,8 +290,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
@@ -374,8 +301,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
@@ -393,8 +318,6 @@
NotUsing
NotUsing
NotUsing
- NotUsing
- NotUsing
NotUsing
NotUsing
diff --git a/test/test_component/test_component.vcxproj b/test/test_component/test_component.vcxproj
index 15aa24447..b6b3aa5d4 100644
--- a/test/test_component/test_component.vcxproj
+++ b/test/test_component/test_component.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -62,12 +49,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -119,10 +94,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -131,10 +102,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -183,55 +150,6 @@
true
-
-
- Disabled
- .;$(OutputPath);Generated Files
- /Zc:threadSafeInit- /we4640 %(AdditionalOptions)
- MultiThreadedDebug
-
-
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component.winmd
-
-
-
-
-
-
-
-
-
-
- $(OutputPath)test_component.h
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
Disabled
@@ -357,59 +275,6 @@
true
-
-
- MaxSpeed
- true
- true
- .;$(OutputPath);Generated Files
- /Zc:threadSafeInit- /we4640 %(AdditionalOptions)
- MultiThreaded
-
-
- true
- true
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component.winmd
-
-
-
-
-
-
-
-
-
-
- $(OutputPath)test_component.h
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
MaxSpeed
diff --git a/test/test_component_base/test_component_base.vcxproj b/test/test_component_base/test_component_base.vcxproj
index d8768de47..2a2069da0 100644
--- a/test/test_component_base/test_component_base.vcxproj
+++ b/test/test_component_base/test_component_base.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -62,12 +49,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -119,10 +94,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -131,10 +102,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -195,68 +162,6 @@
$(OutputPath)test_component_base.winmd
-
-
- Disabled
- $(ProjectDir);$(OutputPath);Generated Files
- 4100
- MultiThreadedDebug
-
-
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_base.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_base.winmd -comp $(ProjectDir) -out "$(ProjectDir)Generated Files" -ref sdk -verbose -name test_component_base
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_base.winmd
-
-
Disabled
@@ -419,72 +324,6 @@
$(OutputPath)test_component_base.winmd
-
-
- MaxSpeed
- true
- true
- $(ProjectDir);$(OutputPath);Generated Files
- 4100
- MultiThreaded
-
-
- true
- true
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_base.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_base.winmd -comp $(ProjectDir) -out "$(ProjectDir)Generated Files" -ref sdk -verbose -name test_component_base
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_base.winmd
-
-
MaxSpeed
diff --git a/test/test_component_derived/test_component_derived.vcxproj b/test/test_component_derived/test_component_derived.vcxproj
index e80ab4af1..e31d675a8 100644
--- a/test/test_component_derived/test_component_derived.vcxproj
+++ b/test/test_component_derived/test_component_derived.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -62,12 +49,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -119,10 +94,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -131,10 +102,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -196,69 +163,6 @@
$(OutputPath)test_component_derived.winmd
-
-
- Disabled
- $(ProjectDir);$(OutputPath);Generated Files;..\test_component_base\Generated Files
- 4100
- MultiThreadedDebug
-
-
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_derived.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
- ..\test_component_base
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_derived.winmd -ref $(OutputPath)test_component_base.winmd -comp $(ProjectDir) -out "$(ProjectDir)Generated Files" -ref sdk -verbose -name test_component_derived
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_derived.winmd
-
-
Disabled
@@ -424,73 +328,6 @@
$(OutputPath)test_component_derived.winmd
-
-
- MaxSpeed
- true
- true
- $(ProjectDir);$(OutputPath);Generated Files;..\test_component_base\Generated Files
- 4100
- MultiThreaded
-
-
- true
- true
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_derived.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
- ..\test_component_base
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_derived.winmd -ref $(OutputPath)test_component_base.winmd -comp $(ProjectDir) -out "$(ProjectDir)Generated Files" -ref sdk -verbose -name test_component_derived
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_derived.winmd
-
-
MaxSpeed
diff --git a/test/test_component_fast/test_component_fast.vcxproj b/test/test_component_fast/test_component_fast.vcxproj
index b9d54604b..216afea69 100644
--- a/test/test_component_fast/test_component_fast.vcxproj
+++ b/test/test_component_fast/test_component_fast.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -47,11 +39,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -63,12 +50,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -94,18 +75,12 @@
-
-
-
-
-
-
@@ -120,10 +95,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -132,10 +103,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -197,69 +164,6 @@
$(OutputPath)test_component_fast.winmd
-
-
- Disabled
- $(ProjectDir);$(OutputPath);Generated Files
- /DWINRT_FAST_ABI_SIZE=50 %(AdditionalOptions)
- 4100
- MultiThreadedDebug
-
-
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_fast.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_fast.winmd -comp $(ProjectDir) -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi -prefix -opt -name test_component_fast
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_fast.winmd
-
-
Disabled
@@ -425,73 +329,6 @@
$(OutputPath)test_component_fast.winmd
-
-
- MaxSpeed
- true
- true
- $(ProjectDir);$(OutputPath);Generated Files
- /DWINRT_FAST_ABI_SIZE=50 %(AdditionalOptions)
- 4100
- MultiThreaded
-
-
- true
- true
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_fast.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_fast.winmd -comp $(ProjectDir) -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi -prefix -opt -name test_component_fast
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_fast.winmd
-
-
MaxSpeed
diff --git a/test/test_component_folders/test_component_folders.vcxproj b/test/test_component_folders/test_component_folders.vcxproj
index 0270ca257..0ddb18c6e 100644
--- a/test/test_component_folders/test_component_folders.vcxproj
+++ b/test/test_component_folders/test_component_folders.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -62,12 +49,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -119,10 +94,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -131,10 +102,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -195,68 +162,6 @@
$(OutputPath)test_component_folders.winmd
-
-
- Disabled
- $(ProjectDir);$(OutputPath);Generated Files
- 4100
- MultiThreadedDebug
-
-
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_folders.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_folders.winmd -comp -out "$(ProjectDir)Generated Files" -ref sdk -verbose -overwrite -name test_component_folders
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_folders.winmd
-
-
Disabled
@@ -419,72 +324,6 @@
$(OutputPath)test_component_folders.winmd
-
-
- MaxSpeed
- true
- true
- $(ProjectDir);$(OutputPath);Generated Files
- 4100
- MultiThreaded
-
-
- true
- true
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_folders.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_folders.winmd -comp -out "$(ProjectDir)Generated Files" -ref sdk -verbose -overwrite -name test_component_folders
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_folders.winmd
-
-
MaxSpeed
diff --git a/test/test_component_no_pch/test_component_no_pch.vcxproj b/test/test_component_no_pch/test_component_no_pch.vcxproj
index 594e85592..040ab13f6 100644
--- a/test/test_component_no_pch/test_component_no_pch.vcxproj
+++ b/test/test_component_no_pch/test_component_no_pch.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,11 +38,6 @@
true
x64
-
- DynamicLibrary
- true
- x64
-
DynamicLibrary
true
@@ -62,12 +49,6 @@
true
x64
-
- DynamicLibrary
- false
- true
- x64
-
DynamicLibrary
false
@@ -93,18 +74,12 @@
-
-
-
-
-
-
@@ -119,10 +94,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -131,10 +102,6 @@
Midl
$(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
- Midl
- $(VC_ExecutablePath_x86);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
-
Midl
$(VC_ExecutablePath_x86_ARM64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);
@@ -196,69 +163,6 @@
$(OutputPath)test_component_no_pch.winmd
-
-
- Disabled
- $(ProjectDir);$(OutputPath);Generated Files
- 4100
- NotUsing
- MultiThreadedDebug
-
-
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_no_pch.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_no_pch.winmd -comp -out "$(ProjectDir)Generated Files" -ref sdk -verbose -overwrite -pch . -name test_component_no_pch
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_no_pch.winmd
-
-
Disabled
@@ -424,73 +328,6 @@
$(OutputPath)test_component_no_pch.winmd
-
-
- MaxSpeed
- true
- true
- $(ProjectDir);$(OutputPath);Generated Files
- 4100
- NotUsing
- MultiThreaded
-
-
- true
- true
- exports.def
-
-
- true
-
-
- $(OutputPath)test_component_no_pch.winmd
-
-
-
-
-
-
-
-
-
-
- nul
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /nomidl %(AdditionalOptions)
- C:\Windows\System32\WinMetadata
- true
-
-
- $(CppWinRTDir)cppwinrt -input $(OutputPath)test_component_no_pch.winmd -comp -out "$(ProjectDir)Generated Files" -ref sdk -verbose -overwrite -pch . -name test_component_no_pch
-
-
-
-
-
-
- Generated Files\module.g.cpp
-
-
- $(OutputPath)test_component_no_pch.winmd
-
-
MaxSpeed
diff --git a/test/test_cpp20/test_cpp20.vcxproj b/test/test_cpp20/test_cpp20.vcxproj
index 72d203a37..832297f7f 100644
--- a/test/test_cpp20/test_cpp20.vcxproj
+++ b/test/test_cpp20/test_cpp20.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,10 +38,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -59,11 +47,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -86,18 +69,12 @@
-
-
-
-
-
-
@@ -150,25 +127,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..\
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
-
-
-
-
-
-
-
-
-
-
Disabled
@@ -230,29 +188,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..\
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
-
-
-
-
-
-
-
-
-
-
MaxSpeed
diff --git a/test/test_cpp20_no_sourcelocation/test_cpp20_no_sourcelocation.vcxproj b/test/test_cpp20_no_sourcelocation/test_cpp20_no_sourcelocation.vcxproj
index c71cfdc96..86a56a3b9 100644
--- a/test/test_cpp20_no_sourcelocation/test_cpp20_no_sourcelocation.vcxproj
+++ b/test/test_cpp20_no_sourcelocation/test_cpp20_no_sourcelocation.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -46,10 +38,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -59,11 +47,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -86,18 +69,12 @@
-
-
-
-
-
-
@@ -156,25 +133,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..\
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
-
-
-
-
-
-
-
-
-
-
Disabled
@@ -236,29 +194,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..\
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
-
-
-
-
-
-
-
-
-
-
MaxSpeed
diff --git a/test/test_fast/test_fast.vcxproj b/test/test_fast/test_fast.vcxproj
index c256cad6b..27a7ea350 100644
--- a/test/test_fast/test_fast.vcxproj
+++ b/test/test_fast/test_fast.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -45,10 +37,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -58,11 +46,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -85,18 +68,12 @@
-
-
-
-
-
-
@@ -149,25 +126,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..\;
- WINRT_DIAGNOSTICS;NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
- false
-
-
- $(CppWinRTDir)cppwinrt -in $(OutputPath)test_component_fast.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi
-
-
-
-
-
-
Disabled
@@ -229,29 +187,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..\;
- WINRT_DIAGNOSTICS;NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
- false
-
-
- $(CppWinRTDir)cppwinrt -in $(OutputPath)test_component_fast.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi
-
-
-
-
-
-
MaxSpeed
diff --git a/test/test_fast_fwd/test_fast_fwd.vcxproj b/test/test_fast_fwd/test_fast_fwd.vcxproj
index c01406e38..d4b63c3fb 100644
--- a/test/test_fast_fwd/test_fast_fwd.vcxproj
+++ b/test/test_fast_fwd/test_fast_fwd.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -126,30 +118,6 @@
-
-
- Disabled
- true
- true
- $(CppWinRTDir);$(OutputPath);Generated Files;..\
- stdcpp17
- Use
- pch.h
- true
- WINRT_DIAGNOSTICS;NOMINMAX;_MBCS;%(PreprocessorDefinitions)
-
-
- Console
- windowsapp.lib
-
-
- $(CppWinRTDir)cppwinrt -in $(CppWinRTDir)test_component_fast.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi
-
-
-
-
-
-
Disabled
@@ -212,34 +180,6 @@
-
-
- MaxSpeed
- true
- true
- true
- true
- $(CppWinRTDir);$(OutputPath);Generated Files;..\
- stdcpp17
- Use
- pch.h
- true
- WINRT_DIAGNOSTICS;NOMINMAX;_MBCS;%(PreprocessorDefinitions)
-
-
- Console
- true
- true
- windowsapp.lib
-
-
- $(CppWinRTDir)cppwinrt -in $(CppWinRTDir)test_component_fast.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose -fastabi
-
-
-
-
-
-
@@ -325,18 +265,12 @@
false
MultiThreaded
-
- MultiThreaded
-
MultiThreaded
MultiThreaded
-
- MultiThreadedDebug
-
MultiThreadedDebug
diff --git a/test/test_module_lock_custom/test_module_lock_custom.vcxproj b/test/test_module_lock_custom/test_module_lock_custom.vcxproj
index 6bb40e761..6671a1156 100644
--- a/test/test_module_lock_custom/test_module_lock_custom.vcxproj
+++ b/test/test_module_lock_custom/test_module_lock_custom.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -45,10 +37,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -58,11 +46,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -85,18 +68,12 @@
-
-
-
-
-
-
@@ -149,25 +126,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..\;
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
-
-
-
-
-
-
-
-
-
-
Disabled
@@ -229,29 +187,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..\;
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
-
-
-
-
-
-
-
-
-
-
MaxSpeed
diff --git a/test/test_module_lock_none/test_module_lock_none.vcxproj b/test/test_module_lock_none/test_module_lock_none.vcxproj
index 7f460c6b2..381edbdfe 100644
--- a/test/test_module_lock_none/test_module_lock_none.vcxproj
+++ b/test/test_module_lock_none/test_module_lock_none.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -45,10 +37,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -58,11 +46,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -85,18 +68,12 @@
-
-
-
-
-
-
@@ -149,25 +126,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..\
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
-
-
-
-
-
-
-
-
-
-
Disabled
@@ -229,29 +187,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..\
- NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
-
-
-
-
-
-
-
-
-
-
MaxSpeed
diff --git a/test/test_slow/test_slow.vcxproj b/test/test_slow/test_slow.vcxproj
index 75891b64b..eb6c7fc60 100644
--- a/test/test_slow/test_slow.vcxproj
+++ b/test/test_slow/test_slow.vcxproj
@@ -1,10 +1,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -13,10 +9,6 @@
Debug
Win32
-
- Release
- ARM
-
Release
ARM64
@@ -45,10 +37,6 @@
Application
true
-
- Application
- true
-
Application
true
@@ -58,11 +46,6 @@
false
true
-
- Application
- false
- true
-
Application
false
@@ -85,18 +68,12 @@
-
-
-
-
-
-
@@ -147,24 +124,6 @@
-
-
- Disabled
- $(OutputPath);Generated Files;..\
- WINRT_DIAGNOSTICS;NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreadedDebug
-
-
- Console
-
-
- $(CppWinRTDir)cppwinrt -in $(OutputPath)test_component_fast.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose
-
-
-
-
-
-
Disabled
@@ -223,28 +182,6 @@
-
-
- MaxSpeed
- true
- true
- $(OutputPath);Generated Files;..\
- WINRT_DIAGNOSTICS;NOMINMAX;_MBCS;%(PreprocessorDefinitions)
- MultiThreaded
-
-
- Console
- true
- true
-
-
- $(CppWinRTDir)cppwinrt -in $(OutputPath)test_component_fast.winmd -out "$(ProjectDir)Generated Files" -ref sdk -verbose
-
-
-
-
-
-
MaxSpeed
diff --git a/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj b/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj
index c270aa038..30630610e 100644
--- a/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj
+++ b/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj
@@ -18,10 +18,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -34,10 +30,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
diff --git a/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj b/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj
index bd839b0b2..841ff85c9 100644
--- a/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj
+++ b/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj
@@ -17,10 +17,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -33,10 +29,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
diff --git a/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj b/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj
index accf6d492..ec8126558 100644
--- a/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj
+++ b/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj
@@ -19,10 +19,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -35,10 +31,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64
diff --git a/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj b/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj
index 7846860c0..78c477177 100644
--- a/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj
+++ b/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj
@@ -18,10 +18,6 @@
-
- Debug
- ARM
-
Debug
ARM64
@@ -34,10 +30,6 @@
Debug
x64
-
- Release
- ARM
-
Release
ARM64