From ae2e6a86aedc77d73a675befcdacb83820a8d82a Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Tue, 8 Dec 2020 14:57:06 -0600 Subject: Update to latest tools and check for failure in appveyor.cmd. --- appveyor.cmd | 12 +++++------- global.json | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/appveyor.cmd b/appveyor.cmd index 3ee1f17e..50bd492d 100644 --- a/appveyor.cmd +++ b/appveyor.cmd @@ -1,16 +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.NetFx\WixToolsetTest.NetFx.csproj +msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj || exit /b +dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx || exit /b -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj - -msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj -dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx +msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj || exit /b @popd @endlocal \ No newline at end of file diff --git a/global.json b/global.json index 77a81322..349951b0 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "msbuild-sdks": { - "WixToolset.Sdk": "4.0.0-build-0170" + "WixToolset.Sdk": "4.0.0-build-0171" } } -- cgit v1.2.3-55-g6feb