diff options
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index eae4e787..2347f074 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,14 +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.Util\WixToolsetTest.Util.csproj | 8 | msbuild -p:Configuration=Release src\test\WixToolsetTest.Util\WixToolsetTest.Util.csproj || exit /b |
9 | dotnet test -c Release --no-build src\test\WixToolsetTest.Util | 9 | dotnet test -c Release --no-build src\test\WixToolsetTest.Util || exit /b |
10 | 10 | ||
11 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Util.wixext.csproj | 11 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Util.wixext.csproj || exit /b |
12 | 12 | ||
13 | @popd | 13 | @popd |
14 | @endlocal \ No newline at end of file | 14 | @endlocal |