2 implementations of SupportsInteractiveInput
aspire (1)
Utils\CliHostEnvironment.cs (1)
57
public bool
SupportsInteractiveInput
{ get; }
Aspire.Cli.Tests (1)
Templating\DotNetTemplateFactoryTests.cs (1)
570
public bool
SupportsInteractiveInput
=> !nonInteractive;
11 references to SupportsInteractiveInput
aspire (11)
Commands\AddCommand.cs (2)
286
> 1 when !_hostEnvironment.
SupportsInteractiveInput
=> distinctPackages.First(),
303
if (!_hostEnvironment.
SupportsInteractiveInput
)
Commands\PipelineCommandBase.cs (1)
137
if (!_hostEnvironment.
SupportsInteractiveInput
)
Commands\StopCommand.cs (1)
76
if (!_hostEnvironment.
SupportsInteractiveInput
)
Interaction\ConsoleInteractionService.cs (4)
133
if (!_hostEnvironment.
SupportsInteractiveInput
)
170
if (!_hostEnvironment.
SupportsInteractiveInput
)
199
if (!_hostEnvironment.
SupportsInteractiveInput
)
330
if (!_hostEnvironment.
SupportsInteractiveInput
)
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
113
if (!_hostEnvironment.
SupportsInteractiveInput
)
Templating\DotNetTemplateFactory.cs (2)
66
var nonInteractive = !hostEnvironment.
SupportsInteractiveInput
;
78
var nonInteractive = !hostEnvironment.
SupportsInteractiveInput
;