aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-22 14:34:24 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-22 14:39:10 +1000
commite4f1a4310f09e3777d035f35f4b4ca69d69f5083 (patch)
tree844df1d2d8f7815ca3fca3752a704877ad62869f /appveyor.cmd
parent75ec7925bb5276c21c1b948f2162c8afcd47e699 (diff)
downloadwix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.tar.gz
wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.tar.bz2
wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.zip
Update dependencies.
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