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