2 writes to CurrentSessionId
dotnet (2)
Telemetry\TelemetryClient.cs (2)
97CurrentSessionId = null; 206CurrentSessionId ??= !string.IsNullOrEmpty(initialSessionId) ? initialSessionId : Guid.NewGuid().ToString();
3 references to CurrentSessionId
dotnet (3)
Commands\MSBuild\MSBuildForwardingApp.cs (2)
38if (TelemetryClient.CurrentSessionId != null) 115EnvironmentVariable(EnvironmentVariableNames.DOTNET_CLI_TELEMETRY_SESSIONID, TelemetryClient.CurrentSessionId);
Telemetry\TelemetryClient.cs (1)
207s_commonProperties = new TelemetryCommonProperties().GetTelemetryCommonProperties(CurrentSessionId);