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