diff options
| -rw-r--r-- | appveyor.cmd | 9 |
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 | ||
| 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.UI\WixToolsetTest.UI.csproj | 8 | msbuild -p:Configuration=Release src\test\WixToolsetTest.UI\WixToolsetTest.UI.csproj || exit /b |
| 9 | dotnet test -c Release --no-build src\test\WixToolsetTest.UI || exit /b | ||
| 9 | 10 | ||
| 10 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.UI.wixext.csproj | 11 | msbuild -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 |
