1 instantiation of NodeProviderOutOfProcTaskHost
Microsoft.Build (1)
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
342return new NodeProviderOutOfProcTaskHost();
13 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)
152string msbuildtaskhostExeName = NodeProviderOutOfProcTaskHost.TaskHostNameForClr2TaskHost; 321string taskHostNameForClr2TaskHost = Path.GetFileNameWithoutExtension(NodeProviderOutOfProcTaskHost.TaskHostNameForClr2TaskHost);
Evaluation\IntrinsicFunctions.cs (3)
26using NodeProviderOutOfProcTaskHost = Microsoft.Build.BackEnd.NodeProviderOutOfProcTaskHost; 513string taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildExecutablePathForNonNETRuntimes(desiredContext); 517taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildLocationForNETRuntime(desiredContext, parameters).MSBuildAssemblyPath;
Instance\TaskFactories\TaskHostTask.cs (5)
120private NodeProviderOutOfProcTaskHost _taskHostProvider; 292_taskHostProvider = (NodeProviderOutOfProcTaskHost)_buildComponentHost.GetComponent(BuildComponentType.OutOfProcTaskHostNodeProvider); 644string taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildExecutablePathForNonNETRuntimes(requiredContext); 648taskHostLocation = NodeProviderOutOfProcTaskHost.GetMSBuildLocationForNETRuntime(requiredContext, _taskHostParameters).MSBuildAssemblyPath; 656: NodeProviderOutOfProcTaskHost.GetTaskHostNameFromHostContext(requiredContext));
Microsoft.Build.Engine.UnitTests (2)
Evaluation\Expander_Tests.cs (2)
3675NodeProviderOutOfProcTaskHost.ClearCachedTaskHostPaths(); 3689NodeProviderOutOfProcTaskHost.ClearCachedTaskHostPaths();