3 implementations of ICodingAgentDetector
aspire (1)
Telemetry\CodingAgentDetector.cs (1)
11internal sealed class CodingAgentDetector(IConfiguration configuration) : ICodingAgentDetector
Aspire.Cli.Tests (2)
Telemetry\TelemetryFixture.cs (1)
131internal sealed class TestCodingAgentDetector : ICodingAgentDetector
Telemetry\TestTelemetryHelper.cs (1)
70private sealed class TestCodingAgentDetector : ICodingAgentDetector
7 references to ICodingAgentDetector
aspire (5)
Telemetry\AspireCliTelemetry.cs (4)
49private readonly ICodingAgentDetector _codingAgentDetector; 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)
42services.AddSingleton<ICodingAgentDetector, CodingAgentDetector>();
Aspire.Cli.Tests (2)
Telemetry\TelemetryFixture.cs (2)
32ICodingAgentDetector? codingAgentDetector = null, 129/// A test implementation of <see cref="ICodingAgentDetector"/> with configurable result.