8 references to _tagsList
aspire (8)
Telemetry\AspireCliTelemetry.cs (8)
87
return [..
_tagsList
];
124
foreach (var tag in
_tagsList
)
156
foreach (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"));