diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-18 18:03:33 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-18 22:08:12 +1000 |
commit | b7ee8f1eaa4e67b3eeba426b4bc528b35042dbea (patch) | |
tree | 339b035debafe3b82fcdc7dbff144d6d5bbbf248 /appveyor.cmd | |
parent | 9010bd828e70e91523ed74733cc371eec09f58bb (diff) | |
download | wix-b7ee8f1eaa4e67b3eeba426b4bc528b35042dbea.tar.gz wix-b7ee8f1eaa4e67b3eeba426b4bc528b35042dbea.tar.bz2 wix-b7ee8f1eaa4e67b3eeba426b4bc528b35042dbea.zip |
Create netstandard version of Mba.Core and separate nupkg for mbanative.
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index ddad4dae..1e1f118c 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,15 +1,19 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | @set _C=Release | ||
3 | 4 | ||
4 | nuget restore | 5 | nuget restore |
5 | 6 | ||
6 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 | 7 | msbuild -p:Configuration=%_C%;Platform=x86;PlatformToolset=v140 |
7 | 8 | ||
8 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 | 9 | msbuild -p:Configuration=%_C%;Platform=x86;PlatformToolset=v141 |
9 | 10 | ||
10 | msbuild -p:Configuration=Release -t:Pack src\balutil\balutil.vcxproj | 11 | @rem msbuild -t:VSTest -p:Configuration=%_C% src\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj |
11 | msbuild -p:Configuration=Release -t:Pack src\bextutil\bextutil.vcxproj | 12 | |
12 | msbuild -p:Configuration=Release -t:Pack src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj | 13 | msbuild -t:Pack -p:Configuration=%_C% src\balutil\balutil.vcxproj |
14 | msbuild -t:Pack -p:Configuration=%_C% src\bextutil\bextutil.vcxproj | ||
15 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Mba.Core\WixToolset.Mba.Core.csproj | ||
16 | msbuild -t:Pack -p:Configuration=%_C% src\mbanative\mbanative.vcxproj | ||
13 | 17 | ||
14 | @popd | 18 | @popd |
15 | @endlocal \ No newline at end of file | 19 | @endlocal \ No newline at end of file |