4 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
58public bool SupportsInteractiveInput { get; }
Aspire.Cli.Tests (3)
Templating\DotNetTemplateFactoryTests.cs (1)
498public bool SupportsInteractiveInput => !nonInteractive;
Templating\TemplateNuGetConfigServiceTests.cs (1)
1306public bool SupportsInteractiveInput => false;
TestHelpers.cs (1)
23public bool SupportsInteractiveInput => supportsInteractiveInput;
22 references to SupportsInteractiveInput
aspire (22)
Backchannel\AppHostConnectionResolver.cs (2)
211if (!hostEnvironment.SupportsInteractiveInput) 252if (!hostEnvironment.SupportsInteractiveInput)
Certificates\CertificateService.cs (2)
75var canPerformTrust = hostEnvironment.SupportsInteractiveInput || isLinux; 152var partialTrustAccepted = !hostEnvironment.SupportsInteractiveInput
Commands\AddCommand.cs (4)
257if (filteredPackagesWithShortName.Count == 0 && integrationName is not null && !_hostEnvironment.SupportsInteractiveInput) 4801 when promptForSinglePackage && _hostEnvironment.SupportsInteractiveInput => await PromptForIntegrationAsync(distinctPackages, cancellationToken), 482> 1 when !_hostEnvironment.SupportsInteractiveInput => distinctPackages.First(), 543if (!_hostEnvironment.SupportsInteractiveInput)
Commands\AppHostLauncher.cs (1)
149var multipleAppHostBehavior = format == OutputFormat.Json || !hostEnvironment.SupportsInteractiveInput
Commands\NewCommand.cs (2)
251if (!_hostEnvironment.SupportsInteractiveInput) 320if (!_hostEnvironment.SupportsInteractiveInput)
Commands\PipelineCommandBase.cs (1)
250if (!_hostEnvironment.SupportsInteractiveInput)
Commands\RunCommand.cs (1)
263var multipleAppHostBehavior = _hostEnvironment.SupportsInteractiveInput
Commands\StopCommand.cs (3)
114if (!_hostEnvironment.SupportsInteractiveInput) 124var stopResult = _hostEnvironment.SupportsInteractiveInput 154var multipleAppHostBehavior = multipleAppHostBehaviorOverride ?? (_hostEnvironment.SupportsInteractiveInput
Interaction\ConsoleInteractionService.cs (4)
229if (!_hostEnvironment.SupportsInteractiveInput) 301if (!_hostEnvironment.SupportsInteractiveInput) 373if (!_hostEnvironment.SupportsInteractiveInput) 666if (!_hostEnvironment.SupportsInteractiveInput)
Templating\DotNetTemplateFactory.cs (1)
326if (!hostEnvironment.SupportsInteractiveInput)
Templating\TemplateNuGetConfigService.cs (1)
387if (!hostEnvironment.SupportsInteractiveInput)