4 implementations of DisplayLines
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
154public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
Interaction\ExtensionInteractionService.cs (1)
190public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
742public void DisplayLines(IEnumerable<(string Stream, string Line)> lines) { }
TestServices\TestConsoleInteractionService.cs (1)
63public void DisplayLines(IEnumerable<(string Stream, string Line)> lines)
15 references to DisplayLines
aspire (15)
Certificates\CertificateService.cs (1)
56interactionService.DisplayLines(ensureCertificateCollector.GetLines());
Commands\AddCommand.cs (2)
153_interactionService.DisplayLines(outputCollector.GetLines()); 190_interactionService.DisplayLines(outputCollector.GetLines());
Commands\ExecCommand.cs (4)
220_interactionService.DisplayLines(runOutputCollector.GetLines()); 231_interactionService.DisplayLines(runOutputCollector.GetLines()); 271_interactionService.DisplayLines(runOutputCollector.GetLines()); 277_interactionService.DisplayLines(runOutputCollector.GetLines());
Commands\PublishCommandBase.cs (3)
121_interactionService.DisplayLines(buildOutputCollector.GetLines()); 182_interactionService.DisplayLines(operationOutputCollector.GetLines()); 222_interactionService.DisplayLines(operationOutputCollector.GetLines());
Commands\RunCommand.cs (3)
116_interactionService.DisplayLines(buildOutputCollector.GetLines()); 283_interactionService.DisplayLines(runOutputCollector.GetLines()); 289_interactionService.DisplayLines(runOutputCollector.GetLines());
Templating\DotNetTemplateFactory.cs (2)
225interactionService.DisplayLines(templateInstallCollector.GetLines()); 256interactionService.DisplayLines(newProjectCollector.GetLines());