diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-08 14:57:06 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-08 15:59:45 -0600 |
commit | ae2e6a86aedc77d73a675befcdacb83820a8d82a (patch) | |
tree | 8dd6c253e7f32fddd1a105cd3eace8aa2d96f1f8 | |
parent | 761eb8b2f6a49f33fb733d8469572796ded6ae0f (diff) | |
download | wix-ae2e6a86aedc77d73a675befcdacb83820a8d82a.tar.gz wix-ae2e6a86aedc77d73a675befcdacb83820a8d82a.tar.bz2 wix-ae2e6a86aedc77d73a675befcdacb83820a8d82a.zip |
Update to latest tools and check for failure in appveyor.cmd.
-rw-r--r-- | appveyor.cmd | 12 | ||||
-rw-r--r-- | 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 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | nuget restore | 4 | nuget restore || exit /b |
5 | 5 | ||
6 | msbuild -p:Configuration=Release -t:Restore | 6 | msbuild -p:Configuration=Release -t:Restore || exit /b |
7 | 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 | ||
9 | 10 | ||
10 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj | 11 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj || exit /b |
11 | |||
12 | msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj | ||
13 | dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx | ||
14 | 12 | ||
15 | @popd | 13 | @popd |
16 | @endlocal \ No newline at end of file | 14 | @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 @@ | |||
1 | { | 1 | { |
2 | "msbuild-sdks": { | 2 | "msbuild-sdks": { |
3 | "WixToolset.Sdk": "4.0.0-build-0170" | 3 | "WixToolset.Sdk": "4.0.0-build-0171" |
4 | } | 4 | } |
5 | } | 5 | } |