5 references to OutOfProcTaskHostNodeProvider
Microsoft.Build (5)
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
69
_componentEntriesByType[BuildComponentType.
OutOfProcTaskHostNodeProvider
] = new BuildComponentEntry(BuildComponentType.
OutOfProcTaskHostNodeProvider
, NodeProviderOutOfProcTaskHost.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
350
ErrorUtilities.VerifyThrow(componentType == BuildComponentType.
OutOfProcTaskHostNodeProvider
, "Factory cannot create components of type {0}", componentType);
BackEnd\Components\Communications\TaskHostNodeManager.cs (1)
93
_outOfProcTaskHostNodeProvider = _componentHost.GetComponent(BuildComponentType.
OutOfProcTaskHostNodeProvider
) as INodeProvider;
Instance\TaskFactories\TaskHostTask.cs (1)
261
_taskHostProvider = (NodeProviderOutOfProcTaskHost)_buildComponentHost.GetComponent(BuildComponentType.
OutOfProcTaskHostNodeProvider
);