1 instantiation of NodeProviderOutOfProcTaskHost
Microsoft.Build (1)
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
391return new NodeProviderOutOfProcTaskHost();
10 references to NodeProviderOutOfProcTaskHost
Microsoft.Build (10)
BackEnd\Components\BuildComponentFactoryCollection.cs (1)
71_componentEntriesByType[BuildComponentType.OutOfProcTaskHostNodeProvider] = new BuildComponentEntry(BuildComponentType.OutOfProcTaskHostNodeProvider, NodeProviderOutOfProcTaskHost.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
169string msbuildtaskhostExeName = NodeProviderOutOfProcTaskHost.TaskHostNameForClr2TaskHost;
Evaluation\IntrinsicFunctions.cs (2)
26using NodeProviderOutOfProcTaskHost = Microsoft.Build.BackEnd.NodeProviderOutOfProcTaskHost; 509string taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildExecutablePathForNonNETRuntimes(desiredContext);
Instance\TaskFactories\TaskHostTask.cs (6)
116private NodeProviderOutOfProcTaskHost _taskHostProvider; 317_taskHostProvider = (NodeProviderOutOfProcTaskHost)_buildComponentHost.GetComponent(BuildComponentType.OutOfProcTaskHostNodeProvider); 819(_, string msbuildPath) = NodeProviderOutOfProcTaskHost.GetMSBuildLocationForNETRuntime(requiredContext, _taskHostParameters); 822(taskHostLocation, _) = NodeProviderOutOfProcTaskHost.ResolveNetTaskHostLaunchPath(msbuildPath); 827taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildExecutablePathForNonNETRuntimes(requiredContext); 835: NodeProviderOutOfProcTaskHost.GetTaskHostNameFromHostContext(requiredContext));