3 implementations of SupportsInteractiveOutput
aspire (1)
Utils\CliHostEnvironment.cs (1)
61
public bool
SupportsInteractiveOutput
{ get; }
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
518
public bool
SupportsInteractiveOutput
=> !nonInteractive;
Utils\SdkInstallHelperTests.cs (1)
17
public bool
SupportsInteractiveOutput
=> true;
7 references to SupportsInteractiveOutput
aspire (7)
Commands\PipelineCommandBase.cs (2)
875
if (!_hostEnvironment.
SupportsInteractiveOutput
)
888
if (!_hostEnvironment.
SupportsInteractiveOutput
)
Interaction\ConsoleInteractionService.cs (2)
45
!_hostEnvironment.
SupportsInteractiveOutput
||
76
!_hostEnvironment.
SupportsInteractiveOutput
||
Utils\ConsoleActivityLogger.cs (3)
61
if (!_hostEnvironment.
SupportsInteractiveOutput
)
105
if (!_hostEnvironment.
SupportsInteractiveOutput
|| _spinning)
449
if (!_hostEnvironment.
SupportsInteractiveOutput
)