@joebigelow / wix / commits / ae2e6a86

Update to latest tools and check for failure in appveyor.cmd.

Sean Hall committed Dec 8, 2020 at 14:57 UTC ae2e6a86aedc77d73a675befcdacb83820a8d82a
2 files changed +6 -8
appveyor.cmd
+5 -7
@@ -1,16 +1,14 @@
1 @setlocal
2 @pushd %~dp0
3
4 -nuget restore
4 +nuget restore || exit /b
5
6 -msbuild -p:Configuration=Release -t:Restore
6 +msbuild -p:Configuration=Release -t:Restore || exit /b
7
8 -msbuild -p:Configuration=Release src\test\WixToolsetTest.NetFx\WixToolsetTest.NetFx.csproj
8 +msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj || exit /b
9 +dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx || exit /b
10
10 -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj
11 -
12 -msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj
13 -dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx
11 +msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj || exit /b
12
13 @popd
14 @endlocal
\ No newline at end of file
global.json
+1 -1
@@ -1,5 +1,5 @@
1 {
2 "msbuild-sdks": {
3 - "WixToolset.Sdk": "4.0.0-build-0170"
3 + "WixToolset.Sdk": "4.0.0-build-0171"
4 }
5 }