3 implementations of SupportsInteractiveOutput
aspire (1)
Utils\CliHostEnvironment.cs (1)
62
public bool
SupportsInteractiveOutput
{ get; }
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
574
public bool
SupportsInteractiveOutput
=> !nonInteractive;
TestHelpers.cs (1)
23
public bool
SupportsInteractiveOutput
=> supportsInteractiveOutput;
8 references to SupportsInteractiveOutput
aspire (8)
Commands\PipelineCommandBase.cs (2)
929
if (!_hostEnvironment.
SupportsInteractiveOutput
)
942
if (!_hostEnvironment.
SupportsInteractiveOutput
)
Interaction\ConsoleInteractionService.cs (2)
63
!_hostEnvironment.
SupportsInteractiveOutput
||
105
!_hostEnvironment.
SupportsInteractiveOutput
||
Program.cs (1)
578
if (showBanner || (isFirstRun && !noLogo && hostEnvironment.
SupportsInteractiveOutput
))
Utils\ConsoleActivityLogger.cs (3)
62
if (!_hostEnvironment.
SupportsInteractiveOutput
)
106
if (!_hostEnvironment.
SupportsInteractiveOutput
|| _spinning)
455
if (!_hostEnvironment.
SupportsInteractiveOutput
)