3 references to ForceTaskFactoryOutOfProc
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (1)
1154if (Traits.Instance.ForceTaskFactoryOutOfProc || _buildParameters.MultiThreaded)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (1)
983TaskFactoryEngineContext taskFactoryEngineContext = new TaskFactoryEngineContext(_buildEngine.IsRunningMultipleNodes, _taskLocation, _taskLoggingContext, _buildComponentHost?.BuildParameters?.MultiThreaded ?? false, Traits.Instance.ForceTaskFactoryOutOfProc);
Instance\TaskRegistry.cs (1)
1589TaskFactoryEngineContext taskFactoryLoggingHost = new TaskFactoryEngineContext(true /*I dont have the data at this point, the safest thing to do is make sure events are serializable*/, elementLocation, targetLoggingContext, isMultiThreadedBuild, Traits.Instance.ForceTaskFactoryOutOfProc);