From cd0d556f06a220c3406d3a42a4e4628ee1cb7cd6 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 27 Jun 2020 14:37:51 -0700 Subject: Improve build batch file --- appveyor.cmd | 9 +++++---- nuget.config | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/appveyor.cmd b/appveyor.cmd index f9266a21..16a34ff9 100644 --- a/appveyor.cmd +++ b/appveyor.cmd @@ -1,13 +1,14 @@ @setlocal @pushd %~dp0 -nuget restore +nuget restore || exit /b -msbuild -p:Configuration=Release -t:Restore +msbuild -p:Configuration=Release -t:Restore || exit /b -msbuild -p:Configuration=Release src\test\WixToolsetTest.Http\WixToolsetTest.Http.csproj +msbuild -p:Configuration=Release src\test\WixToolsetTest.Http\WixToolsetTest.Http.csproj || exit /b +dotnet test -c Release --no-build src\test\WixToolsetTest.Http || exit /b -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Http.wixext.csproj +msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Http.wixext.csproj || exit /b @popd @endlocal \ No newline at end of file diff --git a/nuget.config b/nuget.config index aaee3228..db7aba29 100644 --- a/nuget.config +++ b/nuget.config @@ -2,6 +2,7 @@ + -- cgit v1.2.3-55-g6feb