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