diff options
author | Rob Mensching <rob@firegiant.com> | 2021-12-21 12:44:27 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-12-30 08:15:54 -0800 |
commit | 4cd4828e6225a2ff5e81002a7f6f7401570b21c4 (patch) | |
tree | 54acd62489f52661881372b6d22bf6e670017ef2 /src/api/api.cmd | |
parent | 6d431a1488f770a0c2c753e2e3744fbb8d3eee0b (diff) | |
download | wix-4cd4828e6225a2ff5e81002a7f6f7401570b21c4.tar.gz wix-4cd4828e6225a2ff5e81002a7f6f7401570b21c4.tar.bz2 wix-4cd4828e6225a2ff5e81002a7f6f7401570b21c4.zip |
Build simplification and parallelization
Diffstat (limited to 'src/api/api.cmd')
-rw-r--r-- | src/api/api.cmd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/api.cmd b/src/api/api.cmd index 75303ea2..7a4bbb43 100644 --- a/src/api/api.cmd +++ b/src/api/api.cmd | |||
@@ -11,12 +11,12 @@ | |||
11 | :: restore | 11 | :: restore |
12 | :: build | 12 | :: build |
13 | :: pack | 13 | :: pack |
14 | msbuild -m -p:Configuration=%_C% api.proj || exit /b | ||
15 | 14 | ||
16 | :: test | 15 | msbuild api_t.proj -p:Configuration=%_C% -nologo -m -bl:..\..\build\logs\api_build.binlog || exit /b |
17 | dotnet test -c %_C% --no-build burn\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj || exit /b | ||
18 | dotnet test -c %_C% --no-build wix\api_wix.sln || exit /b | ||
19 | 16 | ||
17 | :: test | ||
18 | dotnet test burn\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj -c %_C% --nologo --no-build || exit /b | ||
19 | dotnet test wix\api_wix.sln -c %_C% --nologo --no-build || exit /b | ||
20 | 20 | ||
21 | @popd | 21 | @popd |
22 | @endlocal | 22 | @endlocal |