1 instantiation of ExtensionBackchannel
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
246return new ExtensionBackchannel(logger, rpcTarget, configuration);
5 references to ExtensionBackchannel
aspire (4)
Backchannel\ExtensionBackchannel.cs (3)
48private readonly ActivitySource _activitySource = new(nameof(ExtensionBackchannel)); 53private readonly ILogger<ExtensionBackchannel> _logger; 57public ExtensionBackchannel(ILogger<ExtensionBackchannel> logger, IExtensionRpcTarget target, IConfiguration configuration)
Program.cs (1)
201builder.Services.AddSingleton<IExtensionBackchannel, ExtensionBackchannel>();
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
243var logger = serviceProvider.GetRequiredService<ILogger<ExtensionBackchannel>>();