1 implementation of IExtensionBackchannel
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
40internal sealed class ExtensionBackchannel(ILogger<ExtensionBackchannel> logger, ExtensionRpcTarget target, IConfiguration configuration) : IExtensionBackchannel
4 references to IExtensionBackchannel
aspire (4)
Interaction\ExtensionInteractionService.cs (2)
17private readonly IExtensionBackchannel _backchannel; 22public ExtensionInteractionService(ConsoleInteractionService consoleInteractionService, IExtensionBackchannel backchannel, bool extensionPromptEnabled, CancellationToken? cancellationToken = null)
Program.cs (2)
194builder.Services.AddSingleton<IExtensionBackchannel, ExtensionBackchannel>(); 202provider.GetRequiredService<IExtensionBackchannel>(),