diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-27 15:11:24 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 15:14:32 -0700 |
commit | e2567d00aa073a08f6202d913606857f085b6d52 (patch) | |
tree | b88db8e2bcdf0d3890b581154bbeb29f8f9f51d8 | |
parent | 9388b29e0745de390ca15e5e113326ac59d8b34c (diff) | |
download | wix-e2567d00aa073a08f6202d913606857f085b6d52.tar.gz wix-e2567d00aa073a08f6202d913606857f085b6d52.tar.bz2 wix-e2567d00aa073a08f6202d913606857f085b6d52.zip |
Improve build batch file
-rw-r--r-- | appveyor.cmd | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index 3a8bbfae..af993a8f 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,13 +1,14 @@ | |||
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 -t:Restore | 6 | msbuild -p:Configuration=Release -t:Restore || exit /b |
7 | 7 | ||
8 | msbuild -p:Configuration=Release src\test\WixToolsetTest.Iis\WixToolsetTest.Iis.csproj | 8 | msbuild -p:Configuration=Release src\test\WixToolsetTest.Iis\WixToolsetTest.Iis.csproj || exit /b |
9 | dotnet test -c Release --no-build src\test\WixToolsetTest.Iis || exit /b | ||
9 | 10 | ||
10 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Iis.wixext.csproj | 11 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Iis.wixext.csproj || exit /b |
11 | 12 | ||
12 | @popd | 13 | @popd |
13 | @endlocal \ No newline at end of file | 14 | @endlocal \ No newline at end of file |