Yield long running MSBuild tasks
Closes 3743
Rob Mensching committed
Oct 5, 2022 at 09:12 UTC
8f8999f017c29d1cbe531d0fffbab1174c16596b
1 file changed
+4
-2
src/wix/WixToolset.Sdk/tools/wix.targets
+4
-2
@@ -663,7 +663,8 @@
663
664
RunAsSeparateProcess="$(RunWixToolsOutOfProc)"
665
ToolExe="$(WixToolExe)"
666
- ToolPath="$(WixToolDir)">
666
+ ToolPath="$(WixToolDir)"
667
+ YieldDuringToolExecution="true">
668
<Output TaskParameter="ExitCode" PropertyName="_WixBuildExitCode" />
669
</WixBuild>
670
@@ -691,7 +692,8 @@
692
SuppressSpecificWarnings="$(SuppressSpecificWarnings)"
693
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
694
TreatSpecificWarningsAsErrors="$(TreatSpecificWarningsAsErrors)"
694
- VerboseOutput="$(VerboseOutput)" />
695
+ VerboseOutput="$(VerboseOutput)"
696
+ YieldDuringToolExecution="true" />
697
</Target>
698
699
<!--