24 references to SecretCommandStrings
aspire (24)
Commands\SecretCommand.cs (1)
24: base("secret", SecretCommandStrings.Description, services)
Commands\SecretDeleteCommand.cs (5)
19Description = SecretCommandStrings.KeyDeleteArgumentDescription 27: base("delete", SecretCommandStrings.DeleteDescription, services) 44return CommandResult.Failure(CliExitCodes.FailedToFindProject, SecretCommandStrings.CouldNotFindAppHost); 49return CommandResult.Failure(CliExitCodes.ConfigNotFound, string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretNotFound, key.EscapeMarkup())); 53InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretDeleteSuccess, key));
Commands\SecretGetCommand.cs (4)
20Description = SecretCommandStrings.KeyRetrieveArgumentDescription 28: base("get", SecretCommandStrings.GetDescription, services) 45return CommandResult.Failure(CliExitCodes.FailedToFindProject, SecretCommandStrings.CouldNotFindAppHost); 51return CommandResult.Failure(CliExitCodes.ConfigNotFound, string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretNotFound, key.EscapeMarkup()));
Commands\SecretListCommand.cs (6)
22Description = SecretCommandStrings.FormatOptionDescription 30: base("list", SecretCommandStrings.ListDescription, services) 46return CommandResult.Failure(CliExitCodes.FailedToFindProject, SecretCommandStrings.CouldNotFindAppHost); 68InteractionService.DisplayMessage(KnownEmojis.Information, SecretCommandStrings.NoSecretsConfigured); 73table.AddBoldColumn(SecretCommandStrings.KeyColumnHeader, noWrap: true); 74table.AddBoldColumn(SecretCommandStrings.ValueColumnHeader);
Commands\SecretPathCommand.cs (2)
21: base("path", SecretCommandStrings.PathDescription, services) 35return CommandResult.Failure(CliExitCodes.FailedToFindProject, SecretCommandStrings.CouldNotFindAppHost);
Commands\SecretSetCommand.cs (5)
18Description = SecretCommandStrings.KeyArgumentDescription 23Description = SecretCommandStrings.ValueArgumentDescription 31: base("set", SecretCommandStrings.SetDescription, services) 52return CommandResult.Failure(CliExitCodes.FailedToFindProject, SecretCommandStrings.CouldNotFindAppHost); 58InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretSetSuccess, key));
Resources\SecretCommandStrings.Designer.cs (1)
8private static readonly System.Resources.ResourceManager s_resourceManager = new("Aspire.Cli.Resources.SecretCommandStrings", typeof(SecretCommandStrings).Assembly);