3 implementations of ICodingAgentDetector
aspire (1)
Telemetry\CodingAgentDetector.cs (1)
9internal sealed class CodingAgentDetector(IEnvironment environment) : ICodingAgentDetector
Aspire.Cli.Tests (2)
Telemetry\TelemetryFixture.cs (1)
148internal sealed class TestCodingAgentDetector : ICodingAgentDetector
Telemetry\TestTelemetryHelper.cs (1)
70private sealed class TestCodingAgentDetector : ICodingAgentDetector
9 references to ICodingAgentDetector
aspire (5)
Telemetry\AspireCliTelemetry.cs (4)
51private readonly ICodingAgentDetector _codingAgentDetector; 77public AspireCliTelemetry(ILogger<AspireCliTelemetry> logger, IMachineInformationProvider machineInformationProvider, ICIEnvironmentDetector ciEnvironmentDetector, ICodingAgentDetector codingAgentDetector, IInternalMicrosoftDetector internalMicrosoftDetector, TelemetryConfiguration telemetryConfiguration, CliExecutionContext executionContext, TelemetryTagsSource tagsSource) 95internal AspireCliTelemetry(ILogger<AspireCliTelemetry> logger, IMachineInformationProvider machineInformationProvider, ICIEnvironmentDetector ciEnvironmentDetector, ICodingAgentDetector codingAgentDetector, IInternalMicrosoftDetector internalMicrosoftDetector, string reportedSourceName, string diagnosticsSourceName, CliExecutionContext executionContext, TelemetryTagsSource tagsSource) 113internal 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)
42services.AddSingleton<ICodingAgentDetector, CodingAgentDetector>();
Aspire.Cli.Tests (4)
Telemetry\AspireCliTelemetryTests.cs (2)
743var detector = serviceProvider.GetRequiredService<ICodingAgentDetector>();
Telemetry\TelemetryFixture.cs (2)
34ICodingAgentDetector? codingAgentDetector = null, 146/// A test implementation of <see cref="ICodingAgentDetector"/> with configurable result.