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