3 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
57public bool SupportsInteractiveInput { get; }
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
573public bool SupportsInteractiveInput => !nonInteractive;
TestHelpers.cs (1)
22public bool SupportsInteractiveInput => supportsInteractiveInput;
12 references to SupportsInteractiveInput
aspire (12)
Commands\AddCommand.cs (2)
292> 1 when !_hostEnvironment.SupportsInteractiveInput => distinctPackages.First(), 313if (!_hostEnvironment.SupportsInteractiveInput)
Commands\AgentInitCommand.cs (1)
81if (!hostEnvironment.SupportsInteractiveInput)
Commands\PipelineCommandBase.cs (1)
183if (!_hostEnvironment.SupportsInteractiveInput)
Commands\StopCommand.cs (1)
76if (!_hostEnvironment.SupportsInteractiveInput)
Interaction\ConsoleInteractionService.cs (4)
133if (!_hostEnvironment.SupportsInteractiveInput) 170if (!_hostEnvironment.SupportsInteractiveInput) 206if (!_hostEnvironment.SupportsInteractiveInput) 391if (!_hostEnvironment.SupportsInteractiveInput)
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
116if (!_hostEnvironment.SupportsInteractiveInput)
Templating\DotNetTemplateFactory.cs (2)
67var nonInteractive = !hostEnvironment.SupportsInteractiveInput; 79var nonInteractive = !hostEnvironment.SupportsInteractiveInput;