visual studio project tweaks

This commit is contained in:
nhmall
2025-11-18 13:44:55 -05:00
parent b1cffe11f9
commit a9d11db853
8 changed files with 162 additions and 115 deletions

View File

@@ -42,23 +42,30 @@
</PropertyGroup>
<PropertyGroup>
<HostTools></HostTools>
<Host>$(Platform)</Host>
</PropertyGroup>
<PropertyGroup Condition="'$(PROCESSOR_ARCHITECTURE)'=='ARM64'AND '$(Platform)'=='x86'">
<HostTools>..\ARM64\</HostTools>
<Host>arm64</Host>
</PropertyGroup>
<PropertyGroup Condition="'$(PROCESSOR_ARCHITECTURE)'=='ARM64'AND '$(Platform)'=='x64'">
<HostTools>..\ARM64\</HostTools>
<Host>arm64</Host>
</PropertyGroup>
<PropertyGroup Condition="'$(PROCESSOR_ARCHITECTURE)'=='ARM64'AND '$(Platform)'=='ARM64'">
<HostTools>..\ARM64\</HostTools>
<Host>arm64</Host>
</PropertyGroup>
<PropertyGroup Condition="'$(PROCESSOR_ARCHITECTURE)'=='AMD64'AND '$(Platform)'=='x86'">
<HostTools>..\x64\</HostTools>
<Host>x64</Host>
</PropertyGroup>
<PropertyGroup Condition="'$(PROCESSOR_ARCHITECTURE)'=='AMD64'AND '$(Platform)'=='x64'">
<HostTools>..\x64\</HostTools>
<Host>x64</Host>
</PropertyGroup>
<PropertyGroup Condition="'$(PROCESSOR_ARCHITECTURE)'=='AMD64'AND '$(Platform)'=='ARM64'">
<HostTools>..\x64\</HostTools>
<Host>x64</Host>
</PropertyGroup>
</Project>