diff options
-rw-r--r-- | appveyor.cmd | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index 0d108c00..c54f9161 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,22 +1,22 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | nuget restore | 4 | nuget restore || exit /b |
5 | 5 | ||
6 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 | 6 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 || exit /b |
7 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 | 7 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 || exit /b |
8 | 8 | ||
9 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 | 9 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 || exit /b |
10 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 | 10 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 || exit /b |
11 | msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141 | 11 | msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141 || exit /b |
12 | msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 | 12 | msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 || exit /b |
13 | 13 | ||
14 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 | 14 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 || exit /b |
15 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 | 15 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 || exit /b |
16 | msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142 | 16 | msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142 || exit /b |
17 | msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 | 17 | msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 || exit /b |
18 | 18 | ||
19 | msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj | 19 | msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj || exit /b |
20 | 20 | ||
21 | @popd | 21 | @popd |
22 | @endlocal \ No newline at end of file | 22 | @endlocal \ No newline at end of file |