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