6 references to AgentTelemetryInvocation
aspire (2)
Program.cs (1)
1111
var isAgentTelemetryInvocation =
AgentTelemetryInvocation
.Matches(args);
Telemetry\TelemetryConfiguration.cs (1)
66
var isAgentTelemetryInvocation =
AgentTelemetryInvocation
.Matches(args ?? []);
Aspire.Cli.Tests (4)
Telemetry\AgentTelemetryInvocationTests.cs (4)
16
Assert.True(
AgentTelemetryInvocation
.Matches(commandLine.Split(' ')));
29
Assert.False(
AgentTelemetryInvocation
.Matches(commandLine.Split(' ')));
35
Assert.False(
AgentTelemetryInvocation
.Matches([]));
41
Assert.False(
AgentTelemetryInvocation
.Matches(null));