2 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
56public bool SupportsInteractiveInput { get; }
Aspire.Cli.Tests (1)
Utils\SdkInstallHelperTests.cs (1)
16public bool SupportsInteractiveInput { get; } = supportsInteractiveInput;
8 references to SupportsInteractiveInput
aspire (8)
Commands\AddCommand.cs (2)
269> 1 when !_hostEnvironment.SupportsInteractiveInput => distinctPackages.First(), 286if (!_hostEnvironment.SupportsInteractiveInput)
Commands\PipelineCommandBase.cs (1)
151if (!_hostEnvironment.SupportsInteractiveInput)
Interaction\ConsoleInteractionService.cs (4)
103if (!_hostEnvironment.SupportsInteractiveInput) 135if (!_hostEnvironment.SupportsInteractiveInput) 164if (!_hostEnvironment.SupportsInteractiveInput) 281if (!_hostEnvironment.SupportsInteractiveInput)
Utils\SdkInstallHelper.cs (1)
81var isInteractive = hostEnvironment?.SupportsInteractiveInput == true;