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