From 79bc46ce89435b275888c7914a07f3e47e5af0fb Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 27 Jun 2020 12:08:21 -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 dc40e10c..ec37397e 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.DifxApp\WixToolsetTest.DifxApp.csproj +msbuild -p:Configuration=Release src\test\WixToolsetTest.DifxApp\WixToolsetTest.DifxApp.csproj || exit /b +dotnet test -c Release --no-build src\test\WixToolsetTest.DifxApp || exit /b -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.DifxApp.wixext.csproj +msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.DifxApp.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