From e4f1a4310f09e3777d035f35f4b4ca69d69f5083 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 22 Jun 2020 14:34:24 +1000 Subject: Update dependencies. --- appveyor.cmd | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'appveyor.cmd') diff --git a/appveyor.cmd b/appveyor.cmd index e270866d..295607cb 100644 --- a/appveyor.cmd +++ b/appveyor.cmd @@ -1,17 +1,18 @@ @setlocal @pushd %~dp0 +@set _C=Release -nuget restore +nuget restore || exit /b -msbuild -p:Configuration=Release -t:Restore +msbuild -p:Configuration=%_C% -t:Restore || exit /b -msbuild -p:Configuration=Release +msbuild -p:Configuration=%_C% || exit /b -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Bal.wixext.csproj -msbuild -p:Configuration=Release -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj +msbuild -p:Configuration=%_C% -t:Pack src\wixext\WixToolset.Bal.wixext.csproj || exit /b +msbuild -p:Configuration=%_C% -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b -msbuild -p:Configuration=Release src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj -dotnet test -c Release --no-build src\test\WixToolsetTest.Bal +msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj || exit /b +dotnet test -c %_C% --no-build src\test\WixToolsetTest.Bal || exit /b @popd @endlocal \ No newline at end of file -- cgit v1.2.3-55-g6feb