3 implementations of ICIEnvironmentDetector
aspire (1)
Telemetry\CIEnvironmentDetector.cs (1)
11internal sealed class CIEnvironmentDetector : ICIEnvironmentDetector
Aspire.Cli.Tests (2)
Telemetry\TelemetryFixture.cs (1)
121internal sealed class TestCIEnvironmentDetector : ICIEnvironmentDetector
Telemetry\TestTelemetryHelper.cs (1)
65private sealed class TestCIEnvironmentDetector : ICIEnvironmentDetector
7 references to ICIEnvironmentDetector
aspire (5)
Telemetry\AspireCliTelemetry.cs (4)
48private readonly ICIEnvironmentDetector _ciEnvironmentDetector; 73public AspireCliTelemetry(ILogger<AspireCliTelemetry> logger, IMachineInformationProvider machineInformationProvider, ICIEnvironmentDetector ciEnvironmentDetector, ICodingAgentDetector codingAgentDetector, IInternalMicrosoftDetector internalMicrosoftDetector, TelemetryConfiguration telemetryConfiguration, CliExecutionContext executionContext, TelemetryTagsSource tagsSource) 91internal AspireCliTelemetry(ILogger<AspireCliTelemetry> logger, IMachineInformationProvider machineInformationProvider, ICIEnvironmentDetector ciEnvironmentDetector, ICodingAgentDetector codingAgentDetector, IInternalMicrosoftDetector internalMicrosoftDetector, string reportedSourceName, string diagnosticsSourceName, CliExecutionContext executionContext, TelemetryTagsSource tagsSource) 109internal AspireCliTelemetry(ILogger<AspireCliTelemetry> logger, IMachineInformationProvider machineInformationProvider, ICIEnvironmentDetector ciEnvironmentDetector, ICodingAgentDetector codingAgentDetector, IInternalMicrosoftDetector internalMicrosoftDetector, TelemetryConfiguration telemetryConfiguration, string reportedSourceName, string diagnosticsSourceName, CliExecutionContext executionContext, TelemetryTagsSource tagsSource)
Telemetry\TelemetryServiceCollectionExtensions.cs (1)
41services.AddSingleton<ICIEnvironmentDetector, CIEnvironmentDetector>();
Aspire.Cli.Tests (2)
Telemetry\TelemetryFixture.cs (2)
31ICIEnvironmentDetector? ciEnvironmentDetector = null, 119/// A test implementation of <see cref="ICIEnvironmentDetector"/> with configurable result.