From 9c2aed97299fb96aeee3f1471ce40225437aaecf Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 22 Apr 2021 16:58:03 -0700 Subject: Integrate new build scripts with signing support --- appveyor.cmd | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'appveyor.cmd') diff --git a/appveyor.cmd b/appveyor.cmd index 4f18fbee..a35e10d5 100644 --- a/appveyor.cmd +++ b/appveyor.cmd @@ -1,15 +1,17 @@ @setlocal @pushd %~dp0 +@set _C=Release +@if /i "%1"=="debug" set _C=Debug nuget restore || exit /b -msbuild -t:Test -p:Configuration=Release src\test\BurnUnitTest || exit /b +msbuild -t:Test -p:Configuration=%_C% src\test\BurnUnitTest || exit /b -msbuild -p:Configuration=Release;Platform=x86 || exit /b -msbuild -p:Configuration=Release;Platform=x64 || exit /b -msbuild -p:Configuration=Release;Platform=arm64 || 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=Release -t:Pack src\stub\stub.vcxproj || exit /b +msbuild -p:Configuration=%_C% -t:PackNative src\stub\stub.vcxproj || exit /b @popd @endlocal \ No newline at end of file -- cgit v1.2.3-55-g6feb