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