1 implementation of IExtensionRpcTarget
aspire (1)
Backchannel\ExtensionRpcTarget.cs (1)
35
ConsoleCancellationManager cancellationManager) :
IExtensionRpcTarget
14 references to IExtensionRpcTarget
aspire (5)
Backchannel\ExtensionBackchannel.cs (4)
64
private readonly
IExtensionRpcTarget
_target;
69
public ExtensionBackchannel(ILogger<ExtensionBackchannel> logger,
IExtensionRpcTarget
target, IConfiguration configuration)
76
IExtensionRpcTarget
target,
294
static void AddLocalRpcTarget(JsonRpc rpc,
IExtensionRpcTarget
target)
Program.cs (1)
1352
builder.Services.AddSingleton<
IExtensionRpcTarget
, ExtensionRpcTarget>();
Aspire.Cli.Tests (9)
Commands\RunCommandTests.cs (6)
470
var
rpcTarget = provider.GetRequiredService<
IExtensionRpcTarget
>();
770
var
rpcTarget = provider.GetRequiredService<
IExtensionRpcTarget
>();
2151
var
rpcTarget = provider.GetRequiredService<
IExtensionRpcTarget
>();
Utils\CliTestHelper.cs (3)
597
public Func<IServiceProvider,
IExtensionRpcTarget
> ExtensionRpcTargetFactory { get; set; } = (IServiceProvider serviceProvider) =>
608
var
rpcTarget = serviceProvider.GetRequiredService<
IExtensionRpcTarget
>();