blob: 48033840ae1e340d9dd1f7a7fe4ec4a42bcabfce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@setlocal
@pushd %~dp0
nuget restore || 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
|