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

This commit is contained in:
Sean Hall 2020-12-08 14:57:06 -06:00
Родитель 761eb8b2f6
Коммит ae2e6a86ae
2 изменённых файлов: 6 добавлений и 8 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -1,5 +1,5 @@
{
"msbuild-sdks": {
"WixToolset.Sdk": "4.0.0-build-0170"
"WixToolset.Sdk": "4.0.0-build-0171"
}
}