5 references to TaskHostNodeManager
Microsoft.Build (5)
BackEnd\BuildManager\BuildManager.cs (1)
593
_taskHostNodeManager = ((IBuildComponentHost)this).GetComponent<INodeManager>(BuildComponentType.
TaskHostNodeManager
);
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
64
_componentEntriesByType[BuildComponentType.
TaskHostNodeManager
] = new BuildComponentEntry(BuildComponentType.
TaskHostNodeManager
, TaskHostNodeManager.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\TaskHostNodeManager.cs (1)
169
ErrorUtilities.VerifyThrow(type == BuildComponentType.
TaskHostNodeManager
, "Cannot create component of type {0}", type);
BackEnd\Node\OutOfProcNode.cs (1)
153
_taskHostNodeManager = (this as IBuildComponentHost).GetComponent(BuildComponentType.
TaskHostNodeManager
) as INodeManager;