blob: b0283678111a415b92b48b359d807f7702370fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@setlocal
@pushd %~dp0
@set _C=Release
msbuild -p:Configuration=%_C% -Restore || exit /b
msbuild -p:Configuration=%_C% src\TestData -Restore || exit /b
dotnet test -c %_C% --no-build src\WixToolsetTest.BurnE2E || exit /b
@popd
@endlocal
|