diff options
author | Rob Mensching <rob@firegiant.com> | 2021-10-17 17:14:20 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-10-19 16:23:33 -0700 |
commit | 5c8752cf09d1b09a574146904f50cb90babffdf1 (patch) | |
tree | aa4eb1803a40c0f2953fcf9ff62c099cc89955a8 | |
parent | 6a2aefbbc8f54bf1767cfc8dc7120f61c18fb0ea (diff) | |
download | wix-5c8752cf09d1b09a574146904f50cb90babffdf1.tar.gz wix-5c8752cf09d1b09a574146904f50cb90babffdf1.tar.bz2 wix-5c8752cf09d1b09a574146904f50cb90babffdf1.zip |
Minor build improvements to reduce output
-rw-r--r-- | src/dtf/dtf.cmd | 16 | ||||
-rw-r--r-- | src/internal/internal.cmd | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/dtf/dtf.cmd b/src/dtf/dtf.cmd index 1f6b3842..21f452cb 100644 --- a/src/dtf/dtf.cmd +++ b/src/dtf/dtf.cmd | |||
@@ -12,15 +12,15 @@ | |||
12 | 12 | ||
13 | nuget restore || exit /b | 13 | nuget restore || exit /b |
14 | 14 | ||
15 | msbuild -t:Build -p:Configuration=%_C% || exit /b | 15 | msbuild -t:Build -p:Configuration=%_C% -m -v:m -nr:false || exit /b |
16 | 16 | ||
17 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Compression || exit /b | 17 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Compression -v:m || exit /b |
18 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Compression.Cab || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Compression.Cab -v:m || exit /b |
19 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Compression.Zip || exit /b | 19 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Compression.Zip -v:m || exit /b |
20 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Resources || exit /b | 20 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.Resources -v:m || exit /b |
21 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.WindowsInstaller || exit /b | 21 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.WindowsInstaller -v:m || exit /b |
22 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.WindowsInstaller.Linq || exit /b | 22 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.WindowsInstaller.Linq -v:m || exit /b |
23 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.WindowsInstaller.Package || exit /b | 23 | msbuild -t:Pack -p:Configuration=%_C% WixToolset.Dtf.WindowsInstaller.Package -v:m || exit /b |
24 | 24 | ||
25 | @popd | 25 | @popd |
26 | @endlocal | 26 | @endlocal |
diff --git a/src/internal/internal.cmd b/src/internal/internal.cmd index da46b70a..634ed5fb 100644 --- a/src/internal/internal.cmd +++ b/src/internal/internal.cmd | |||
@@ -15,9 +15,9 @@ nuget restore || exit /b | |||
15 | :: dotnet pack -c %_C% WixBuildTools.MsgGen\WixBuildTools.MsgGen.csproj || exit /b | 15 | :: dotnet pack -c %_C% WixBuildTools.MsgGen\WixBuildTools.MsgGen.csproj || exit /b |
16 | :: dotnet pack -c %_C% WixBuildTools.XsdGen\WixBuildTools.XsdGen.csproj || exit /b | 16 | :: dotnet pack -c %_C% WixBuildTools.XsdGen\WixBuildTools.XsdGen.csproj || exit /b |
17 | 17 | ||
18 | msbuild -t:Pack -p:Configuration=%_C% WixBuildTools.TestSupport\WixBuildTools.TestSupport.csproj || exit /b | 18 | msbuild -t:Pack -p:Configuration=%_C% WixBuildTools.TestSupport\WixBuildTools.TestSupport.csproj -v:m || exit /b |
19 | 19 | ||
20 | msbuild -t:Build -p:Configuration=%_C% WixBuildTools.TestSupport.Native\WixBuildTools.TestSupport.Native.vcxproj || exit /b | 20 | msbuild -t:Build -p:Configuration=%_C% WixBuildTools.TestSupport.Native\WixBuildTools.TestSupport.Native.vcxproj -v:m || exit /b |
21 | 21 | ||
22 | @popd | 22 | @popd |
23 | @endlocal | 23 | @endlocal |