Use latest MSVS 2022 solution files on AppVeyor

For some reason we still used MSVS 2015 solutions, even when using MSVS
2017 compiler.
This commit is contained in:
Vadim Zeitlin
2024-11-22 00:39:32 +01:00
parent 140970bbc6
commit 8213438bac
2 changed files with 6 additions and 4 deletions
+2
View File
@@ -35,10 +35,12 @@ environment:
- TOOLSET: msbuild
CONFIGURATION: DLL Release
ARCH: x64
VSVER: 17
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
- TOOLSET: msbuild
CONFIGURATION: Debug
ARCH: x64
VSVER: 17
wxUSE_UNICODE_UTF8: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
- TOOLSET: nmake
+4 -4
View File
@@ -9,12 +9,12 @@ goto %TOOLSET%
:msbuild
cd build\msw
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" wx_vc14.sln %MSBUILD_LOGGER%
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" wx_vc%VSVER%.sln %MSBUILD_LOGGER%
cd ..\..\tests
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" test_vc14.sln %MSBUILD_LOGGER%
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" test_gui_vc14.sln %MSBUILD_LOGGER%
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" test_vc%VSVER%.sln %MSBUILD_LOGGER%
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" test_gui_vc%VSVER%.sln %MSBUILD_LOGGER%
cd ..\samples
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" /t:"1 Fundamental Samples\minimal" samples_vc14.sln %MSBUILD_LOGGER%
msbuild /m:2 /v:n /p:Platform=%ARCH% /p:Configuration="%CONFIGURATION%" /t:"1 Fundamental Samples\minimal" samples_vc%VSVER%.sln %MSBUILD_LOGGER%
goto :eof
:nmake