blob: ddad4daed560408b0da2426c9b1fba03a3b4aab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@setlocal
@pushd %~dp0
nuget restore
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141
msbuild -p:Configuration=Release -t:Pack src\balutil\balutil.vcxproj
msbuild -p:Configuration=Release -t:Pack src\bextutil\bextutil.vcxproj
msbuild -p:Configuration=Release -t:Pack src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj
@popd
@endlocal
|