diff options
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 |