7 implementations of DisplayLines
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
183public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
Interaction\ExtensionInteractionService.cs (1)
261public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
Aspire.Cli.Tests (5)
Commands\NewCommandTests.cs (1)
676public void DisplayLines(IEnumerable<(string Stream, string Line)> lines) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
980public void DisplayLines(IEnumerable<(string Stream, string Line)> lines) { }
Templating\DotNetTemplateFactoryTests.cs (1)
409public void DisplayLines(IEnumerable<(string Stream, string Line)> lines) { }
TestServices\TestConsoleInteractionService.cs (1)
72public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
TestServices\TestExtensionInteractionService.cs (1)
98public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
17 references to DisplayLines
aspire (17)
Certificates\CertificateService.cs (1)
57interactionService.DisplayLines(ensureCertificateCollector.GetLines());
Commands\AddCommand.cs (2)
177InteractionService.DisplayLines(outputCollector.GetLines()); 203InteractionService.DisplayLines(outputCollector.GetLines());
Commands\ConfigCommand.cs (1)
229InteractionService.DisplayLines(allConfig.Select(kvp => ("stdout", $"{kvp.Key}={kvp.Value}")));
Commands\ExecCommand.cs (4)
254InteractionService.DisplayLines(runOutputCollector.GetLines()); 265InteractionService.DisplayLines(runOutputCollector.GetLines()); 294InteractionService.DisplayLines(runOutputCollector.GetLines()); 300InteractionService.DisplayLines(runOutputCollector.GetLines());
Commands\PublishCommandBase.cs (3)
151InteractionService.DisplayLines(buildOutputCollector.GetLines()); 214InteractionService.DisplayLines(operationOutputCollector.GetLines()); 238InteractionService.DisplayLines(operationOutputCollector.GetLines());
Commands\RunCommand.cs (4)
164InteractionService.DisplayLines(buildOutputCollector.GetLines()); 239InteractionService.DisplayLines(runOutputCollector.GetLines()); 364InteractionService.DisplayLines(runOutputCollector.GetLines()); 370InteractionService.DisplayLines(runOutputCollector.GetLines());
Templating\DotNetTemplateFactory.cs (2)
322interactionService.DisplayLines(templateInstallCollector.GetLines()); 361interactionService.DisplayLines(newProjectCollector.GetLines());