blob: 3450d535ff801de1840e19330ac752c6b2dc52cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@setlocal
@pushd %~dp0
@set _C=Release
@if /i "%1"=="debug" set _C=Debug
:: Restore
msbuild -p:Configuration=%_C% -t:Restore || exit /b
:: Build
msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Dependency\WixToolsetTest.Dependency.csproj || exit /b
:: Test
dotnet test -c %_C% --no-build src\test\WixToolsetTest.Dependency || exit /b
:: Pack
msbuild -p:Configuration=%_C% -p:NoBuild=true -t:Pack src\wixext\WixToolset.Dependency.wixext.csproj || exit /b
@popd
@endlocal
|