1 instantiation of NodeProviderOutOfProcTaskHost
Microsoft.Build (1)
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
376return new NodeProviderOutOfProcTaskHost();
11 references to NodeProviderOutOfProcTaskHost
Microsoft.Build (11)
BackEnd\Components\BuildComponentFactoryCollection.cs (1)
72_componentEntriesByType[BuildComponentType.OutOfProcTaskHostNodeProvider] = new BuildComponentEntry(BuildComponentType.OutOfProcTaskHostNodeProvider, NodeProviderOutOfProcTaskHost.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (2)
169string msbuildtaskhostExeName = NodeProviderOutOfProcTaskHost.TaskHostNameForClr2TaskHost; 356string taskHostNameForClr2TaskHost = Path.GetFileNameWithoutExtension(NodeProviderOutOfProcTaskHost.TaskHostNameForClr2TaskHost);
Evaluation\IntrinsicFunctions.cs (3)
26using NodeProviderOutOfProcTaskHost = Microsoft.Build.BackEnd.NodeProviderOutOfProcTaskHost; 509string taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildExecutablePathForNonNETRuntimes(desiredContext); 513taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildLocationForNETRuntime(desiredContext, parameters).MSBuildPath;
Instance\TaskFactories\TaskHostTask.cs (5)
117private NodeProviderOutOfProcTaskHost _taskHostProvider; 315_taskHostProvider = (NodeProviderOutOfProcTaskHost)_buildComponentHost.GetComponent(BuildComponentType.OutOfProcTaskHostNodeProvider); 703(_, string msbuildPath) = NodeProviderOutOfProcTaskHost.GetMSBuildLocationForNETRuntime(requiredContext, _taskHostParameters); 710taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildExecutablePathForNonNETRuntimes(requiredContext); 718: NodeProviderOutOfProcTaskHost.GetTaskHostNameFromHostContext(requiredContext));