blob: a35e10d511c068d8afe6692632f1470693285e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@setlocal
@pushd %~dp0
@set _C=Release
@if /i "%1"=="debug" set _C=Debug
nuget restore || exit /b
msbuild -t:Test -p:Configuration=%_C% src\test\BurnUnitTest || exit /b
msbuild -p:Configuration=%_C%;Platform=x86 || exit /b
msbuild -p:Configuration=%_C%;Platform=x64 || exit /b
msbuild -p:Configuration=%_C%;Platform=arm64 || exit /b
msbuild -p:Configuration=%_C% -t:PackNative src\stub\stub.vcxproj || exit /b
@popd
@endlocal
|