aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd13
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
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 -p:Platform=Win32 src\ca\complusca.vcxproj 8msbuild -p:Configuration=Release -p:Platform=Win32 src\ca\complusca.vcxproj || exit /b
9msbuild -p:Configuration=Release -p:Platform=x64 src\ca\complusca.vcxproj 9msbuild -p:Configuration=Release -p:Platform=x64 src\ca\complusca.vcxproj || exit /b
10 10
11msbuild -p:Configuration=Release src\test\WixToolsetTest.ComPlus\WixToolsetTest.ComPlus.csproj 11msbuild -p:Configuration=Release src\test\WixToolsetTest.ComPlus\WixToolsetTest.ComPlus.csproj || exit /b
12dotnet test -c Release --no-build src\test\WixToolsetTest.ComPlus || exit /b
12 13
13msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.ComPlus.wixext.csproj 14msbuild -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