20 references to RootCommandStrings
aspire (19)
Commands\CompletionsCommand.cs (4)
15: base("completions", RootCommandStrings.CompletionsDescription, services) 24Description = RootCommandStrings.CompletionShellDescription, 31: base("script", RootCommandStrings.CompletionScriptDescription, services) 43return Task.FromResult(CommandResult.Failure(CliExitCodes.InvalidCommand, RootCommandStrings.CompletionShellRequired));
Commands\RootCommand.cs (8)
25Description = RootCommandStrings.DebugArgumentDescription, 32Description = RootCommandStrings.DebugLevelArgumentDescription, 38Description = RootCommandStrings.NonInteractiveArgumentDescription, 44Description = RootCommandStrings.NoLogoArgumentDescription, 50Description = RootCommandStrings.BannerArgumentDescription, 56Description = RootCommandStrings.WaitForDebuggerArgumentDescription, 63Description = RootCommandStrings.CliWaitForDebuggerArgumentDescription, 190: base(RootCommandStrings.Description)
Completions\CompletionInvocation.cs (1)
90error.WriteLine(RootCommandStrings.InvalidCompletionRequest);
Interaction\BannerService.cs (2)
60var welcomeText = RootCommandStrings.BannerWelcomeText; 61var versionText = string.Format(CultureInfo.CurrentCulture, RootCommandStrings.BannerVersionFormat, cliVersion);
Program.cs (3)
876consoleEnvironment.Error.MarkupLine(string.Format(CultureInfo.CurrentCulture, RootCommandStrings.FirstTimeUseTelemetryNotice, MarkupHelpers.SafeLink(interactionService, telemetryUrl))); 903RootCommandStrings.IdentityOverrideNotice, 1364string.Format(CultureInfo.CurrentCulture, RootCommandStrings.WaitingForDebugger, Environment.ProcessId),
Resources\RootCommandStrings.Designer.cs (1)
72global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.RootCommandStrings", typeof(RootCommandStrings).Assembly);
Aspire.Cli.Tests (1)
CliBootstrapTests.cs (1)
289var expectedStatus = string.Format(CultureInfo.CurrentCulture, RootCommandStrings.WaitingForDebugger, Environment.ProcessId);