From f40f13e06e72b88e7d9602aa64494238a697d1a7 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 27 Jun 2020 14:55:22 -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 365f9ac2..f493b577 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.Msmq\WixToolsetTest.Msmq.csproj +msbuild -p:Configuration=Release src\test\WixToolsetTest.Msmq\WixToolsetTest.Msmq.csproj || exit /b +dotnet test -c Release --no-build src\test\WixToolsetTest.Msmq || exit /b -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Msmq.wixext.csproj +msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Msmq.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