aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd15
1 files changed, 8 insertions, 7 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index e270866d..295607cb 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,17 +1,18 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3@set _C=Release
3 4
4nuget restore 5nuget restore || exit /b
5 6
6msbuild -p:Configuration=Release -t:Restore 7msbuild -p:Configuration=%_C% -t:Restore || exit /b
7 8
8msbuild -p:Configuration=Release 9msbuild -p:Configuration=%_C% || exit /b
9 10
10msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Bal.wixext.csproj 11msbuild -p:Configuration=%_C% -t:Pack src\wixext\WixToolset.Bal.wixext.csproj || exit /b
11msbuild -p:Configuration=Release -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj 12msbuild -p:Configuration=%_C% -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b
12 13
13msbuild -p:Configuration=Release src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj 14msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj || exit /b
14dotnet test -c Release --no-build src\test\WixToolsetTest.Bal 15dotnet test -c %_C% --no-build src\test\WixToolsetTest.Bal || exit /b
15 16
16@popd 17@popd
17@endlocal \ No newline at end of file 18@endlocal \ No newline at end of file