3 instantiations of AppHostCliBackchannel
Aspire.Cli.Tests (3)
Backchannel\AppHostCliBackchannelTests.cs (2)
25var backchannel = new AppHostCliBackchannel( 60var backchannel = new AppHostCliBackchannel(
Utils\CliTestHelper.cs (1)
594return new AppHostCliBackchannel(logger, environment, telemetry, profilingTelemetry);
7 references to AppHostCliBackchannel
aspire (2)
Backchannel\AppHostCliBackchannel.cs (1)
34ILogger<AppHostCliBackchannel> logger,
Program.cs (1)
474builder.Services.AddTransient<IAppHostCliBackchannel, AppHostCliBackchannel>();
Aspire.Cli.Tests (5)
Backchannel\AppHostCliBackchannelTests.cs (4)
25var backchannel = new AppHostCliBackchannel( 26NullLogger<AppHostCliBackchannel>.Instance, 60var backchannel = new AppHostCliBackchannel( 61NullLogger<AppHostCliBackchannel>.Instance,
Utils\CliTestHelper.cs (1)
590var logger = serviceProvider.GetRequiredService<ILogger<AppHostCliBackchannel>>();