2 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;
8 references to LegacyThreadingData
Microsoft.Build (8)
BackEnd\BuildManager\BuildSubmission.cs (1)
184
LegacyThreadingData legacyThreadingData = ((IBuildComponentHost)BuildManager).
LegacyThreadingData
;
BackEnd\Components\RequestBuilder\RequestBuilder.cs (7)
191
return (_requestTask?.IsCompleted == false) || (_componentHost.
LegacyThreadingData
.MainThreadSubmissionId != -1);
577
return host.BuildParameters.LegacyThreadingSemantics && (host.
LegacyThreadingData
.MainThreadSubmissionId == entry.Request.SubmissionId);
655
_componentHost.
LegacyThreadingData
.SignalLegacyThreadStart(this);
670
if (componentHostSnapshot?.
LegacyThreadingData
!= null)
672
return componentHostSnapshot.
LegacyThreadingData
.GetLegacyThreadInactiveTask(_requestEntry.Request.SubmissionId);
685
Assumed.NotEqual(_componentHost.
LegacyThreadingData
.MainThreadSubmissionId, _requestEntry.Request.SubmissionId, "Can't start builder thread when we are using legacy threading semantics for this request.");
972
handle = RequestBuilder.WaitWithBuilderThreadStart(handles, true, _componentHost.
LegacyThreadingData
, _requestEntry.Request.SubmissionId);