8 references to _tagsList
aspire (8)
Telemetry\AspireCliTelemetry.cs (8)
87return [.. _tagsList]; 124foreach (var tag in _tagsList) 156foreach (var tag in _tagsList) 196_tagsList.Add(new(TelemetryConstants.Tags.MacAddressHash, macAddressHashTask.Result)); 197_tagsList.Add(new(TelemetryConstants.Tags.DeviceId, deviceIdTask.Result)); 200_tagsList.Add(new(TelemetryConstants.Tags.CliVersion, typeof(Program).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion ?? string.Empty)); 201_tagsList.Add(new(TelemetryConstants.Tags.CliBuildId, typeof(Program).Assembly.GetCustomAttribute<AssemblyFileVersionAttribute>()?.Version ?? string.Empty)); 203_tagsList.Add(new(TelemetryConstants.Tags.DeploymentEnvironmentName, _ciEnvironmentDetector.IsCIEnvironment() ? "ci" : "local"));