6 references to NodeLauncher
Microsoft.Build (6)
BackEnd\BuildManager\BuildManager.cs (1)
736
_componentFactories.ReplaceFactory(BuildComponentType.
NodeLauncher
, DetouredNodeLauncher.CreateComponent);
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
66
_componentEntriesByType[BuildComponentType.
NodeLauncher
] = new BuildComponentEntry(BuildComponentType.
NodeLauncher
, NodeLauncher.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\DetouredNodeLauncher.cs (1)
34
ErrorUtilities.VerifyThrowArgumentOutOfRange(type == BuildComponentType.
NodeLauncher
, nameof(type));
BackEnd\Components\Communications\NodeLauncher.cs (1)
23
ErrorUtilities.VerifyThrowArgumentOutOfRange(type == BuildComponentType.
NodeLauncher
, nameof(type));
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
335
INodeLauncher nodeLauncher = (INodeLauncher)_componentHost.GetComponent(BuildComponentType.
NodeLauncher
);