6 references to NodeLauncher
Microsoft.Build (6)
BackEnd\BuildManager\BuildManager.cs (1)
745
_componentFactories.ReplaceFactory(BuildComponentType.
NodeLauncher
, DetouredNodeLauncher.CreateComponent);
BackEnd\Components\BuildComponentFactoryCollection.cs (2)
69
_componentEntriesByType[BuildComponentType.
NodeLauncher
] = new BuildComponentEntry(BuildComponentType.
NodeLauncher
, NodeLauncher.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\DetouredNodeLauncher.cs (1)
32
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)
336
INodeLauncher nodeLauncher = (INodeLauncher)_componentHost.GetComponent(BuildComponentType.
NodeLauncher
);