3 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
56public bool SupportsInteractiveInput { get; }
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
517public bool SupportsInteractiveInput => !nonInteractive;
Utils\SdkInstallHelperTests.cs (1)
16public bool SupportsInteractiveInput { get; } = supportsInteractiveInput;
9 references to SupportsInteractiveInput
aspire (9)
Commands\AddCommand.cs (2)
266> 1 when !_hostEnvironment.SupportsInteractiveInput => distinctPackages.First(), 283if (!_hostEnvironment.SupportsInteractiveInput)
Commands\PipelineCommandBase.cs (1)
140if (!_hostEnvironment.SupportsInteractiveInput)
Interaction\ConsoleInteractionService.cs (4)
103if (!_hostEnvironment.SupportsInteractiveInput) 135if (!_hostEnvironment.SupportsInteractiveInput) 164if (!_hostEnvironment.SupportsInteractiveInput) 281if (!_hostEnvironment.SupportsInteractiveInput)
Templating\DotNetTemplateFactory.cs (1)
55var nonInteractive = !hostEnvironment.SupportsInteractiveInput;
Utils\SdkInstallHelper.cs (1)
81var isInteractive = hostEnvironment?.SupportsInteractiveInput == true;