6 references to NodeManager
Microsoft.Build (6)
BackEnd\BuildManager\BuildManager.cs (2)
574_nodeManager = ((IBuildComponentHost)this).GetComponent(BuildComponentType.NodeManager) as INodeManager; 1195_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)
280ErrorUtilities.VerifyThrow(type == BuildComponentType.NodeManager, "Cannot create component of type {0}", type);
BackEnd\Components\SdkResolution\MainNodeSdkResolverService.cs (1)
92INodeManager nodeManager = Host.GetComponent(BuildComponentType.NodeManager) as INodeManager;