14 references to ConsoleInteractionService
aspire (2)
Program.cs (2)
1353
var consoleInteractionService = new
ConsoleInteractionService
(consoleEnvironment, executionContext, hostEnvironment, processPathProvider, loggerFactory, logBufferCtx);
1370
return new
ConsoleInteractionService
(consoleEnvironment, executionContext, hostEnvironment, processPathProvider, loggerFactory, logBufferCtx);
Aspire.Cli.Tests (12)
Commands\DashboardRunCommandTests.cs (1)
603
var interactionService = new
ConsoleInteractionService
(
Commands\NewCommandTests.cs (1)
2984
var consoleInteractionService = new
ConsoleInteractionService
(
Commands\RunCommandTests.cs (2)
2402
var interactionService = new
ConsoleInteractionService
(
2841
var consoleInteractionService = new
ConsoleInteractionService
(consoleEnvironment, executionContext, hostEnvironment, processPathProvider, loggerFactory, logBufferContext);
Interaction\ConsoleInteractionServiceTests.cs (3)
33
return new
ConsoleInteractionService
(consoleEnvironment, executionContext, hostEnvironment ?? TestHelpers.CreateInteractiveHostEnvironment(), new EnvironmentProcessPathProvider(), loggerFactory ?? NullLoggerFactory.Instance, new ConsoleLogBufferContext());
849
var interactionService = new
ConsoleInteractionService
(consoleEnvironment, executionContext, TestHelpers.CreateInteractiveHostEnvironment(), new EnvironmentProcessPathProvider(), NullLoggerFactory.Instance, new ConsoleLogBufferContext());
878
var interactionService = new
ConsoleInteractionService
(consoleEnvironment, executionContext, TestHelpers.CreateInteractiveHostEnvironment(), new EnvironmentProcessPathProvider(), NullLoggerFactory.Instance, new ConsoleLogBufferContext());
Interaction\ExtensionInteractionServiceTests.cs (4)
36
var consoleInteractionService = new
ConsoleInteractionService
(
77
var consoleInteractionService = new
ConsoleInteractionService
(
224
var consoleInteractionService = new
ConsoleInteractionService
(
256
var consoleInteractionService = new
ConsoleInteractionService
(
Utils\CliTestHelper.cs (1)
521
return new
ConsoleInteractionService
(consoleEnvironment, executionContext, hostEnvironment, processPathProvider, loggerFactory, logBufferContext);