4 implementations of SupportsInteractiveOutput
aspire (1)
Utils\CliHostEnvironment.cs (1)
63
public bool
SupportsInteractiveOutput
{ get; }
Aspire.Cli.Tests (3)
Templating\DotNetTemplateFactoryTests.cs (1)
499
public bool
SupportsInteractiveOutput
=> !nonInteractive;
Templating\TemplateNuGetConfigServiceTests.cs (1)
1307
public bool
SupportsInteractiveOutput
=> false;
TestHelpers.cs (1)
25
public bool
SupportsInteractiveOutput
=> supportsInteractiveOutput;
9 references to SupportsInteractiveOutput
aspire (9)
Commands\LsCommand.cs (1)
95
&& _hostEnvironment.
SupportsInteractiveOutput
Commands\PipelineCommandBase.cs (1)
1395
if (!_hostEnvironment.
SupportsInteractiveOutput
)
Interaction\ConsoleInteractionService.cs (2)
77
!_hostEnvironment.
SupportsInteractiveOutput
||
577
if (!_hostEnvironment.
SupportsInteractiveOutput
)
Program.cs (2)
829
if ((showBanner || (isFirstRun && !noLogo)) && hostEnvironment.
SupportsInteractiveOutput
)
964
var supportsInteractiveOutput = hostEnvironment.
SupportsInteractiveOutput
;
Utils\ConsoleActivityLogger.cs (3)
70
if (!_hostEnvironment.
SupportsInteractiveOutput
)
114
if (!_hostEnvironment.
SupportsInteractiveOutput
|| _spinning)
837
if (!_hostEnvironment.
SupportsInteractiveOutput
)