blob: c0d965e5f0bef9b2c600ed9b2ded1e4b1b36da65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@setlocal
@pushd %~dp0
@set _C=Release
msbuild -p:Configuration=%_C% -warnaserror -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
|