35 references to GetLines
aspire (30)
Certificates\CertificateService.cs (1)
125interactionService.DisplayLines(collector.GetLines());
Commands\AddCommand.cs (2)
240InteractionService.DisplayLines(outputCollector.GetLines()); 268InteractionService.DisplayLines(outputCollector.GetLines());
Commands\ExecCommand.cs (4)
245InteractionService.DisplayLines(runOutputCollector.GetLines()); 256InteractionService.DisplayLines(runOutputCollector.GetLines()); 290InteractionService.DisplayLines(runOutputCollector.GetLines()); 298InteractionService.DisplayLines(runOutputCollector.GetLines());
Commands\InitCommand.cs (7)
195InteractionService.DisplayLines(initContext.GetSolutionProjectsOutputCollector.GetLines()); 342InteractionService.DisplayLines(initContext.InstallTemplateOutputCollector.GetLines()); 369InteractionService.DisplayLines(initContext.NewProjectOutputCollector.GetLines()); 422InteractionService.DisplayLines(initContext.AddAppHostToSolutionOutputCollector.GetLines()); 448InteractionService.DisplayLines(initContext.AddServiceDefaultsToSolutionOutputCollector.GetLines()); 480InteractionService.DisplayLines(outputCollector.GetLines()); 514InteractionService.DisplayLines(outputCollector.GetLines());
Commands\PipelineCommandBase.cs (4)
221InteractionService.DisplayLines(outputCollector.GetLines()); 275InteractionService.DisplayLines(outputCollector.GetLines()); 288InteractionService.DisplayLines(outputCollector.GetLines()); 301InteractionService.DisplayLines(outputCollector.GetLines());
Commands\RunCommand.cs (1)
247InteractionService.DisplayLines(outputCollector.GetLines());
Commands\Sdk\SdkDumpCommand.cs (1)
149foreach (var (_, line) in prepareResult.Output.GetLines())
Commands\Sdk\SdkGenerateCommand.cs (1)
153foreach (var (_, line) in prepareResult.Output.GetLines())
Projects\GuestAppHostProject.cs (5)
199_interactionService.DisplayLines(buildOutput.GetLines()); 374_interactionService.DisplayLines(appHostServerOutputCollector.GetLines()); 435_interactionService.DisplayLines(guestOutput.GetLines()); 647_interactionService.DisplayLines(appHostServerOutputCollector.GetLines()); 706_interactionService.DisplayLines(guestOutput.GetLines());
Projects\PrebuiltAppHostServer.cs (1)
254var outputLines = string.Join(Environment.NewLine, buildOutput.GetLines().Select(l => l.Line));
Scaffolding\ScaffoldingService.cs (1)
82_interactionService.DisplayLines(prepareResult.Output.GetLines());
Templating\DotNetTemplateFactory.cs (2)
531interactionService.DisplayLines(templateInstallCollector.GetLines()); 570interactionService.DisplayLines(newProjectCollector.GetLines());
Aspire.Cli.Tests (5)
Utils\OutputCollectorTests.cs (5)
43var lines = collector.GetLines().ToList(); 62var snapshot = collector.GetLines().ToList(); 71var newSnapshot = collector.GetLines().ToList(); 84_ = collector.GetLines().ToList(); 102var finalLines = collector.GetLines().ToList();