8 references to OutOfProc
Microsoft.Build (8)
BackEnd\Components\Communications\NodeInfo.cs (1)
91
NodeAffinity.
OutOfProc
=> _providerType != NodeProviderType.InProc,
BackEnd\Components\Communications\NodeManager.cs (1)
102
if (nodes.Count < numberOfNodesToCreate && (nodeAffinity == NodeAffinity.Any || nodeAffinity == NodeAffinity.
OutOfProc
))
BackEnd\Components\Scheduler\Scheduler.cs (5)
1583
case NodeAffinity.
OutOfProc
:
1664
TraceScheduler($"Requesting creation of {outOfProcNodesToCreate} new node(s) satisfying affinity {NodeAffinity.
OutOfProc
}");
1665
responses.Add(ScheduleResponse.CreateNewNodeResponse(NodeAffinity.
OutOfProc
, outOfProcNodesToCreate));
1813
existingRequestAffinity = (_availableNodes[assignedNodeId].ProviderType == NodeProviderType.InProc) ? NodeAffinity.InProc : NodeAffinity.
OutOfProc
;
2244
return NodeAffinity.
OutOfProc
;
Instance\HostServices.cs (1)
140
bool hasExplicitOutOfProcAffinity = (GetNodeAffinity(projectFile, out isExplicit) == NodeAffinity.
OutOfProc
) && isExplicit;