1 instantiation of ExtensionBackchannel
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
299return new ExtensionBackchannel(logger, rpcTarget, configuration);
6 references to ExtensionBackchannel
aspire (5)
Backchannel\ExtensionBackchannel.cs (3)
55private readonly ActivitySource _activitySource = new(nameof(ExtensionBackchannel)); 60private readonly ILogger<ExtensionBackchannel> _logger; 64public ExtensionBackchannel(ILogger<ExtensionBackchannel> logger, IExtensionRpcTarget target, IConfiguration configuration)
Interaction\ExtensionInteractionService.cs (1)
99var hasSecretPromptsCapability = await Backchannel.HasCapabilityAsync(ExtensionBackchannel.SecretPromptsCapability, _cancellationToken).ConfigureAwait(false);
Program.cs (1)
257builder.Services.AddSingleton<IExtensionBackchannel, ExtensionBackchannel>();
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
296var logger = serviceProvider.GetRequiredService<ILogger<ExtensionBackchannel>>();