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