diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-22 14:34:24 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-22 14:39:10 +1000 |
commit | e4f1a4310f09e3777d035f35f4b4ca69d69f5083 (patch) | |
tree | 844df1d2d8f7815ca3fca3752a704877ad62869f /appveyor.cmd | |
parent | 75ec7925bb5276c21c1b948f2162c8afcd47e699 (diff) | |
download | wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.tar.gz wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.tar.bz2 wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.zip |
Update dependencies.
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 15 |
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 | ||
4 | nuget restore | 5 | nuget restore || exit /b |
5 | 6 | ||
6 | msbuild -p:Configuration=Release -t:Restore | 7 | msbuild -p:Configuration=%_C% -t:Restore || exit /b |
7 | 8 | ||
8 | msbuild -p:Configuration=Release | 9 | msbuild -p:Configuration=%_C% || exit /b |
9 | 10 | ||
10 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Bal.wixext.csproj | 11 | msbuild -p:Configuration=%_C% -t:Pack src\wixext\WixToolset.Bal.wixext.csproj || exit /b |
11 | msbuild -p:Configuration=Release -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj | 12 | msbuild -p:Configuration=%_C% -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b |
12 | 13 | ||
13 | msbuild -p:Configuration=Release src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj | 14 | msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj || exit /b |
14 | dotnet test -c Release --no-build src\test\WixToolsetTest.Bal | 15 | dotnet 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 |