22 references to SecretCommandStrings
aspire (22)
Commands\SecretCommand.cs (1)
33: base("secret", SecretCommandStrings.Description, features, updateNotifier, executionContext, interactionService, telemetry)
Commands\SecretDeleteCommand.cs (5)
23Description = SecretCommandStrings.KeyDeleteArgumentDescription 35: base("delete", SecretCommandStrings.DeleteDescription, features, updateNotifier, executionContext, interactionService, telemetry) 52InteractionService.DisplayError(SecretCommandStrings.CouldNotFindAppHost); 58InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretNotFound, key.EscapeMarkup())); 63InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretDeleteSuccess, key));
Commands\SecretGetCommand.cs (4)
23Description = SecretCommandStrings.KeyRetrieveArgumentDescription 35: base("get", SecretCommandStrings.GetDescription, features, updateNotifier, executionContext, interactionService, telemetry) 52InteractionService.DisplayError(SecretCommandStrings.CouldNotFindAppHost); 59InteractionService.DisplayError(string.Format(CultureInfo.CurrentCulture, SecretCommandStrings.SecretNotFound, key.EscapeMarkup()));
Commands\SecretListCommand.cs (6)
24Description = SecretCommandStrings.FormatOptionDescription 36: base("list", SecretCommandStrings.ListDescription, features, updateNotifier, executionContext, interactionService, telemetry) 52InteractionService.DisplayError(SecretCommandStrings.CouldNotFindAppHost); 73InteractionService.DisplayMessage(KnownEmojis.Information, SecretCommandStrings.NoSecretsConfigured); 78table.AddBoldColumn(SecretCommandStrings.KeyColumnHeader, noWrap: true); 79table.AddBoldColumn(SecretCommandStrings.ValueColumnHeader);
Commands\SecretSetCommand.cs (5)
22Description = SecretCommandStrings.KeyArgumentDescription 27Description = SecretCommandStrings.ValueArgumentDescription 39: base("set", SecretCommandStrings.SetDescription, features, updateNotifier, executionContext, interactionService, telemetry) 60InteractionService.DisplayError(SecretCommandStrings.CouldNotFindAppHost); 67InteractionService.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);