3 instantiations of ConsoleInteractionService
aspire (1)
Program.cs (1)
201
var consoleInteractionService = new
ConsoleInteractionService
(ansiConsole);
Aspire.Cli.Tests (2)
Interaction\ConsoleInteractionServiceTests.cs (1)
16
var interactionService = new
ConsoleInteractionService
(AnsiConsole.Console);
Utils\CliTestHelper.cs (1)
189
return new
ConsoleInteractionService
(ansiConsole);
5 references to ConsoleInteractionService
aspire (4)
Interaction\ExtensionInteractionService.cs (2)
15
private readonly
ConsoleInteractionService
_consoleInteractionService;
21
public ExtensionInteractionService(
ConsoleInteractionService
consoleInteractionService, IExtensionBackchannel backchannel, bool extensionPromptEnabled, CancellationToken? cancellationToken = null)
Program.cs (2)
201
var
consoleInteractionService = new ConsoleInteractionService(ansiConsole);
214
builder.Services.AddSingleton<IInteractionService,
ConsoleInteractionService
>();
Aspire.Cli.Tests (1)
Interaction\ConsoleInteractionServiceTests.cs (1)
16
var
interactionService = new ConsoleInteractionService(AnsiConsole.Console);