3 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
57
public bool
SupportsInteractiveInput
{ get; }
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
573
public bool
SupportsInteractiveInput
=> !nonInteractive;
TestHelpers.cs (1)
22
public bool
SupportsInteractiveInput
=> supportsInteractiveInput;
12 references to SupportsInteractiveInput
aspire (12)
Commands\AddCommand.cs (2)
292
> 1 when !_hostEnvironment.
SupportsInteractiveInput
=> distinctPackages.First(),
313
if (!_hostEnvironment.
SupportsInteractiveInput
)
Commands\AgentInitCommand.cs (1)
81
if (!hostEnvironment.
SupportsInteractiveInput
)
Commands\PipelineCommandBase.cs (1)
183
if (!_hostEnvironment.
SupportsInteractiveInput
)
Commands\StopCommand.cs (1)
76
if (!_hostEnvironment.
SupportsInteractiveInput
)
Interaction\ConsoleInteractionService.cs (4)
133
if (!_hostEnvironment.
SupportsInteractiveInput
)
170
if (!_hostEnvironment.
SupportsInteractiveInput
)
206
if (!_hostEnvironment.
SupportsInteractiveInput
)
391
if (!_hostEnvironment.
SupportsInteractiveInput
)
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
116
if (!_hostEnvironment.
SupportsInteractiveInput
)
Templating\DotNetTemplateFactory.cs (2)
67
var nonInteractive = !hostEnvironment.
SupportsInteractiveInput
;
79
var nonInteractive = !hostEnvironment.
SupportsInteractiveInput
;