1 write to Output
Microsoft.DotNet.Cli.Utils (1)
Reporter.cs (1)
96
Output
= CommandLoggingContext.OutputEnabled ? s_outputReporter : NullReporter;
266 references to Output
dotnet (105)
CommandLineInfo.cs (15)
17
Reporter.
Output
.WriteLine(Product.Version);
24
Reporter.
Output
.WriteLine($"{LocalizableStrings.DotNetSdkInfoLabel}");
25
Reporter.
Output
.WriteLine($" Version: {Product.Version}");
26
Reporter.
Output
.WriteLine($" Commit: {commitSha}");
27
Reporter.
Output
.WriteLine($" Workload version: {WorkloadCommandParser.GetWorkloadsVersion()}");
28
Reporter.
Output
.WriteLine($" MSBuild version: {MSBuildForwardingAppWithoutLogging.MSBuildVersion.ToString()}");
29
Reporter.
Output
.WriteLine();
30
Reporter.
Output
.WriteLine($"{LocalizableStrings.DotNetRuntimeInfoLabel}");
31
Reporter.
Output
.WriteLine($" OS Name: {RuntimeEnvironment.OperatingSystem}");
32
Reporter.
Output
.WriteLine($" OS Version: {RuntimeEnvironment.OperatingSystemVersion}");
33
Reporter.
Output
.WriteLine($" OS Platform: {RuntimeEnvironment.OperatingSystemPlatform}");
34
Reporter.
Output
.WriteLine($" RID: {GetDisplayRid(versionFile)}");
35
Reporter.
Output
.WriteLine($" Base Path: {AppContext.BaseDirectory}");
41
Reporter.
Output
.WriteLine();
42
Reporter.
Output
.WriteLine($"{LocalizableStrings.DotnetWorkloadInfoLabel}");
Commands\BuildServer\Shutdown\BuildServerShutdownCommand.cs (1)
51
_reporter = reporter ?? Reporter.
Output
;
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (2)
47
Reporter.
Output
.WriteLine(
71
Reporter.
Output
.WriteLine(CliCommandStrings.CleanFileBasedAppArtifactsScanning, directory.FullName);
Commands\Help\HelpCommand.cs (3)
36
Reporter.
Output
.WriteLine(CliUsage.HelpText);
42
Reporter.
Output
.WriteLine(Product.LongName + versionString);
101
Reporter.
Output
.WriteLine(CliUsage.HelpText);
Commands\Hidden\Complete\CompleteCommand.cs (1)
17
return RunWithReporter(parseResult, Reporter.
Output
);
Commands\New\PostActions\DotnetAddPostActionProcessor.cs (5)
160
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.PostAction_AddReference_AddPackageReference, packageName, projectPath));
164
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.PostAction_AddReference_AddPackageReference_WithVersion, packageName, version, projectPath));
169
Reporter.
Output
.WriteLine(CliCommandStrings.PostAction_AddReference_Succeeded);
188
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.PostAction_AddReference_AddProjectReference, projectToAdd, projectPath));
192
Reporter.
Output
.WriteLine(CliCommandStrings.PostAction_AddReference_Succeeded);
Commands\New\PostActions\DotnetRestorePostActionProcessor.cs (3)
28
Reporter.
Output
.WriteLine(CliCommandStrings.PostAction_Restore_Error_NoProjectsToRestore);
51
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.PostAction_Restore_Running, pathToRestore));
59
Reporter.
Output
.WriteLine(CliCommandStrings.PostAction_Restore_Succeeded);
Commands\New\PostActions\DotnetSlnPostActionProcessor.cs (3)
104
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.PostAction_AddProjToSln_InRoot_Running, string.Join(" ", projectFiles), nearestSlnFilesFound[0]));
108
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.PostAction_AddProjToSln_Running, string.Join(" ", projectFiles), nearestSlnFilesFound[0], solutionFolder));
124
Reporter.
Output
.WriteLine(CliCommandStrings.PostAction_AddProjToSln_Succeeded);
Commands\Package\Remove\PackageRemoveCommand.cs (1)
88
Reporter.
Output
.WriteLine(CliCommandStrings.DirectivesRemoved, "#:package", count, packageId, fullPath);
Commands\Project\Convert\ProjectConvertCommand.cs (5)
46
Reporter.
Output
.WriteLine(CliCommandStrings.ProjectConvertWouldCopyFile, file, targetFile);
47
Reporter.
Output
.WriteLine(CliCommandStrings.ProjectConvertWouldConvertFile, targetFile);
58
Reporter.
Output
.WriteLine(CliCommandStrings.ProjectConvertWouldCreateFile, projectFile);
91
Reporter.
Output
.WriteLine(CliCommandStrings.ProjectConvertWouldCreateDirectory, path);
104
Reporter.
Output
.WriteLine(CliCommandStrings.ProjectConvertWouldCopyFile, source, target);
Commands\Reference\List\ReferenceListCommand.cs (4)
37
Reporter.
Output
.WriteLine(string.Format(CliStrings.NoReferencesFound, CliStrings.P2P, _fileOrDirectory));
42
Reporter.
Output
.WriteLine($"{CliStrings.ProjectReferenceOneOrMore}");
43
Reporter.
Output
.WriteLine(new string('-', CliStrings.ProjectReferenceOneOrMore.Length));
46
Reporter.
Output
.WriteLine(item.EvaluatedInclude);
Commands\Run\CSharpCompilerCommand.cs (2)
136
Reporter.
Output
.Write(completed.Output);
146
Reporter.
Output
.WriteLine("Warning: Could not launch the compiler server.".Yellow());
Commands\Run\RunCommand.cs (4)
132
Reporter.
Output
.WriteLine(CliCommandStrings.RunCommandBuilding);
226
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.UsingLaunchSettingsFromMessage, launchSettingsPath));
281
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.RunCommandWarningRunJsonNotUsed, runJsonPath, launchSettingsPath).Yellow());
611
Reporter.
Output
.WriteLine(CliCommandStrings.RunCommandProjectAbbreviationDeprecated.Yellow());
Commands\Run\VirtualProjectBuildingCommand.cs (2)
233
Reporter.
Output
.WriteLine(CliCommandStrings.NoBinaryLogBecauseUpToDate.Yellow());
247
Reporter.
Output
.WriteLine(CliCommandStrings.NoBinaryLogBecauseRunningJustCsc.Yellow());
Commands\Sdk\Check\SdkCheckCommand.cs (1)
33
_reporter = reporter ?? Reporter.
Output
;
Commands\Solution\Add\SolutionAddCommand.cs (2)
214
Reporter.
Output
.WriteLine(CliStrings.SolutionAlreadyContainsProject, _solutionFileFullPath, solutionRelativeProjectPath);
244
Reporter.
Output
.WriteLine(CliStrings.ProjectAddedToTheSolution, solutionRelativeProjectPath);
Commands\Solution\List\SolutionListCommand.cs (4)
48
Reporter.
Output
.WriteLine(CliStrings.NoProjectsFound);
55
Reporter.
Output
.WriteLine(header);
56
Reporter.
Output
.WriteLine(new string('-', header.Length));
59
Reporter.
Output
.WriteLine(slnProject);
Commands\Solution\Migrate\SolutionMigrateCommand.cs (1)
18
private readonly IReporter _reporter = reporter ?? Reporter.
Output
;
Commands\Solution\Remove\SolutionRemoveCommand.cs (2)
85
Reporter.
Output
.WriteLine(CliStrings.ProjectNotFoundInTheSolution, projectPath);
91
Reporter.
Output
.WriteLine(CliStrings.ProjectRemovedFromTheSolution, projectPath);
Commands\Test\MTP\SolutionAndProjectUtility.cs (2)
383
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.RunCommandWarningRunJsonNotUsed, runJsonPath, launchSettingsPath).Yellow());
398
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.UsingLaunchSettingsFromMessage, launchSettingsPath));
Commands\Test\VSTest\TestCommand.cs (1)
133
Reporter.
Output
.WriteLine(string.Format(CliCommandStrings.IgnoredArgumentsMessage, string.Join(" ", ignoredArgs)).Yellow());
Commands\Tool\Install\ProjectRestorer.cs (1)
16
private readonly IReporter _reporter = reporter ?? Reporter.
Output
;
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (1)
106
_reporter = reporter ?? Reporter.
Output
;
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
55
_reporter = reporter ?? Reporter.
Output
;
Commands\Tool\List\ToolListGlobalOrToolPathCommand.cs (1)
22
private readonly IReporter _reporter = reporter ?? Reporter.
Output
;
Commands\Tool\List\ToolListLocalCommand.cs (1)
26
_reporter = reporter ?? Reporter.
Output
;
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
61
_reporter = reporter ?? Reporter.
Output
;
Commands\Tool\Search\ToolSearchCommand.cs (2)
18
private readonly SearchResultPrinter _searchResultPrinter = new SearchResultPrinter(Reporter.
Output
);
25
Reporter.
Output
.WriteLine(CliCommandStrings.NeedNuGetInConfig);
Commands\Tool\Uninstall\ToolUninstallGlobalOrToolPathCommand.cs (1)
26
private readonly IReporter _reporter = reporter ?? Reporter.
Output
;
Commands\Tool\Uninstall\ToolUninstallLocalCommand.cs (1)
35
_reporter = reporter ?? Reporter.
Output
;
Commands\Tool\Update\ToolUpdateLocalCommand.cs (1)
34
_reporter = reporter ?? Reporter.
Output
;
Commands\Workload\WorkloadCommandBase.cs (1)
103
Reporter = reporter ?? Utils.Reporter.
Output
;
Commands\Workload\WorkloadCommandParser.cs (4)
65
reporter ??= Reporter.
Output
;
182
Reporter.
Output
.WriteLine(string.Empty);
193
Reporter.
Output
.WriteLine(GetWorkloadsVersion());
194
Reporter.
Output
.WriteLine(string.Empty);
MsbuildProject.cs (4)
124
Reporter.
Output
.WriteLine(string.Format(
133
Reporter.
Output
.WriteLine(string.Format(CliStrings.ReferenceAddedToTheProject, @ref));
255
Reporter.
Output
.WriteLine(string.Format(CliStrings.ProjectReferenceRemoved, r));
261
Reporter.
Output
.WriteLine(string.Format(
NugetPackageDownloader\NuGetConsoleLogger.cs (3)
67
Reporter.
Output
.WriteLine($"[NuGet Manager] [Info] {data}");
72
Reporter.
Output
.WriteLine($"[NuGet Manager] [Info Summary] {data}");
77
Reporter.
Output
.WriteLine($"[NuGet Manager] {data}");
NugetPackageDownloader\NuGetPackageDownloader.cs (1)
67
_reporter = reporter ?? Reporter.
Output
;
Program.cs (1)
283
Reporter.
Output
.WriteLine(e.InstructionMessage);
ShellShim\EnvironmentPathFactory.cs (5)
35
Reporter.
Output
);
42
Reporter.
Output
,
50
reporter: Reporter.
Output
,
67
reporter: Reporter.
Output
,
78
reporter: Reporter.
Output
);
Telemetry\PersistenceChannel\PersistenceChannelDebugLog.cs (1)
25
Reporter.
Output
.WriteLine(message);
ToolPackage\ToolPackageDownloader.cs (3)
93
Reporter.
Output
.WriteLine($"Extracting package {packageId}@{packageVersion} to {packagePath}");
147
Reporter.
Output
.WriteLine($"Locating package {packageId}@{version} in package store {packagesRootPath.Value}");
148
Reporter.
Output
.WriteLine($"The package has {string.Join(',', package.Nuspec.GetPackageTypes().Select(p => $"{p.Name},{p.Version}"))} package types");
ToolPackage\ToolPackageDownloaderBase.cs (7)
207
Reporter.
Output
.WriteLine($"Configuring package {packageId}@{packageVersion} for runtime roll-forward");
342
Reporter.
Output
.WriteLine($"Resolving RID-specific package for {packageId} {packageVersion}");
343
Reporter.
Output
.WriteLine($"Target RID: {RuntimeInformation.RuntimeIdentifier}");
344
Reporter.
Output
.WriteLine($"Available RID-specific packages: {string.Join(", ", toolConfiguration.RidSpecificPackages.Keys)}");
357
Reporter.
Output
.WriteLine($"Best matching RID: {bestRuntimeIdentifier}");
358
Reporter.
Output
.WriteLine($"Resolved package: {resolvedPackage}");
369
Reporter.
Output
.WriteLine($"No RID-specific package declared for {packageId} {packageVersion}.");
dotnet.Tests (2)
CommandTests\Workload\Update\GivenDotnetWorkloadUpdate.cs (2)
96
Reporter.
Output
,
322
var updateCommand = new WorkloadUpdateCommand(Parser.Parse("dotnet workload update"), Reporter.
Output
, resolverFactory, workloadInstaller, nugetPackageDownloader, workloadManifestUpdater, shouldUseWorkloadSetsFromGlobalJson: globalJsonValue);
Microsoft.DotNet.Cli.Utils (1)
Command.cs (1)
140
_stdOut?.ForwardTo(writeLine: Reporter.
Output
.WriteLine);
Microsoft.TemplateEngine.Cli (158)
Commands\BaseCommand.cs (14)
96
Reporter.
Output
.WriteLine(LocalizableStrings.Commands_TemplateShortNameCommandConflict_Info, usedCommandAlias);
97
Reporter.
Output
.WriteCommand(Example.For<InstantiateCommand>(args.ParseResult).WithArgument(InstantiateCommand.ShortNameArgument, usedCommandAlias));
98
Reporter.
Output
.WriteLine();
111
Reporter.
Output
.WriteLine(string.Format(
116
Reporter.
Output
.WriteLine(LocalizableStrings.Commands_Warning_DeprecatedCommand_Info.Yellow());
117
Reporter.
Output
.WriteCommand(Example.For<TNew>(parseResult).WithHelpOption().ToString().Yellow());
118
Reporter.
Output
.WriteLine();
169
Reporter.
Output
.WriteLine("Attach to the process and press any key");
199
Reporter.
Output
.WriteLine(LocalizableStrings.CurrentConfiguration);
200
Reporter.
Output
.WriteLine(" ");
210
Reporter.
Output
.WriteLine(mountPointsFormatter.Layout());
211
Reporter.
Output
.WriteLine();
221
Reporter.
Output
.WriteLine(generatorsFormatter.Layout());
222
Reporter.
Output
.WriteLine();
Commands\create\InstantiateCommand.Help.cs (4)
44
HandleNoMatchingTemplateGroup(instantiateCommandArgs, allTemplateGroups, Reporter.
Output
);
49
HandleAmbiguousTemplateGroup(environmentSettings, templatePackageManager, selectedTemplateGroups, Reporter.
Output
);
64
HandleNoTemplateFoundResult(instantiateCommandArgs, environmentSettings, templatePackageManager, templateGroup, Reporter.
Output
);
71
Reporter.
Output
,
Commands\create\TemplateCommand.cs (3)
154
TemplatePackageDisplay templatePackageDisplay = new(Reporter.
Output
, Reporter.Error);
181
Reporter.
Output
.WriteLine();
223
var reporter = templateArgs.IsForceFlagSpecified ? Reporter.
Output
: Reporter.Error;
NuGet\CliNuGetLogger.cs (3)
53
Reporter.
Output
.WriteLine($"[NuGet Manager] [Info] {data}");
58
Reporter.
Output
.WriteLine($"[NuGet Manager] [Info Summary] {data}");
63
Reporter.
Output
.WriteLine($"[NuGet Manager] {data}");
PostActionDispatcher.cs (11)
88
Reporter.
Output
.WriteLine();
89
Reporter.
Output
.WriteLine(LocalizableStrings.ProcessingPostActions);
101
Reporter.
Output
.WriteLine(LocalizableStrings.ActionWouldHaveBeenTakenAutomatically);
104
Reporter.
Output
.WriteLine(action.Description.Indent());
170
Reporter.
Output
.WriteLine();
180
Reporter.
Output
.WriteLine(LocalizableStrings.PostActionPromptHeader);
183
Reporter.
Output
.WriteLine(LocalizableStrings.PostActionDescription, action.Description);
189
Reporter.
Output
.WriteLine(string.Format(LocalizableStrings.PostActionCommand, $"{executable} {commandArgs}").Bold().Red());
191
Reporter.
Output
.WriteLine(LocalizableStrings.PostActionPromptRequest, YesAnswer, NoAnswer);
206
Reporter.
Output
.WriteLine(LocalizableStrings.PostActionInvalidInputRePrompt, input, YesAnswer, NoAnswer);
249
IReporter stream = useErrorOutput ? Reporter.Error : Reporter.
Output
;
PostActionProcessors\AddJsonPropertyPostActionProcessor.cs (1)
146
Reporter.
Output
.WriteLine(string.Format(LocalizableStrings.PostAction_ModifyJson_Succeeded, jsonFileName));
PostActionProcessors\InstructionDisplayPostActionProcessor.cs (3)
18
Reporter.
Output
.WriteLine(LocalizableStrings.PostActionDescription, actionConfig.Description);
19
Reporter.
Output
.WriteLine(LocalizableStrings.PostActionInstructions, actionConfig.ManualInstructions);
24
Reporter.
Output
.WriteLine(string.Format(LocalizableStrings.PostActionCommand, $"{executable} {commandArgs}").Bold().Red());
PostActionProcessors\ProcessStartPostActionProcessor.cs (2)
50
Reporter.
Output
.WriteLine(LocalizableStrings.RunningCommand, command);
82
Reporter.
Output
.WriteLine(LocalizableStrings.CommandSucceeded);
TemplateInvoker.cs (13)
200
Reporter.
Output
.WriteLine(LocalizableStrings.CreateSuccessful, resultTemplateName);
204
Reporter.
Output
.WriteLine(LocalizableStrings.FileActionsWouldHaveBeenTaken);
209
Reporter.
Output
.WriteLine($" {GetChangeString(change.ChangeKind)}: {AdjustReportedPath(change.TargetRelativePath)}");
216
Reporter.
Output
.WriteLine(LocalizableStrings.ThirdPartyNotices, templateArgs.Template.ThirdPartyNotices);
239
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateCreator_Hint_RebuildCache);
240
Reporter.
Output
.WriteCommand(Example.For<NewCommand>(templateArgs.ParseResult).WithOption(NewCommand.DebugRebuildCacheOption));
241
Reporter.
Output
.WriteLine();
255
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateCreator_Hint_Uninstall);
256
Reporter.
Output
.WriteCommand(Example.For<UninstallCommand>(templateArgs.ParseResult).WithArgument(BaseUninstallCommand.NameArgument, templatePackage.DisplayName));
257
Reporter.
Output
.WriteLine();
258
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateCreator_Hint_Install);
259
Reporter.
Output
.WriteCommand(Example.For<InstallCommand>(templateArgs.ParseResult).WithArgument(BaseInstallCommand.NameArgument, templatePackage.DisplayName));
260
Reporter.
Output
.WriteLine();
TemplateListCoordinator.cs (22)
53
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatesFoundMatchingInputParameters, GetInputParametersString(args));
54
Reporter.
Output
.WriteLine();
62
reporter: Reporter.
Output
,
72
Reporter.
Output
.WriteLine(LocalizableStrings.NoTemplatesFound);
73
Reporter.
Output
.WriteLine();
75
Reporter.
Output
.WriteLine(LocalizableStrings.Generic_CommandHints_Search);
76
Reporter.
Output
.WriteCommand(
81
Reporter.
Output
.WriteLine();
152
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_Description, Example.For<NewCommand>(args.ParseResult));
154
Reporter.
Output
.WriteLine();
156
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_TemplatesHeader, Example.For<NewCommand>(args.ParseResult));
161
reporter: Reporter.
Output
);
163
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_ExampleHeader);
164
Reporter.
Output
.WriteCommand(
169
Reporter.
Output
.WriteLine();
171
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_DisplayOptionsHint);
172
Reporter.
Output
.WriteCommand(
178
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_ListTemplatesHint);
180
Reporter.
Output
.WriteCommand(
185
Reporter.
Output
.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_SearchTemplatesHint);
186
Reporter.
Output
.WriteCommand(
192
Reporter.
Output
.WriteLine();
TemplatePackageCoordinator.cs (51)
47
_templatePackageDisplay = new TemplatePackageDisplay(Reporter.
Output
, Reporter.Error);
149
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAvailable, displayString);
151
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateSingleCommandHeader);
152
Reporter.
Output
.WriteCommand(
157
Reporter.
Output
.WriteLine();
169
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_BuiltInCheck_Info_BuiltInPackageAvailable, $"{packageId}::{version}", provider);
170
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_BuiltInCheck_Info_UninstallPackage);
171
Reporter.
Output
.WriteCommand(
218
Reporter.
Output
.WriteLine(string.Format(LocalizableStrings.Colon_Separator_Deprecated, split[0], split.Length > 1 ? split[1] : string.Empty).Yellow());
245
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Install_Info_PackagesToBeInstalled);
248
Reporter.
Output
.WriteLine(installRequest.DisplayName.Indent());
250
Reporter.
Output
.WriteLine();
315
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_PackagesToBeUpdated);
318
Reporter.
Output
.WriteLine($"{update.TemplatePackage!.Identifier}::{update.LatestVersion}".Indent());
320
Reporter.
Output
.WriteLine();
346
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_AllPackagesAreUpToDate);
378
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_Success, uninstallResult.TemplatePackage.DisplayName);
438
DisplayLocalPackageMetadata(localPackage, Reporter.
Output
);
441
DisplayPackageTemplateList(templatesToDisplay, Reporter.
Output
);
463
DisplayNuGetPackageMetadata(nuGetPackageMetadata, Reporter.
Output
);
467
DisplayPackageTemplateList(templatesToDisplay, Reporter.
Output
);
472
Reporter.
Output
.WriteLine(
630
IReporter reporter = args.Force ? Reporter.
Output
: Reporter.Error;
825
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAvailablePackages);
839
Reporter.
Output
.WriteLine(formatter.Layout());
840
Reporter.
Output
.WriteLine();
842
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateSingleCommandHeader);
843
Reporter.
Output
.WriteCommand(
848
Reporter.
Output
.WriteCommand(
853
Reporter.
Output
.WriteLine();
854
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAllCommandHeader);
855
Reporter.
Output
.WriteCommand(
859
Reporter.
Output
.WriteLine();
882
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_InstalledItems);
886
Reporter.
Output
.WriteLine(LocalizableStrings.NoItems);
892
Reporter.
Output
.WriteLine($"{managedSource.Identifier}".Indent());
895
Reporter.
Output
.WriteLine($"{LocalizableStrings.Version} {managedSource.Version}".Indent(level: 2));
901
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_DetailsHeader.Indent(level: 2));
904
Reporter.
Output
.WriteLine($"{detail.Key}: {GetFormattedValue(detail.Value)}".Indent(level: 3));
911
Reporter.
Output
.WriteLine($"{LocalizableStrings.Templates}:".Indent(level: 2));
914
Reporter.
Output
.WriteLine(info.GetDisplayName().Indent(level: 3));
919
Reporter.
Output
.WriteLine($"{LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_UninstallCommandHint}".Indent(level: 2));
920
Reporter.
Output
.WriteCommand(
927
Reporter.
Output
.WriteLine();
959
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_lnstall_Info_Success, result.TemplatePackage.DisplayName);
964
reporter: Reporter.
Output
);
969
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_lnstall_Warning_No_Templates_In_Package, result.TemplatePackage.DisplayName);
1043
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Install_ConstraintsNotice);
1048
Reporter.
Output
.WriteLine(template.Template.GetDisplayName(showIdentity: showIdentity));
1051
Reporter.
Output
.WriteLine(constraintResult.ToDisplayString().Indent(1));
1137
Reporter.
Output
.WriteLine(string.Format(LocalizableStrings.DetailsCommand_UnableToLoadResource, source));
TemplatePackageDisplay.cs (21)
228
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_InstalledItems);
232
Reporter.
Output
.WriteLine(LocalizableStrings.NoItems);
238
Reporter.
Output
.WriteLine($"{managedSource.Identifier}".Indent());
241
Reporter.
Output
.WriteLine($"{LocalizableStrings.Version} {managedSource.Version}".Indent(level: 2));
247
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_DetailsHeader.Indent(level: 2));
250
Reporter.
Output
.WriteLine($"{detail.Key}: {GetFormattedValue(detail.Value)}".Indent(level: 3));
257
Reporter.
Output
.WriteLine($"{LocalizableStrings.Templates}:".Indent(level: 2));
260
Reporter.
Output
.WriteLine(info.GetDisplayName().Indent(level: 3));
265
Reporter.
Output
.WriteLine($"{LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_UninstallCommandHint}".Indent(level: 2));
266
Reporter.
Output
.WriteCommand(
273
Reporter.
Output
.WriteLine();
284
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAvailablePackages);
298
Reporter.
Output
.WriteLine(formatter.Layout());
299
Reporter.
Output
.WriteLine();
301
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateSingleCommandHeader);
302
Reporter.
Output
.WriteCommand(
307
Reporter.
Output
.WriteCommand(
312
Reporter.
Output
.WriteLine();
313
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAllCommandHeader);
314
Reporter.
Output
.WriteCommand(
318
Reporter.
Output
.WriteLine();
TemplateSearch\CliTemplateSearchCoordinator.cs (10)
45
Reporter.
Output
.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_SearchInProgress);
72
Reporter.
Output
.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_MatchesFromSource, result.Provider.Factory.DisplayName);
89
Reporter.
Output
.WriteLine();
93
Reporter.
Output
.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_InstallHelp);
94
Reporter.
Output
.WriteCommand(
99
Reporter.
Output
.WriteLine(LocalizableStrings.Generic_ExampleHeader);
100
Reporter.
Output
.WriteCommand(
181
Reporter.
Output
.WriteLine(LocalizableStrings.TemplatesFoundMatchingInputParameters, GetInputParametersString(commandArgs));
182
Reporter.
Output
.WriteLine();
202
Reporter.
Output
.WriteLine(formatter.Layout());