UI.wixext/appveyor.cmd

14 строки
382 B
Batchfile
Исходник Постоянная ссылка Обычный вид История

2019-01-13 01:49:42 +03:00
@setlocal
@pushd %~dp0
2020-06-28 01:29:46 +03:00
nuget restore || exit /b
2019-01-13 01:49:42 +03:00
2020-06-28 01:29:46 +03:00
msbuild -p:Configuration=Release -t:Restore || exit /b
2019-01-13 01:49:42 +03:00
2020-06-28 01:29:46 +03:00
msbuild -p:Configuration=Release src\test\WixToolsetTest.UI\WixToolsetTest.UI.csproj || exit /b
dotnet test -c Release --no-build src\test\WixToolsetTest.UI || exit /b
2019-01-13 01:49:42 +03:00
2020-06-28 01:29:46 +03:00
msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.UI.wixext.csproj || exit /b
2019-01-13 01:49:42 +03:00
@popd
@endlocal