aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-22 16:58:03 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:36:05 -0700
commit9c2aed97299fb96aeee3f1471ce40225437aaecf (patch)
treefb871916c7878eecbcdf866d7d4b2fea5c0401c9 /appveyor.cmd
parentb6c44ffcf2ef7a706598fe218523ec377e96cc47 (diff)
downloadwix-9c2aed97299fb96aeee3f1471ce40225437aaecf.tar.gz
wix-9c2aed97299fb96aeee3f1471ce40225437aaecf.tar.bz2
wix-9c2aed97299fb96aeee3f1471ce40225437aaecf.zip
Integrate new build scripts with signing support
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd12
1 files changed, 7 insertions, 5 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index 4f18fbee..a35e10d5 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,15 +1,17 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3@set _C=Release
4@if /i "%1"=="debug" set _C=Debug
3 5
4nuget restore || exit /b 6nuget restore || exit /b
5 7
6msbuild -t:Test -p:Configuration=Release src\test\BurnUnitTest || exit /b 8msbuild -t:Test -p:Configuration=%_C% src\test\BurnUnitTest || exit /b
7 9
8msbuild -p:Configuration=Release;Platform=x86 || exit /b 10msbuild -p:Configuration=%_C%;Platform=x86 || exit /b
9msbuild -p:Configuration=Release;Platform=x64 || exit /b 11msbuild -p:Configuration=%_C%;Platform=x64 || exit /b
10msbuild -p:Configuration=Release;Platform=arm64 || exit /b 12msbuild -p:Configuration=%_C%;Platform=arm64 || exit /b
11 13
12msbuild -p:Configuration=Release -t:Pack src\stub\stub.vcxproj || exit /b 14msbuild -p:Configuration=%_C% -t:PackNative src\stub\stub.vcxproj || exit /b
13 15
14@popd 16@popd
15@endlocal \ No newline at end of file 17@endlocal \ No newline at end of file