aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-21 11:01:10 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:24:05 -0700
commitd2f27517dffc02b7c50e386793c7ad89762c6b64 (patch)
tree7c0fa5024c1a6672b3716861a640faacb70658ad /appveyor.cmd
parent8deeffb615244c62a0c94ea99d01ece88b1caf09 (diff)
downloadwix-d2f27517dffc02b7c50e386793c7ad89762c6b64.tar.gz
wix-d2f27517dffc02b7c50e386793c7ad89762c6b64.tar.bz2
wix-d2f27517dffc02b7c50e386793c7ad89762c6b64.zip
Integrate new build scripts with signing support
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd5
1 files changed, 3 insertions, 2 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index 19c2d49f..d765e3ea 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,6 +1,7 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3@set _C=Release 3@set _C=Release
4@if /i "%1"=="debug" set _C=Debug
4 5
5nuget restore || exit /b 6nuget restore || exit /b
6 7
@@ -17,8 +18,8 @@ msbuild -p:Configuration=%_C%;Platform=ARM64;PlatformToolset=v142 || exit /b
17 18
18dotnet test -c %_C% --no-build src\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj || exit /b 19dotnet test -c %_C% --no-build src\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj || exit /b
19 20
20msbuild -t:Pack -p:Configuration=%_C% src\balutil\balutil.vcxproj || exit /b 21msbuild -t:PackNative -p:Configuration=%_C% src\balutil\balutil.vcxproj || exit /b
21msbuild -t:Pack -p:Configuration=%_C% src\bextutil\bextutil.vcxproj || exit /b 22msbuild -t:PackNative -p:Configuration=%_C% src\bextutil\bextutil.vcxproj || exit /b
22msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj || exit /b 23msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj || exit /b
23 24
24@popd 25@popd