15 references to CertificatesCommandStrings
aspire (15)
Certificates\CertificateService.cs (1)
139interactionService.DisplayMessage(KnownEmojis.Warning, CertificatesCommandStrings.TrustCancelled);
Commands\CertificatesCleanCommand.cs (6)
20: base("clean", CertificatesCommandStrings.CleanDescription, services) 27InteractionService.DisplayMessage(KnownEmojis.Information, CertificatesCommandStrings.CleanProgress); 33InteractionService.DisplaySuccess(CertificatesCommandStrings.CleanSuccess); 39InteractionService.DisplayMessage(KnownEmojis.Warning, CertificatesCommandStrings.CleanCancelled); 43var details = string.Format(CultureInfo.CurrentCulture, CertificatesCommandStrings.CleanFailureDetailsFormat, result.ErrorMessage); 45InteractionService.DisplayError(CertificatesCommandStrings.CleanFailure);
Commands\CertificatesCommand.cs (1)
14: base("certs", CertificatesCommandStrings.Description, services)
Commands\CertificatesTrustCommand.cs (6)
22: base("trust", CertificatesCommandStrings.TrustDescription, services) 29InteractionService.DisplayMessage(KnownEmojis.Information, CertificatesCommandStrings.TrustProgress); 37InteractionService.DisplayMessage(KnownEmojis.Warning, CertificatesCommandStrings.TrustPartialSuccess); 41InteractionService.DisplaySuccess(CertificatesCommandStrings.TrustSuccess); 52var details = string.Format(CultureInfo.CurrentCulture, CertificatesCommandStrings.TrustFailureDetailsFormat, result.ResultCode); 53return CommandResult.Failure(CliExitCodes.FailedToTrustCertificates, $"{CertificatesCommandStrings.TrustFailure} {details}");
Resources\CertificatesCommandStrings.Designer.cs (1)
38global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.CertificatesCommandStrings", typeof(CertificatesCommandStrings).Assembly);