aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-16 17:24:03 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-18 21:42:42 +1000
commitb73f7f24be617227f14240fa9ba9e12fa386913d (patch)
tree4b70acf77787fea2b71ccd905e4284e1ef4c3e9d
parente098e81334febeddf7c4dcd9579c7f913f7bd042 (diff)
downloadwix-b73f7f24be617227f14240fa9ba9e12fa386913d.tar.gz
wix-b73f7f24be617227f14240fa9ba9e12fa386913d.tar.bz2
wix-b73f7f24be617227f14240fa9ba9e12fa386913d.zip
Fail build for each command.
-rw-r--r--appveyor.cmd24
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
4nuget restore 4nuget restore || exit /b
5 5
6msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 6msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 || exit /b
7msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 7msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 || exit /b
8 8
9msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 9msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 || exit /b
10msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 10msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 || exit /b
11msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141 11msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141 || exit /b
12msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 12msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 || exit /b
13 13
14msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 14msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 || exit /b
15msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 15msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 || exit /b
16msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142 16msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142 || exit /b
17msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 17msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 || exit /b
18 18
19msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj 19msbuild -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