blob: eeb56296948591ea4b7a325f6ae9479aa58a96c3 (
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 -warnaserror -Restore || exit /b
dotnet test -c %_C% --no-build src\WixToolsetTest.BurnE2E || exit /b
@popd
@endlocal
|