diff options
| author | Rob Mensching <rob@firegiant.com> | 2023-12-06 11:53:44 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2023-12-16 14:32:21 -0800 |
| commit | 1bdcbeb08dfdcbec0929db19569e0eaa13de9c0e (patch) | |
| tree | d8c1f3684b9056d1255d158afe723af1bcad71b8 /src/ext | |
| parent | 6cd11a8a8bfb7f16ff1e866a58a10431a1738058 (diff) | |
| download | wix-1bdcbeb08dfdcbec0929db19569e0eaa13de9c0e.tar.gz wix-1bdcbeb08dfdcbec0929db19569e0eaa13de9c0e.tar.bz2 wix-1bdcbeb08dfdcbec0929db19569e0eaa13de9c0e.zip | |
Pretty up build output
Diffstat (limited to 'src/ext')
| -rw-r--r-- | src/ext/Bal/bal.cmd | 10 | ||||
| -rw-r--r-- | src/ext/ComPlus/complus.cmd | 4 | ||||
| -rw-r--r-- | src/ext/Dependency/dependency.cmd | 4 | ||||
| -rw-r--r-- | src/ext/DirectX/directx.cmd | 6 | ||||
| -rw-r--r-- | src/ext/Firewall/firewall.cmd | 4 | ||||
| -rw-r--r-- | src/ext/Http/http.cmd | 4 | ||||
| -rw-r--r-- | src/ext/Iis/iis.cmd | 2 | ||||
| -rw-r--r-- | src/ext/Msmq/msmq.cmd | 2 | ||||
| -rw-r--r-- | src/ext/NetFx/netfx.cmd | 4 | ||||
| -rw-r--r-- | src/ext/PowerShell/ps.cmd | 4 | ||||
| -rw-r--r-- | src/ext/Sql/sql.cmd | 4 | ||||
| -rw-r--r-- | src/ext/UI/ui.cmd | 4 | ||||
| -rw-r--r-- | src/ext/Util/util.cmd | 4 | ||||
| -rw-r--r-- | src/ext/VisualStudio/vs.cmd | 4 |
14 files changed, 30 insertions, 30 deletions
diff --git a/src/ext/Bal/bal.cmd b/src/ext/Bal/bal.cmd index eebef70f..2759d499 100644 --- a/src/ext/Bal/bal.cmd +++ b/src/ext/Bal/bal.cmd | |||
| @@ -23,9 +23,9 @@ | |||
| 23 | nuget restore dnchost\packages.config || exit /b | 23 | nuget restore dnchost\packages.config || exit /b |
| 24 | 24 | ||
| 25 | :: Build | 25 | :: Build |
| 26 | msbuild -Restore -p:Configuration=%_C% -bl:%_L%\ext_bal_build.binlog || exit /b | 26 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror -bl:%_L%\ext_bal_build.binlog || exit /b |
| 27 | 27 | ||
| 28 | msbuild -Restore -p:Configuration=%_C% test\examples\examples.proj -m -bl:%_L%\bal_examples_build.binlog || exit /b | 28 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -m -warnaserror test\examples\examples.proj -m -bl:%_L%\bal_examples_build.binlog || exit /b |
| 29 | 29 | ||
| 30 | :: Test | 30 | :: Test |
| 31 | dotnet test ^ | 31 | dotnet test ^ |
| @@ -35,9 +35,9 @@ dotnet test ^ | |||
| 35 | --nologo -l "trx;LogFileName=%_L%\TestResults\bal.wixext.trx" || exit /b | 35 | --nologo -l "trx;LogFileName=%_L%\TestResults\bal.wixext.trx" || exit /b |
| 36 | 36 | ||
| 37 | :: Pack | 37 | :: Pack |
| 38 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Bal.wixext.csproj || exit /b | 38 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Bal.wixext.csproj || exit /b |
| 39 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true WixToolset.Dnc.HostGenerator\WixToolset.Dnc.HostGenerator.csproj || exit /b | 39 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true WixToolset.Dnc.HostGenerator\WixToolset.Dnc.HostGenerator.csproj || exit /b |
| 40 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b | 40 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b |
| 41 | 41 | ||
| 42 | @goto :end | 42 | @goto :end |
| 43 | 43 | ||
diff --git a/src/ext/ComPlus/complus.cmd b/src/ext/ComPlus/complus.cmd index 67e55339..3b3a5772 100644 --- a/src/ext/ComPlus/complus.cmd +++ b/src/ext/ComPlus/complus.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo ComPlus.wixext build %_C% | 9 | @echo ComPlus.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.ComPlus || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.ComPlus || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.ComPlus.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.ComPlus.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal \ No newline at end of file | 21 | @endlocal \ No newline at end of file |
diff --git a/src/ext/Dependency/dependency.cmd b/src/ext/Dependency/dependency.cmd index f219fd57..0ebcbfd5 100644 --- a/src/ext/Dependency/dependency.cmd +++ b/src/ext/Dependency/dependency.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo Dependency.wixext build %_C% | 9 | @echo Dependency.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Dependency || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Dependency || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Dependency.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Dependency.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal | 21 | @endlocal |
diff --git a/src/ext/DirectX/directx.cmd b/src/ext/DirectX/directx.cmd index bc1068d7..56889513 100644 --- a/src/ext/DirectX/directx.cmd +++ b/src/ext/DirectX/directx.cmd | |||
| @@ -9,16 +9,16 @@ | |||
| 9 | @echo DirectX.wixext build %_C% | 9 | @echo DirectX.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Restore | 11 | :: Restore |
| 12 | msbuild -t:Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -t:Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Build | 14 | :: Build |
| 15 | msbuild -t:Build -p:Configuration=%_C% test\WixToolsetTest.DirectX\WixToolsetTest.DirectX.csproj || exit /b | 15 | msbuild -t:Build -p:Configuration=%_C% -tl -nologo -warnaserror test\WixToolsetTest.DirectX\WixToolsetTest.DirectX.csproj || exit /b |
| 16 | 16 | ||
| 17 | :: Test | 17 | :: Test |
| 18 | dotnet test -c %_C% --no-build test\WixToolsetTest.DirectX || exit /b | 18 | dotnet test -c %_C% --no-build test\WixToolsetTest.DirectX || exit /b |
| 19 | 19 | ||
| 20 | :: Pack | 20 | :: Pack |
| 21 | msbuild -t:Pack -p:Configuration=%_C% wixext\WixToolset.DirectX.wixext.csproj || exit /b | 21 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror wixext\WixToolset.DirectX.wixext.csproj || exit /b |
| 22 | 22 | ||
| 23 | @popd | 23 | @popd |
| 24 | @endlocal | 24 | @endlocal |
diff --git a/src/ext/Firewall/firewall.cmd b/src/ext/Firewall/firewall.cmd index 8e838bcf..92926a8c 100644 --- a/src/ext/Firewall/firewall.cmd +++ b/src/ext/Firewall/firewall.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo Firewall.wixext build %_C% | 9 | @echo Firewall.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Firewall || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Firewall || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Firewall.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Firewall.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal | 21 | @endlocal |
diff --git a/src/ext/Http/http.cmd b/src/ext/Http/http.cmd index 12919b6b..afcffb24 100644 --- a/src/ext/Http/http.cmd +++ b/src/ext/Http/http.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo Http.wixext build %_C% | 9 | @echo Http.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Http || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Http || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Http.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Http.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal | 21 | @endlocal |
diff --git a/src/ext/Iis/iis.cmd b/src/ext/Iis/iis.cmd index 49e3e0b7..0ae87a77 100644 --- a/src/ext/Iis/iis.cmd +++ b/src/ext/Iis/iis.cmd | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | @echo Iis.wixext build %_C% | 9 | @echo Iis.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% -nologo || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test test\WixToolsetTest.Iis -c %_C% --no-build --nologo || exit /b | 15 | dotnet test test\WixToolsetTest.Iis -c %_C% --no-build --nologo || exit /b |
diff --git a/src/ext/Msmq/msmq.cmd b/src/ext/Msmq/msmq.cmd index 963e3ecf..3ebceab4 100644 --- a/src/ext/Msmq/msmq.cmd +++ b/src/ext/Msmq/msmq.cmd | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | @echo Msmq.wixext build %_C% | 9 | @echo Msmq.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% -nologo || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test test\WixToolsetTest.Msmq -c %_C% --no-build --nologo || exit /b | 15 | dotnet test test\WixToolsetTest.Msmq -c %_C% --no-build --nologo || exit /b |
diff --git a/src/ext/NetFx/netfx.cmd b/src/ext/NetFx/netfx.cmd index 0b3fb28f..d81959cc 100644 --- a/src/ext/NetFx/netfx.cmd +++ b/src/ext/NetFx/netfx.cmd | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | nuget restore netcoresearch\packages.config || exit /b | 23 | nuget restore netcoresearch\packages.config || exit /b |
| 24 | 24 | ||
| 25 | :: Build | 25 | :: Build |
| 26 | msbuild -Restore -p:Configuration=%_C% -bl:%_L%\ext_netfx_build.binlog || exit /b | 26 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror -bl:%_L%\ext_netfx_build.binlog || exit /b |
| 27 | 27 | ||
| 28 | :: Test | 28 | :: Test |
| 29 | dotnet test ^ | 29 | dotnet test ^ |
| @@ -31,7 +31,7 @@ dotnet test ^ | |||
| 31 | --nologo -l "trx;LogFileName=%_L%\TestResults\netfx.wixext.trx" || exit /b | 31 | --nologo -l "trx;LogFileName=%_L%\TestResults\netfx.wixext.trx" || exit /b |
| 32 | 32 | ||
| 33 | :: Pack | 33 | :: Pack |
| 34 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Netfx.wixext.csproj || exit /b | 34 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Netfx.wixext.csproj || exit /b |
| 35 | 35 | ||
| 36 | @goto :end | 36 | @goto :end |
| 37 | 37 | ||
diff --git a/src/ext/PowerShell/ps.cmd b/src/ext/PowerShell/ps.cmd index cfb1274b..4a8aa61e 100644 --- a/src/ext/PowerShell/ps.cmd +++ b/src/ext/PowerShell/ps.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo PowerShell.wixext build %_C% | 9 | @echo PowerShell.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.PowerShell || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.PowerShell || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.PowerShell.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.PowerShell.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal | 21 | @endlocal |
diff --git a/src/ext/Sql/sql.cmd b/src/ext/Sql/sql.cmd index 97ed8448..41af0223 100644 --- a/src/ext/Sql/sql.cmd +++ b/src/ext/Sql/sql.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo Sql.wixext build %_C% | 9 | @echo Sql.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Sql || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.Sql || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Sql.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Sql.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal | 21 | @endlocal |
diff --git a/src/ext/UI/ui.cmd b/src/ext/UI/ui.cmd index b119649e..67ee3810 100644 --- a/src/ext/UI/ui.cmd +++ b/src/ext/UI/ui.cmd | |||
| @@ -20,13 +20,13 @@ | |||
| 20 | @echo UI.wixext build %_C% | 20 | @echo UI.wixext build %_C% |
| 21 | 21 | ||
| 22 | :: Build | 22 | :: Build |
| 23 | msbuild -Restore -p:Configuration=%_C% -warnaserror -bl:%_L%\ext_ui_build.binlog || exit /b | 23 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror -bl:%_L%\ext_ui_build.binlog || exit /b |
| 24 | 24 | ||
| 25 | :: Test | 25 | :: Test |
| 26 | :: dotnet test -c %_C% --no-build test\WixToolsetTest.UI || exit /b | 26 | :: dotnet test -c %_C% --no-build test\WixToolsetTest.UI || exit /b |
| 27 | 27 | ||
| 28 | :: Pack | 28 | :: Pack |
| 29 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.UI.wixext.csproj || exit /b | 29 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.UI.wixext.csproj || exit /b |
| 30 | 30 | ||
| 31 | @goto :end | 31 | @goto :end |
| 32 | 32 | ||
diff --git a/src/ext/Util/util.cmd b/src/ext/Util/util.cmd index 54ede2bf..3c66e7d8 100644 --- a/src/ext/Util/util.cmd +++ b/src/ext/Util/util.cmd | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | @echo Building ext\Util %_C% using %_N% | 20 | @echo Building ext\Util %_C% using %_N% |
| 21 | 21 | ||
| 22 | :: Build | 22 | :: Build |
| 23 | msbuild -Restore -p:Configuration=%_C% -warnaserror -bl:%_L%\ext_util_build.binlog || exit /b | 23 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror -bl:%_L%\ext_util_build.binlog || exit /b |
| 24 | 24 | ||
| 25 | :: Test | 25 | :: Test |
| 26 | dotnet test ^ | 26 | dotnet test ^ |
| @@ -28,7 +28,7 @@ dotnet test ^ | |||
| 28 | --nologo -l "trx;LogFileName=%_L%\TestResults\util.wixext.trx" || exit /b | 28 | --nologo -l "trx;LogFileName=%_L%\TestResults\util.wixext.trx" || exit /b |
| 29 | 29 | ||
| 30 | :: Pack | 30 | :: Pack |
| 31 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.Util.wixext.csproj || exit /b | 31 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Util.wixext.csproj || exit /b |
| 32 | 32 | ||
| 33 | @goto :end | 33 | @goto :end |
| 34 | 34 | ||
diff --git a/src/ext/VisualStudio/vs.cmd b/src/ext/VisualStudio/vs.cmd index 3d5cf015..f0873f1d 100644 --- a/src/ext/VisualStudio/vs.cmd +++ b/src/ext/VisualStudio/vs.cmd | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | @echo VisualStudio.wixext build %_C% | 9 | @echo VisualStudio.wixext build %_C% |
| 10 | 10 | ||
| 11 | :: Build | 11 | :: Build |
| 12 | msbuild -Restore -p:Configuration=%_C% || exit /b | 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b |
| 13 | 13 | ||
| 14 | :: Test | 14 | :: Test |
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.VisualStudio || exit /b | 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.VisualStudio || exit /b |
| 16 | 16 | ||
| 17 | :: Pack | 17 | :: Pack |
| 18 | msbuild -t:Pack -p:Configuration=%_C% -p:NoBuild=true wixext\WixToolset.VisualStudio.wixext.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.VisualStudio.wixext.csproj || exit /b |
| 19 | 19 | ||
| 20 | @popd | 20 | @popd |
| 21 | @endlocal | 21 | @endlocal |
