14 references to _reporter
dotnet (14)
Commands\Tool\Search\SearchResultPrinter.cs (14)
19
_reporter
.WriteLine(CliCommandStrings.NoResult);
42
table.PrintRows(searchResultPackages, l =>
_reporter
.WriteLine(l));
48
_reporter
.WriteLine("----------------".Bold());
49
_reporter
.WriteLine(p.Id.ToString());
50
_reporter
.WriteLine($"{CliCommandStrings.LatestVersion}: ".Bold() + p.LatestVersion);
53
_reporter
.WriteLine($"{CliCommandStrings.Authors}: ".Bold() + string.Join(", ", p.Authors));
58
_reporter
.WriteLine($"{CliCommandStrings.Tags}: ".Bold() + string.Join(", ", p.Tags));
61
_reporter
.WriteLine($"{CliCommandStrings.Downloads}: ".Bold() + p.TotalDownloads);
64
_reporter
.WriteLine($"{CliCommandStrings.Verified}: ".Bold() + p.Verified.ToString());
68
_reporter
.WriteLine($"{CliCommandStrings.Summary}: ".Bold() + p.Summary);
73
_reporter
.WriteLine($"{CliCommandStrings.Description}: ".Bold() + p.Description);
78
_reporter
.WriteLine($"{CliCommandStrings.Versions}: ".Bold());
81
_reporter
.WriteLine(
86
_reporter
.WriteLine();