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