7 implementations of LegacyThreadingData
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (1)
397
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
=> _legacyThreadingData;
BackEnd\Node\OutOfProcNode.cs (1)
200
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
=> _legacyThreadingData;
Microsoft.Build.Engine.UnitTests (5)
BackEnd\MockHost.cs (1)
178
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
BackEnd\NodeEndpointInProc_Tests.cs (1)
52
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
BackEnd\TargetBuilder_Tests.cs (1)
1814
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
BackEnd\TargetEntry_Tests.cs (1)
1177
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
BackEnd\TaskBuilder_Tests.cs (1)
1300
LegacyThreadingData IBuildComponentHost.
LegacyThreadingData
8 references to LegacyThreadingData
Microsoft.Build (8)
BackEnd\BuildManager\BuildSubmission.cs (1)
184
LegacyThreadingData legacyThreadingData = ((IBuildComponentHost)BuildManager).
LegacyThreadingData
;
BackEnd\Components\RequestBuilder\RequestBuilder.cs (7)
190
return (_requestTask?.IsCompleted == false) || (_componentHost.
LegacyThreadingData
.MainThreadSubmissionId != -1);
575
return host.BuildParameters.LegacyThreadingSemantics && (host.
LegacyThreadingData
.MainThreadSubmissionId == entry.Request.SubmissionId);
653
_componentHost.
LegacyThreadingData
.SignalLegacyThreadStart(this);
668
if (componentHostSnapshot?.
LegacyThreadingData
!= null)
670
return componentHostSnapshot.
LegacyThreadingData
.GetLegacyThreadInactiveTask(_requestEntry.Request.SubmissionId);
683
ErrorUtilities.VerifyThrow(_componentHost.
LegacyThreadingData
.MainThreadSubmissionId != _requestEntry.Request.SubmissionId, "Can't start builder thread when we are using legacy threading semantics for this request.");
969
handle = RequestBuilder.WaitWithBuilderThreadStart(handles, true, _componentHost.
LegacyThreadingData
, _requestEntry.Request.SubmissionId);