aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-27 03:19:13 -0700
committerRob Mensching <rob@firegiant.com>2020-06-27 03:23:06 -0700
commitbf6deb49e0bdbf00ea2d00ac8b35add2060b946d (patch)
treeabe678a4e827231ca2c3b2f2dc8c647ed5405abb
parent8c81985d52fcad8f52bdf73f0c076a32468d8ac4 (diff)
downloadwix-bf6deb49e0bdbf00ea2d00ac8b35add2060b946d.tar.gz
wix-bf6deb49e0bdbf00ea2d00ac8b35add2060b946d.tar.bz2
wix-bf6deb49e0bdbf00ea2d00ac8b35add2060b946d.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 4621592d..84e1d13b 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.VisualStudio\WixToolsetTest.VisualStudio.csproj 8msbuild -p:Configuration=Release src\test\WixToolsetTest.VisualStudio\WixToolsetTest.VisualStudio.csproj || exit /b
9dotnet test -c Release --no-build src\test\WixToolsetTest.VisualStudio || exit /b
9 10
10msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.VisualStudio.wixext.csproj 11msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.VisualStudio.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