blob: 95b09f81518ab0b816c650bc430e0f96d3f2758a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@setlocal
@pushd %~dp0
@set _C=Release
nuget restore || exit /b
msbuild -p:Configuration=%_C% -t:Restore || exit /b
msbuild -p:Configuration=%_C% || exit /b
dotnet test -c %_C% --no-build src\test\WixToolsetTest.Bal || exit /b
msbuild -p:Configuration=%_C% -t:Pack src\wixext\WixToolset.Bal.wixext.csproj || exit /b
msbuild -p:Configuration=%_C% -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b
@popd
@endlocal
|