diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-16 17:24:03 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-18 21:42:42 +1000 |
commit | b73f7f24be617227f14240fa9ba9e12fa386913d (patch) | |
tree | 4b70acf77787fea2b71ccd905e4284e1ef4c3e9d | |
parent | e098e81334febeddf7c4dcd9579c7f913f7bd042 (diff) | |
download | wix-b73f7f24be617227f14240fa9ba9e12fa386913d.tar.gz wix-b73f7f24be617227f14240fa9ba9e12fa386913d.tar.bz2 wix-b73f7f24be617227f14240fa9ba9e12fa386913d.zip |
Fail build for each command.
-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 |