From 8f8999f017c29d1cbe531d0fffbab1174c16596b Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 5 Oct 2022 09:12:51 -0700 Subject: Yield long running MSBuild tasks Closes 3743 --- src/wix/WixToolset.Sdk/tools/wix.targets | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') 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 @@ RunAsSeparateProcess="$(RunWixToolsOutOfProc)" ToolExe="$(WixToolExe)" - ToolPath="$(WixToolDir)"> + ToolPath="$(WixToolDir)" + YieldDuringToolExecution="true"> @@ -691,7 +692,8 @@ SuppressSpecificWarnings="$(SuppressSpecificWarnings)" TreatWarningsAsErrors="$(TreatWarningsAsErrors)" TreatSpecificWarningsAsErrors="$(TreatSpecificWarningsAsErrors)" - VerboseOutput="$(VerboseOutput)" /> + VerboseOutput="$(VerboseOutput)" + YieldDuringToolExecution="true" />