6 references to NodeManager
Microsoft.Build (6)
BackEnd\BuildManager\BuildManager.cs (2)
562
_nodeManager = ((IBuildComponentHost)this).GetComponent(BuildComponentType.
NodeManager
) as INodeManager;
1164
_nodeManager ??= (INodeManager)((IBuildComponentHost)this).GetComponent(BuildComponentType.
NodeManager
);
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
63
_componentEntriesByType[BuildComponentType.
NodeManager
] = new BuildComponentEntry(BuildComponentType.
NodeManager
, NodeManager.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\NodeManager.cs (1)
280
ErrorUtilities.VerifyThrow(type == BuildComponentType.
NodeManager
, "Cannot create component of type {0}", type);
BackEnd\Components\SdkResolution\MainNodeSdkResolverService.cs (1)
92
INodeManager nodeManager = Host.GetComponent(BuildComponentType.
NodeManager
) as INodeManager;