diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-27 03:19:13 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 03:23:06 -0700 |
commit | bf6deb49e0bdbf00ea2d00ac8b35add2060b946d (patch) | |
tree | abe678a4e827231ca2c3b2f2dc8c647ed5405abb | |
parent | 8c81985d52fcad8f52bdf73f0c076a32468d8ac4 (diff) | |
download | wix-bf6deb49e0bdbf00ea2d00ac8b35add2060b946d.tar.gz wix-bf6deb49e0bdbf00ea2d00ac8b35add2060b946d.tar.bz2 wix-bf6deb49e0bdbf00ea2d00ac8b35add2060b946d.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 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 | ||
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.VisualStudio\WixToolsetTest.VisualStudio.csproj | 8 | msbuild -p:Configuration=Release src\test\WixToolsetTest.VisualStudio\WixToolsetTest.VisualStudio.csproj || exit /b |
9 | dotnet test -c Release --no-build src\test\WixToolsetTest.VisualStudio || exit /b | ||
9 | 10 | ||
10 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.VisualStudio.wixext.csproj | 11 | msbuild -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 |