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