10 references to NamedPipeUtil
Microsoft.Build (4)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
820string pipeName = NamedPipeUtil.GetPlatformSpecificPipeName(nodeProcessId);
BackEnd\Components\Communications\RarNodeLauncher.cs (1)
24_pipeName = NamedPipeUtil.GetRarNodePipeName(new(HandshakeOptions.None));
BackEnd\Node\OutOfProcServerNode.cs (1)
174=> NamedPipeUtil.GetPlatformSpecificPipeName($"MSBuildServer-{handshake.ComputeHash()}");
src\msbuild\src\Shared\NodeEndpointOutOfProcBase.cs (1)
233pipeName ??= NamedPipeUtil.GetPlatformSpecificPipeName();
Microsoft.Build.Framework (2)
Coordinator\CoordinatorSettings.cs (2)
45get => field ??= NamedPipeUtil.GetPlatformSpecificPipeName(DefaultPipeName); 46init => field = NamedPipeUtil.GetPlatformSpecificPipeName(value);
Microsoft.Build.Tasks.Core (3)
AssemblyDependency\Node\OutOfProcRarClient.cs (1)
26_pipeClient = new NodePipeClient(NamedPipeUtil.GetRarNodeEndpointPipeName(handshake), handshake);
AssemblyDependency\Node\OutOfProcRarNode.cs (1)
81using NodePipeServer pipeServer = new(NamedPipeUtil.GetRarNodePipeName(_config.Handshake), _config.Handshake);
AssemblyDependency\Node\OutOfProcRarNodeEndpoint.cs (1)
39pipeName: NamedPipeUtil.GetRarNodeEndpointPipeName(handshake),
MSBuild (1)
src\msbuild\src\Shared\NodeEndpointOutOfProcBase.cs (1)
233pipeName ??= NamedPipeUtil.GetPlatformSpecificPipeName();