30 references to DoctorCommandStrings
aspire (30)
Commands\DoctorCommand.cs (10)
24
Description =
DoctorCommandStrings
.JsonOptionDescription
35
: base("doctor",
DoctorCommandStrings
.Description, features, updateNotifier, executionContext, interactionService, telemetry)
49
DoctorCommandStrings
.CheckingPrerequisites,
92
_ansiConsole.MarkupLine($"[bold]{
DoctorCommandStrings
.EnvironmentCheckHeader}[/]");
93
_ansiConsole.WriteLine(new string('=',
DoctorCommandStrings
.EnvironmentCheckHeader.Length));
119
_ansiConsole.MarkupLine($"[bold]{string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.SummaryFormat, passed, warnings, failed)}[/]");
124
_ansiConsole.MarkupLine(
DoctorCommandStrings
.DetailedPrerequisitesLink);
190
"sdk" =>
DoctorCommandStrings
.SdkCategoryHeader,
191
"container" =>
DoctorCommandStrings
.ContainerCategoryHeader,
192
"environment" =>
DoctorCommandStrings
.EnvironmentCategoryHeader,
Resources\DoctorCommandStrings.Designer.cs (1)
41
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.DoctorCommandStrings", typeof(
DoctorCommandStrings
).Assembly);
Utils\EnvironmentChecker\DevCertsCheck.cs (19)
20
private static readonly string s_trustFixCommand = string.Format(CultureInfo.InvariantCulture,
DoctorCommandStrings
.DevCertsTrustFixFormat, "aspire certs trust");
21
private static readonly string s_cleanAndTrustFixCommand = string.Format(CultureInfo.InvariantCulture,
DoctorCommandStrings
.DevCertsCleanAndTrustFixFormat, "aspire certs clean", "aspire certs trust");
61
Message =
DoctorCommandStrings
.DevCertsNoCertificateMessage,
62
Details =
DoctorCommandStrings
.DevCertsNoCertificateDetails,
88
CertificateManager.TrustLevel.Full => $" {
DoctorCommandStrings
.DevCertsTrustLabelFull}",
89
CertificateManager.TrustLevel.Partial => $" {
DoctorCommandStrings
.DevCertsTrustLabelPartial}",
102
Message = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsMultipleNoneTrustedMessageFormat, certInfos.Count),
103
Details = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsMultipleNoneTrustedDetailsFormat, certDetails),
116
Message = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsMultipleSomeUntrustedMessageFormat, certInfos.Count),
117
Details = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsMultipleSomeUntrustedDetailsFormat, certDetails),
131
Message =
DoctorCommandStrings
.DevCertsTrustedMessage,
145
Message =
DoctorCommandStrings
.DevCertsNotTrustedMessage,
146
Details = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsNotTrustedDetailsFormat, cert.Thumbprint ?? "unknown"),
161
Message =
DoctorCommandStrings
.DevCertsPartiallyTrustedMessage,
162
Details = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsPartiallyTrustedDetailsFormat, devCertsTrustPath),
163
Fix = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsPartiallyTrustedFixFormat, BuildSslCertDirFixCommand(devCertsTrustPath)),
176
Message =
DoctorCommandStrings
.DevCertsTrustedMessage,
190
Message = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsOldVersionMessageFormat, versions),
191
Details = string.Format(CultureInfo.CurrentCulture,
DoctorCommandStrings
.DevCertsOldVersionDetailsFormat, CertificateManager.CurrentMinimumAspNetCoreCertificateVersion),