@joebigelow / wix / commits / b73f7f24

Fail build for each command.

Sean Hall committed Jun 16, 2020 at 17:24 UTC b73f7f24be617227f14240fa9ba9e12fa386913d
1 file changed +12 -12
appveyor.cmd
+12 -12
@@ -1,22 +1,22 @@
1 @setlocal
2 @pushd %~dp0
3
4 -nuget restore
4 +nuget restore || exit /b
5
6 -msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140
7 -msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140
6 +msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 || exit /b
7 +msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 || exit /b
8
9 -msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141
10 -msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141
11 -msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141
12 -msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141
9 +msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 || exit /b
10 +msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 || exit /b
11 +msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141 || exit /b
12 +msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 || exit /b
13
14 -msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142
15 -msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142
16 -msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142
17 -msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142
14 +msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 || exit /b
15 +msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 || exit /b
16 +msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142 || exit /b
17 +msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 || exit /b
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
21 @popd
22 @endlocal
\ No newline at end of file