aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-10-05 09:12:51 -0700
committerRob Mensching <rob@firegiant.com>2022-10-14 20:13:50 -0700
commit8f8999f017c29d1cbe531d0fffbab1174c16596b (patch)
tree4fe84553f7802f7d25cef27e5a56fe18ff006ba7 /src
parentc1ce02b0c5534d2218ac9405cdc1b375b30d756c (diff)
downloadwix-8f8999f017c29d1cbe531d0fffbab1174c16596b.tar.gz
wix-8f8999f017c29d1cbe531d0fffbab1174c16596b.tar.bz2
wix-8f8999f017c29d1cbe531d0fffbab1174c16596b.zip
Yield long running MSBuild tasks
Closes 3743
Diffstat (limited to 'src')
-rw-r--r--src/wix/WixToolset.Sdk/tools/wix.targets6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wix/WixToolset.Sdk/tools/wix.targets b/src/wix/WixToolset.Sdk/tools/wix.targets
index e2a02644..752c7490 100644
--- a/src/wix/WixToolset.Sdk/tools/wix.targets
+++ b/src/wix/WixToolset.Sdk/tools/wix.targets
@@ -663,7 +663,8 @@
663 663
664 RunAsSeparateProcess="$(RunWixToolsOutOfProc)" 664 RunAsSeparateProcess="$(RunWixToolsOutOfProc)"
665 ToolExe="$(WixToolExe)" 665 ToolExe="$(WixToolExe)"
666 ToolPath="$(WixToolDir)"> 666 ToolPath="$(WixToolDir)"
667 YieldDuringToolExecution="true">
667 <Output TaskParameter="ExitCode" PropertyName="_WixBuildExitCode" /> 668 <Output TaskParameter="ExitCode" PropertyName="_WixBuildExitCode" />
668 </WixBuild> 669 </WixBuild>
669 670
@@ -691,7 +692,8 @@
691 SuppressSpecificWarnings="$(SuppressSpecificWarnings)" 692 SuppressSpecificWarnings="$(SuppressSpecificWarnings)"
692 TreatWarningsAsErrors="$(TreatWarningsAsErrors)" 693 TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
693 TreatSpecificWarningsAsErrors="$(TreatSpecificWarningsAsErrors)" 694 TreatSpecificWarningsAsErrors="$(TreatSpecificWarningsAsErrors)"
694 VerboseOutput="$(VerboseOutput)" /> 695 VerboseOutput="$(VerboseOutput)"
696 YieldDuringToolExecution="true" />
695 </Target> 697 </Target>
696 698
697 <!-- 699 <!--