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