aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-27 15:29:46 -0700
committerRob Mensching <rob@firegiant.com>2020-07-19 10:09:05 -0700
commita6b77f7e7f1a36a1fe8fdee6ba1e78c994e100e7 (patch)
tree683a03a75e5ed2e9d01e33832e1843b346a90687
parent108bd6ec9909692ec6d71636d460792de9e92a32 (diff)
downloadwix-a6b77f7e7f1a36a1fe8fdee6ba1e78c994e100e7.tar.gz
wix-a6b77f7e7f1a36a1fe8fdee6ba1e78c994e100e7.tar.bz2
wix-a6b77f7e7f1a36a1fe8fdee6ba1e78c994e100e7.zip
Improve build batch file
-rw-r--r--appveyor.cmd9
1 files changed, 5 insertions, 4 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index fd2a6e44..2c727278 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,13 +1,14 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3 3
4nuget restore 4nuget restore || exit /b
5 5
6msbuild -p:Configuration=Release -t:Restore 6msbuild -p:Configuration=Release -t:Restore || exit /b
7 7
8msbuild -p:Configuration=Release src\test\WixToolsetTest.UI\WixToolsetTest.UI.csproj 8msbuild -p:Configuration=Release src\test\WixToolsetTest.UI\WixToolsetTest.UI.csproj || exit /b
9dotnet test -c Release --no-build src\test\WixToolsetTest.UI || exit /b
9 10
10msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.UI.wixext.csproj 11msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.UI.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