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