diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-21 11:01:10 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-29 16:24:05 -0700 |
commit | d2f27517dffc02b7c50e386793c7ad89762c6b64 (patch) | |
tree | 7c0fa5024c1a6672b3716861a640faacb70658ad /appveyor.cmd | |
parent | 8deeffb615244c62a0c94ea99d01ece88b1caf09 (diff) | |
download | wix-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.cmd | 5 |
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 | ||
5 | nuget restore || exit /b | 6 | nuget restore || exit /b |
6 | 7 | ||
@@ -17,8 +18,8 @@ msbuild -p:Configuration=%_C%;Platform=ARM64;PlatformToolset=v142 || exit /b | |||
17 | 18 | ||
18 | dotnet test -c %_C% --no-build src\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj || exit /b | 19 | dotnet test -c %_C% --no-build src\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj || exit /b |
19 | 20 | ||
20 | msbuild -t:Pack -p:Configuration=%_C% src\balutil\balutil.vcxproj || exit /b | 21 | msbuild -t:PackNative -p:Configuration=%_C% src\balutil\balutil.vcxproj || exit /b |
21 | msbuild -t:Pack -p:Configuration=%_C% src\bextutil\bextutil.vcxproj || exit /b | 22 | msbuild -t:PackNative -p:Configuration=%_C% src\bextutil\bextutil.vcxproj || exit /b |
22 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj || exit /b | 23 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj || exit /b |
23 | 24 | ||
24 | @popd | 25 | @popd |