blob: 82602274ae838207db8ad726edff0da6ef857542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@setlocal
@pushd %~dp0
nuget restore || exit /b
msbuild -t:Test -p:Configuration=Release src\test\BurnUnitTest || exit /b
msbuild -p:Configuration=Release;Platform=x86 || exit /b
msbuild -p:Configuration=Release -t:Pack src\stub\stub.vcxproj || exit /b
msbuild -p:Configuration=Release -t:Pack src\WixToolset.BootstrapperCore.Native\WixToolset.BootstrapperCore.Native.proj || exit /b
@popd
@endlocal
|