2 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
57public bool SupportsInteractiveInput { get; }
Aspire.Cli.Tests (1)
Templating\DotNetTemplateFactoryTests.cs (1)
570public bool SupportsInteractiveInput => !nonInteractive;
11 references to SupportsInteractiveInput
aspire (11)
Commands\AddCommand.cs (2)
286> 1 when !_hostEnvironment.SupportsInteractiveInput => distinctPackages.First(), 303if (!_hostEnvironment.SupportsInteractiveInput)
Commands\PipelineCommandBase.cs (1)
137if (!_hostEnvironment.SupportsInteractiveInput)
Commands\StopCommand.cs (1)
76if (!_hostEnvironment.SupportsInteractiveInput)
Interaction\ConsoleInteractionService.cs (4)
133if (!_hostEnvironment.SupportsInteractiveInput) 170if (!_hostEnvironment.SupportsInteractiveInput) 199if (!_hostEnvironment.SupportsInteractiveInput) 330if (!_hostEnvironment.SupportsInteractiveInput)
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
113if (!_hostEnvironment.SupportsInteractiveInput)
Templating\DotNetTemplateFactory.cs (2)
66var nonInteractive = !hostEnvironment.SupportsInteractiveInput; 78var nonInteractive = !hostEnvironment.SupportsInteractiveInput;