1 write to Output
Microsoft.DotNet.Cli.Utils (1)
Reporter.cs (1)
96Output = CommandLoggingContext.OutputEnabled ? s_outputReporter : NullReporter;
268 references to Output
dotnet (136)
CommandLineInfo.cs (15)
21Reporter.Output.WriteLine(Product.Version); 31Reporter.Output.WriteLine($"{LocalizableStrings.DotNetSdkInfoLabel}"); 33Reporter.Output.WriteLine($" Version: {Product.Version}"); 34Reporter.Output.WriteLine($" Commit: {commitSha}"); 36Reporter.Output.WriteLine($" Workload version: {WorkloadInfoHelper.GetWorkloadsVersion()}"); 37Reporter.Output.WriteLine($" MSBuild version: {MSBuildForwardingAppWithoutLogging.MSBuildVersion}"); 39Reporter.Output.WriteLine(); 45Reporter.Output.WriteLine($"{LocalizableStrings.DotNetRuntimeInfoLabel}"); 46Reporter.Output.WriteLine($" OS Name: {RuntimeEnvironment.OperatingSystem}"); 47Reporter.Output.WriteLine($" OS Version: {RuntimeEnvironment.OperatingSystemVersion}"); 48Reporter.Output.WriteLine($" OS Platform: {RuntimeEnvironment.OperatingSystemPlatform}"); 50Reporter.Output.WriteLine($" RID: {RuntimeInformation.RuntimeIdentifier}"); 51Reporter.Output.WriteLine($" Base Path: {AppContext.BaseDirectory}"); 60Reporter.Output.WriteLine(); 61Reporter.Output.WriteLine($"{LocalizableStrings.DotnetWorkloadInfoLabel}");
Commands\BuildServer\Shutdown\BuildServerShutdownCommand.cs (1)
48_reporter = reporter ?? Reporter.Output;
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (2)
48Reporter.Output.WriteLine( 72Reporter.Output.WriteLine(CliCommandStrings.CleanFileBasedAppArtifactsScanning, directory.FullName);
Commands\Help\HelpCommand.cs (3)
36Reporter.Output.WriteLine(CliUsage.HelpText); 42Reporter.Output.WriteLine(LocalizableStrings.DotNetSdkInfo + versionString); 101Reporter.Output.WriteLine(CliUsage.HelpText);
Commands\Hidden\Complete\CompleteCommand.cs (1)
17return RunWithReporter(parseResult, Reporter.Output);
Commands\New\PostActions\DotnetAddPostActionProcessor.cs (5)
160Reporter.Output.WriteLine(string.Format(CliCommandStrings.PostAction_AddReference_AddPackageReference, packageName, projectPath)); 164Reporter.Output.WriteLine(string.Format(CliCommandStrings.PostAction_AddReference_AddPackageReference_WithVersion, packageName, version, projectPath)); 169Reporter.Output.WriteLine(CliCommandStrings.PostAction_AddReference_Succeeded); 188Reporter.Output.WriteLine(string.Format(CliCommandStrings.PostAction_AddReference_AddProjectReference, projectToAdd, projectPath)); 192Reporter.Output.WriteLine(CliCommandStrings.PostAction_AddReference_Succeeded);
Commands\New\PostActions\DotnetRestorePostActionProcessor.cs (3)
28Reporter.Output.WriteLine(CliCommandStrings.PostAction_Restore_Error_NoProjectsToRestore); 51Reporter.Output.WriteLine(string.Format(CliCommandStrings.PostAction_Restore_Running, pathToRestore)); 59Reporter.Output.WriteLine(CliCommandStrings.PostAction_Restore_Succeeded);
Commands\New\PostActions\DotnetSlnPostActionProcessor.cs (3)
104Reporter.Output.WriteLine(string.Format(CliCommandStrings.PostAction_AddProjToSln_InRoot_Running, string.Join(" ", projectFiles), nearestSlnFilesFound[0])); 108Reporter.Output.WriteLine(string.Format(CliCommandStrings.PostAction_AddProjToSln_Running, string.Join(" ", projectFiles), nearestSlnFilesFound[0], solutionFolder)); 124Reporter.Output.WriteLine(CliCommandStrings.PostAction_AddProjToSln_Succeeded);
Commands\Project\Convert\ProjectConvertCommand.cs (9)
148Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldCopyFile, sourceFile, targetFile); 149Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldConvertFile, targetFile); 160Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldCreateFile, projectFile); 183Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldCreateDirectory, path); 196Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldCopyFile, source, target); 208Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldDeleteSourceFile, path); 213Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertDeletedSourceFile, path); 236Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldCopyFile, item.FullPath, targetItemFullPath); 237Reporter.Output.WriteLine(CliCommandStrings.ProjectConvertWouldConvertFile, targetItemFullPath);
Commands\Reference\List\ReferenceListCommand.cs (4)
32Reporter.Output.WriteLine(string.Format(CliStrings.NoReferencesFound, CliStrings.P2P, _fileOrDirectory)); 37Reporter.Output.WriteLine($"{CliStrings.ProjectReferenceOneOrMore}"); 38Reporter.Output.WriteLine(new string('-', CliStrings.ProjectReferenceOneOrMore.Length)); 41Reporter.Output.WriteLine(item.EvaluatedInclude);
Commands\Run\CSharpCompilerCommand.cs (2)
167Reporter.Output.Write(completed.Output); 177Reporter.Output.WriteLine("Warning: Could not launch the compiler server.".Yellow());
Commands\Run\RunCommand.cs (3)
186Reporter.Output.WriteLine(CliCommandStrings.RunCommandBuilding); 453static (message, isError) => (isError ? Reporter.Error : Reporter.Output).WriteLine(message)); 822Reporter.Output.WriteLine(CliCommandStrings.RunCommandProjectAbbreviationDeprecated.Yellow());
Commands\Run\RunCommandSelector.cs (7)
429Reporter.Output.WriteLine(CliCommandStrings.RunCommandNoDevicesAvailable); 441Reporter.Output.WriteLine(CliCommandStrings.RunCommandAvailableDevices); 442Reporter.Output.WriteLine(); 468Reporter.Output.WriteLine(displayBuilder.ToString()); 471Reporter.Output.WriteLine(); 472Reporter.Output.WriteLine($"{CliCommandStrings.RunCommandExampleText}: dotnet run --device {ArgumentEscaper.EscapeSingleArg(devices[0].Id)}"); 473Reporter.Output.WriteLine();
Commands\Run\VirtualProjectBuildingCommand.cs (2)
219Reporter.Output.WriteLine(CliCommandStrings.NoBinaryLogBecauseUpToDate.Yellow()); 256Reporter.Output.WriteLine(CliCommandStrings.NoBinaryLogBecauseRunningJustCsc.Yellow());
Commands\Sdk\Check\SdkCheckCommand.cs (1)
36_reporter = reporter ?? Reporter.Output;
Commands\Solution\Add\SolutionAddCommand.cs (4)
231Reporter.Output.WriteLine(CliStrings.SolutionAlreadyContainsProject, _solutionFileFullPath, solutionRelativeProjectPath); 261Reporter.Output.WriteLine(CliStrings.ProjectAddedToTheSolution, solutionRelativeProjectPath); 329Reporter.Output.WriteLine(CliStrings.SolutionAlreadyContainsProject, _solutionFileFullPath, parentSolutionRelativePath); 334Reporter.Output.WriteLine(CliStrings.ProjectAddedToTheSolution, parentSolutionRelativePath);
Commands\Solution\List\SolutionListCommand.cs (4)
54Reporter.Output.WriteLine(CliStrings.NoProjectsFound); 61Reporter.Output.WriteLine(header); 62Reporter.Output.WriteLine(new string('-', header.Length)); 65Reporter.Output.WriteLine(slnProject);
Commands\Solution\Migrate\SolutionMigrateCommand.cs (1)
22_reporter = reporter ?? Reporter.Output;
Commands\Solution\Remove\SolutionRemoveCommand.cs (4)
93Reporter.Output.WriteLine(CliStrings.ProjectNotFoundInTheSolution, projectPath); 99Reporter.Output.WriteLine(CliStrings.ProjectRemovedFromTheSolution, projectPath); 161Reporter.Output.WriteLine(CliStrings.ProjectRemovedFromTheSolution, normalizedPath); 165Reporter.Output.WriteLine(CliStrings.ProjectNotFoundInTheSolution, normalizedPath);
Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.Help.cs (4)
240Utils.Reporter.Output.WriteLine(title); 249Utils.Reporter.Output.WriteLine(); 250Utils.Reporter.Output.WriteLine((groupedModules.Key ? CliCommandStrings.HelpUnavailableOptions : CliCommandStrings.HelpUnavailableExtensionOptions).Yellow()); 273Utils.Reporter.Output.WriteLine($"{missing}\n{line}\n");
Commands\Test\MTP\SolutionAndProjectUtility.cs (1)
391Reporter.Output.WriteLine(string.Format(CliCommandStrings.RunCommandWarningRunJsonNotUsed, runJsonPath, launchSettingsPath).Yellow());
Commands\Test\MTP\TestModulesFilterHandler.cs (2)
43Reporter.Output.WriteLine(string.Format(CliCommandStrings.CmdNonExistentRootDirectoryErrorDescription, _testModulesRoot).Yellow()); 50Reporter.Output.WriteLine(string.Format(CliCommandStrings.CmdNoTestModulesErrorDescription, _testModules, _testModulesRoot).Yellow());
Commands\Test\VSTest\TestCommand.cs (1)
158Reporter.Output.WriteLine(string.Format(CliCommandStrings.IgnoredArgumentsMessage, string.Join(" ", ignoredArgs)).Yellow());
Commands\Tool\Install\ProjectRestorer.cs (1)
16private readonly IReporter _reporter = reporter ?? Reporter.Output;
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (2)
128_reporter = reporter ?? Reporter.Output; 149.Where(p => ToolListGlobalOrToolPathCommand.PackageHasCommand(p, Reporter.Output))
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
60_reporter = reporter ?? Reporter.Output;
Commands\Tool\List\ToolListGlobalOrToolPathCommand.cs (1)
22private readonly IReporter _reporter = reporter ?? Reporter.Output;
Commands\Tool\List\ToolListLocalCommand.cs (1)
26_reporter = reporter ?? Reporter.Output;
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
62_reporter = reporter ?? Reporter.Output;
Commands\Tool\Search\ToolSearchCommand.cs (2)
18private readonly SearchResultPrinter _searchResultPrinter = new(Reporter.Output); 25Reporter.Output.WriteLine(CliCommandStrings.NeedNuGetInConfig);
Commands\Tool\Uninstall\ToolUninstallGlobalOrToolPathCommand.cs (1)
25private readonly IReporter _reporter = reporter ?? Reporter.Output;
Commands\Tool\Uninstall\ToolUninstallLocalCommand.cs (1)
34_reporter = reporter ?? Reporter.Output;
Commands\Tool\Update\ToolUpdateLocalCommand.cs (1)
34_reporter = reporter ?? Reporter.Output;
Commands\Workload\WorkloadCommandBase.cs (1)
110Reporter = reporter ?? Utils.Reporter.Output;
Commands\Workload\WorkloadCommandParser.cs (3)
61Reporter.Output.WriteLine(string.Empty); 72Reporter.Output.WriteLine(WorkloadInfoHelper.GetWorkloadsVersion()); 73Reporter.Output.WriteLine(string.Empty);
Commands\Workload\WorkloadInfoHelper.cs (1)
128reporter ??= Reporter.Output;
MsbuildProject.cs (4)
101Reporter.Output.WriteLine(string.Format( 110Reporter.Output.WriteLine(string.Format(CliStrings.ReferenceAddedToTheProject, @ref)); 232Reporter.Output.WriteLine(string.Format(CliStrings.ProjectReferenceRemoved, r)); 238Reporter.Output.WriteLine(string.Format(
NugetPackageDownloader\NuGetConsoleLogger.cs (3)
67Reporter.Output.WriteLine($"[NuGet Manager] [Info] {data}"); 72Reporter.Output.WriteLine($"[NuGet Manager] [Info Summary] {data}"); 77Reporter.Output.WriteLine($"[NuGet Manager] {data}");
NugetPackageDownloader\NuGetPackageDownloader.cs (1)
81_reporter = reporter ?? Reporter.Output;
ParserOptionActions.cs (15)
119Reporter.Output.WriteLine(Product.Version); 140Reporter.Output.WriteLine($"{LocalizableStrings.DotNetSdkInfoLabel}"); 141Reporter.Output.WriteLine($" Version: {Product.Version}"); 142Reporter.Output.WriteLine($" Commit: {commitSha}"); 143Reporter.Output.WriteLine($" Workload version: {WorkloadInfoHelper.GetWorkloadsVersion()}"); 144Reporter.Output.WriteLine($" MSBuild version: {MSBuildForwardingAppWithoutLogging.MSBuildVersion}"); 145Reporter.Output.WriteLine(); 146Reporter.Output.WriteLine($"{LocalizableStrings.DotNetRuntimeInfoLabel}"); 147Reporter.Output.WriteLine($" OS Name: {RuntimeEnvironment.OperatingSystem}"); 148Reporter.Output.WriteLine($" OS Version: {RuntimeEnvironment.OperatingSystemVersion}"); 149Reporter.Output.WriteLine($" OS Platform: {RuntimeEnvironment.OperatingSystemPlatform}"); 150Reporter.Output.WriteLine($" RID: {GetDisplayRid(versionFile)}"); 151Reporter.Output.WriteLine($" Base Path: {AppContext.BaseDirectory}"); 152Reporter.Output.WriteLine(); 153Reporter.Output.WriteLine($"{LocalizableStrings.DotnetWorkloadInfoLabel}");
Program.cs (1)
173Reporter.Output.WriteLine(e.InstructionMessage);
ShellShim\EnvironmentPathFactory.cs (3)
39Reporter.Output, 47reporter: Reporter.Output, 64reporter: Reporter.Output,
ToolPackage\ToolPackageDownloader.cs (3)
93Reporter.Output.WriteLine($"Extracting package {packageId}@{packageVersion} to {packagePath}"); 147Reporter.Output.WriteLine($"Locating package {packageId}@{version} in package store {packagesRootPath.Value}"); 148Reporter.Output.WriteLine($"The package has {string.Join(',', package.Nuspec.GetPackageTypes().Select(p => $"{p.Name},{p.Version}"))} package types");
ToolPackage\ToolPackageDownloaderBase.cs (7)
210Reporter.Output.WriteLine($"Configuring package {packageId}@{packageVersion} for runtime roll-forward"); 345Reporter.Output.WriteLine($"Resolving RID-specific package for {packageId} {packageVersion}"); 346Reporter.Output.WriteLine($"Target RID: {RuntimeInformation.RuntimeIdentifier}"); 347Reporter.Output.WriteLine($"Available RID-specific packages: {string.Join(", ", toolConfiguration.RidSpecificPackages.Keys)}"); 360Reporter.Output.WriteLine($"Best matching RID: {bestRuntimeIdentifier}"); 361Reporter.Output.WriteLine($"Resolved package: {resolvedPackage}"); 372Reporter.Output.WriteLine($"No RID-specific package declared for {packageId} {packageVersion}.");
Microsoft.DotNet.Cli.Utils (1)
Command.cs (1)
138_stdOut?.ForwardTo(writeLine: Reporter.Output.WriteLine);
Microsoft.TemplateEngine.Cli (131)
Commands\BaseCommand.cs (14)
127Reporter.Output.WriteLine(LocalizableStrings.Commands_TemplateShortNameCommandConflict_Info, usedCommandAlias); 131Reporter.Output.WriteCommand(example); 132Reporter.Output.WriteLine(); 145Reporter.Output.WriteLine(string.Format( 150Reporter.Output.WriteLine(LocalizableStrings.Commands_Warning_DeprecatedCommand_Info.Yellow()); 151Reporter.Output.WriteCommand(Example.For<TNewCommand>(parseResult).WithHelpOption().ToString().Yellow()); 152Reporter.Output.WriteLine(); 177Reporter.Output.WriteLine("Attach to the process and press any key"); 207Reporter.Output.WriteLine(LocalizableStrings.CurrentConfiguration); 208Reporter.Output.WriteLine(" "); 218Reporter.Output.WriteLine(mountPointsFormatter.Layout()); 219Reporter.Output.WriteLine(); 229Reporter.Output.WriteLine(generatorsFormatter.Layout()); 230Reporter.Output.WriteLine();
Commands\create\InstantiateCommand.Help.cs (4)
45HandleNoMatchingTemplateGroup(instantiateCommandArgs, allTemplateGroups, Reporter.Output); 50HandleAmbiguousTemplateGroup(environmentSettings, templatePackageManager, selectedTemplateGroups, Reporter.Output); 65HandleNoTemplateFoundResult(instantiateCommandArgs, environmentSettings, templatePackageManager, templateGroup, Reporter.Output); 72Reporter.Output,
Commands\create\TemplateCommand.cs (3)
169TemplatePackageDisplay templatePackageDisplay = new(Reporter.Output, Reporter.Error); 196Reporter.Output.WriteLine(); 238var reporter = templateArgs.IsForceFlagSpecified ? Reporter.Output : Reporter.Error;
NuGet\CliNuGetLogger.cs (3)
53Reporter.Output.WriteLine($"[NuGet Manager] [Info] {data}"); 58Reporter.Output.WriteLine($"[NuGet Manager] [Info Summary] {data}"); 63Reporter.Output.WriteLine($"[NuGet Manager] {data}");
PostActionDispatcher.cs (11)
88Reporter.Output.WriteLine(); 89Reporter.Output.WriteLine(LocalizableStrings.ProcessingPostActions); 101Reporter.Output.WriteLine(LocalizableStrings.ActionWouldHaveBeenTakenAutomatically); 104Reporter.Output.WriteLine(action.Description.Indent()); 170Reporter.Output.WriteLine(); 180Reporter.Output.WriteLine(LocalizableStrings.PostActionPromptHeader); 183Reporter.Output.WriteLine(LocalizableStrings.PostActionDescription, action.Description); 189Reporter.Output.WriteLine(string.Format(LocalizableStrings.PostActionCommand, $"{executable} {commandArgs}").Bold().Red()); 191Reporter.Output.WriteLine(LocalizableStrings.PostActionPromptRequest, YesAnswer, NoAnswer); 206Reporter.Output.WriteLine(LocalizableStrings.PostActionInvalidInputRePrompt, input, YesAnswer, NoAnswer); 249IReporter stream = useErrorOutput ? Reporter.Error : Reporter.Output;
PostActionProcessors\AddJsonPropertyPostActionProcessor.cs (1)
168Reporter.Output.WriteLine(string.Format(LocalizableStrings.PostAction_ModifyJson_Succeeded, jsonFileName));
PostActionProcessors\InstructionDisplayPostActionProcessor.cs (3)
18Reporter.Output.WriteLine(LocalizableStrings.PostActionDescription, actionConfig.Description); 19Reporter.Output.WriteLine(LocalizableStrings.PostActionInstructions, actionConfig.ManualInstructions); 24Reporter.Output.WriteLine(string.Format(LocalizableStrings.PostActionCommand, $"{executable} {commandArgs}").Bold().Red());
PostActionProcessors\ProcessStartPostActionProcessor.cs (2)
50Reporter.Output.WriteLine(LocalizableStrings.RunningCommand, command); 82Reporter.Output.WriteLine(LocalizableStrings.CommandSucceeded);
TemplateInvoker.cs (13)
202Reporter.Output.WriteLine(LocalizableStrings.CreateSuccessful, resultTemplateName); 206Reporter.Output.WriteLine(LocalizableStrings.FileActionsWouldHaveBeenTaken); 211Reporter.Output.WriteLine($" {GetChangeString(change.ChangeKind)}: {AdjustReportedPath(change.TargetRelativePath)}"); 218Reporter.Output.WriteLine(LocalizableStrings.ThirdPartyNotices, templateArgs.Template.ThirdPartyNotices); 241Reporter.Output.WriteLine(LocalizableStrings.TemplateCreator_Hint_RebuildCache); 242Reporter.Output.WriteCommand(Example.For<NewCommand>(templateArgs.ParseResult).WithOption(c => c.Definition.DebugRebuildCacheOption)); 243Reporter.Output.WriteLine(); 257Reporter.Output.WriteLine(LocalizableStrings.TemplateCreator_Hint_Uninstall); 258Reporter.Output.WriteCommand(Example.For<UninstallCommand>(templateArgs.ParseResult).WithArguments(templatePackage.DisplayName)); 259Reporter.Output.WriteLine(); 260Reporter.Output.WriteLine(LocalizableStrings.TemplateCreator_Hint_Install); 261Reporter.Output.WriteCommand(Example.For<InstallCommand>(templateArgs.ParseResult).WithArguments(templatePackage.DisplayName)); 262Reporter.Output.WriteLine();
TemplateListCoordinator.cs (22)
54Reporter.Output.WriteLine(LocalizableStrings.TemplatesFoundMatchingInputParameters, GetInputParametersString(args)); 55Reporter.Output.WriteLine(); 63reporter: Reporter.Output, 73Reporter.Output.WriteLine(LocalizableStrings.NoTemplatesFound); 74Reporter.Output.WriteLine(); 76Reporter.Output.WriteLine(LocalizableStrings.Generic_CommandHints_Search); 77Reporter.Output.WriteCommand( 82Reporter.Output.WriteLine(); 153Reporter.Output.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_Description, Example.For<NewCommand>(args.ParseResult)); 155Reporter.Output.WriteLine(); 157Reporter.Output.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_TemplatesHeader, Example.For<NewCommand>(args.ParseResult)); 162reporter: Reporter.Output); 164Reporter.Output.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_ExampleHeader); 165Reporter.Output.WriteCommand( 170Reporter.Output.WriteLine(); 172Reporter.Output.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_DisplayOptionsHint); 173Reporter.Output.WriteCommand( 179Reporter.Output.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_ListTemplatesHint); 181Reporter.Output.WriteCommand( 186Reporter.Output.WriteLine(LocalizableStrings.TemplateInformationCoordinator_DotnetNew_SearchTemplatesHint); 187Reporter.Output.WriteCommand( 193Reporter.Output.WriteLine();
TemplatePackageCoordinator.cs (24)
44_templatePackageDisplay = new TemplatePackageDisplay(Reporter.Output, Reporter.Error); 146Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAvailable, displayString); 148Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateSingleCommandHeader); 149Reporter.Output.WriteCommand( 154Reporter.Output.WriteLine(); 166Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_BuiltInCheck_Info_BuiltInPackageAvailable, $"{packageId}@{version}", provider); 167Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_BuiltInCheck_Info_UninstallPackage); 168Reporter.Output.WriteCommand( 215Reporter.Output.WriteLine(string.Format(LocalizableStrings.Colon_Separator_Deprecated, split[0], split.Length > 1 ? split[1] : string.Empty).Yellow()); 242Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Install_Info_PackagesToBeInstalled); 245Reporter.Output.WriteLine(installRequest.DisplayName.Indent()); 247Reporter.Output.WriteLine(); 312Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_PackagesToBeUpdated); 315Reporter.Output.WriteLine($"{update.TemplatePackage!.Identifier}@{update.LatestVersion}".Indent()); 317Reporter.Output.WriteLine(); 343Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_AllPackagesAreUpToDate); 375Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_Success, uninstallResult.TemplatePackage.DisplayName); 435DisplayLocalPackageMetadata(localPackage, Reporter.Output); 438DisplayPackageTemplateList(templatesToDisplay, Reporter.Output); 460DisplayNuGetPackageMetadata(nuGetPackageMetadata, Reporter.Output); 464DisplayPackageTemplateList(templatesToDisplay, Reporter.Output); 469Reporter.Output.WriteLine( 627IReporter reporter = args.Force ? Reporter.Output : Reporter.Error; 896Reporter.Output.WriteLine(string.Format(LocalizableStrings.DetailsCommand_UnableToLoadResource, source));
TemplatePackageDisplay.cs (21)
229Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_InstalledItems); 233Reporter.Output.WriteLine(LocalizableStrings.NoItems); 239Reporter.Output.WriteLine($"{managedSource.Identifier}".Indent()); 242Reporter.Output.WriteLine($"{LocalizableStrings.Version} {managedSource.Version}".Indent(level: 2)); 248Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_DetailsHeader.Indent(level: 2)); 251Reporter.Output.WriteLine($"{detail.Key}: {GetFormattedValue(detail.Value)}".Indent(level: 3)); 258Reporter.Output.WriteLine($"{LocalizableStrings.Templates}:".Indent(level: 2)); 261Reporter.Output.WriteLine(info.GetDisplayName().Indent(level: 3)); 266Reporter.Output.WriteLine($"{LocalizableStrings.TemplatePackageCoordinator_Uninstall_Info_UninstallCommandHint}".Indent(level: 2)); 267Reporter.Output.WriteCommand( 274Reporter.Output.WriteLine(); 285Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAvailablePackages); 299Reporter.Output.WriteLine(formatter.Layout()); 300Reporter.Output.WriteLine(); 302Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateSingleCommandHeader); 303Reporter.Output.WriteCommand( 308Reporter.Output.WriteCommand( 313Reporter.Output.WriteLine(); 314Reporter.Output.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Update_Info_UpdateAllCommandHeader); 315Reporter.Output.WriteCommand( 319Reporter.Output.WriteLine();
TemplateSearch\CliTemplateSearchCoordinator.cs (10)
46Reporter.Output.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_SearchInProgress); 73Reporter.Output.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_MatchesFromSource, result.Provider.Factory.DisplayName); 90Reporter.Output.WriteLine(); 94Reporter.Output.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_InstallHelp); 95Reporter.Output.WriteCommand( 100Reporter.Output.WriteLine(LocalizableStrings.Generic_ExampleHeader); 101Reporter.Output.WriteCommand( 182Reporter.Output.WriteLine(LocalizableStrings.TemplatesFoundMatchingInputParameters, GetInputParametersString(commandArgs)); 183Reporter.Output.WriteLine(); 203Reporter.Output.WriteLine(formatter.Layout());