1 write to ConnectionId
Microsoft.Build.Framework (1)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
37ConnectionId = connectionId;
6 references to ConnectionId
Microsoft.Build.Framework (1)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
44writer.WriteGuid(ConnectionId);
MSBuild.Coordinator (5)
CoordinatorServer.cs (5)
170_output.WriteLine($"CoordinatorServer: Handshake received (ConnectionId {handshake.ConnectionId}, PID {handshake.ProcessId}, Capabilities: [{string.Join(", ", handshake.Capabilities)}])"); 194_output.WriteLine($"CoordinatorServer: Client connected (PID {handshake.ProcessId}, ConnectionId {handshake.ConnectionId}, requested {request.RequestedNodes} nodes)"); 196BuildGrant grant = new(handshake.ConnectionId, handshake.ProcessId, request.RequestedNodes); 197connection = new ClientConnection(handshake.ConnectionId, handshake.ProcessId, handshake.Capabilities, grant, pipeStream); 201_connectionsById[handshake.ConnectionId] = connection;