5 references to OutOfProcTaskHostNodeProvider
Microsoft.Build (5)
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
71
_componentEntriesByType[BuildComponentType.
OutOfProcTaskHostNodeProvider
] = new BuildComponentEntry(BuildComponentType.
OutOfProcTaskHostNodeProvider
, NodeProviderOutOfProcTaskHost.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
390
Assumed.Equal(componentType, BuildComponentType.
OutOfProcTaskHostNodeProvider
, $"Factory cannot create components of type {componentType}");
BackEnd\Components\Communications\TaskHostNodeManager.cs (1)
92
_outOfProcTaskHostNodeProvider = _componentHost.GetComponent(BuildComponentType.
OutOfProcTaskHostNodeProvider
) as INodeProvider;
Instance\TaskFactories\TaskHostTask.cs (1)
317
_taskHostProvider = (NodeProviderOutOfProcTaskHost)_buildComponentHost.GetComponent(BuildComponentType.
OutOfProcTaskHostNodeProvider
);