@joebigelow / wix / commits / becc2bb0

Only build mbanative for latest toolset.

This allows using Appveyor's latest VS2019 image.

Sean Hall committed Dec 1, 2021 at 11:31 UTC becc2bb059013f488d753ab51218064b3358ac91
2 files changed +9 -8
appveyor.yml
+1 -1
@@ -5,7 +5,7 @@ branches:
5 - master
6 - develop
7
8 -image: vs2019-16-11-2
8 +image: Visual Studio 2019
9
10 version: 0.0.0.{build}
11 configuration: Release
src/api/burn/burn.proj
+8 -7
@@ -6,7 +6,6 @@
6
7 <!-- Build -->
8
9 - <!-- Let bextutil build balutil. -->
9 <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86;PlatformToolset=v140" />
10 <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x64;PlatformToolset=v140" />
11 <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86;PlatformToolset=v141" />
@@ -15,12 +14,14 @@
14 <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86" />
15 <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x64" />
16 <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=ARM64" />
18 -
19 - <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86;PlatformToolset=v140" />
20 - <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64;PlatformToolset=v140" />
21 - <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86;PlatformToolset=v141" />
22 - <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64;PlatformToolset=v141" />
23 - <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64;PlatformToolset=v141" />
17 +
18 + <ProjectReference Include="balutil\balutil.vcxproj" Properties="Platform=x86;PlatformToolset=v140" />
19 + <ProjectReference Include="balutil\balutil.vcxproj" Properties="Platform=x64;PlatformToolset=v140" />
20 + <ProjectReference Include="balutil\balutil.vcxproj" Properties="Platform=x86;PlatformToolset=v141" />
21 + <ProjectReference Include="balutil\balutil.vcxproj" Properties="Platform=x64;PlatformToolset=v141" />
22 + <ProjectReference Include="balutil\balutil.vcxproj" Properties="Platform=ARM64;PlatformToolset=v141" />
23 +
24 + <!-- Let mbanative build balutil for latest toolset. -->
25 <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86" />
26 <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64" />
27 <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64" />