30 references to DoctorCommandStrings
aspire (30)
Commands\DoctorCommand.cs (10)
24Description = DoctorCommandStrings.JsonOptionDescription 35: base("doctor", DoctorCommandStrings.Description, features, updateNotifier, executionContext, interactionService, telemetry) 49DoctorCommandStrings.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)
41global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.DoctorCommandStrings", typeof(DoctorCommandStrings).Assembly);
Utils\EnvironmentChecker\DevCertsCheck.cs (19)
20private static readonly string s_trustFixCommand = string.Format(CultureInfo.InvariantCulture, DoctorCommandStrings.DevCertsTrustFixFormat, "aspire certs trust"); 21private static readonly string s_cleanAndTrustFixCommand = string.Format(CultureInfo.InvariantCulture, DoctorCommandStrings.DevCertsCleanAndTrustFixFormat, "aspire certs clean", "aspire certs trust"); 61Message = DoctorCommandStrings.DevCertsNoCertificateMessage, 62Details = DoctorCommandStrings.DevCertsNoCertificateDetails, 88CertificateManager.TrustLevel.Full => $" {DoctorCommandStrings.DevCertsTrustLabelFull}", 89CertificateManager.TrustLevel.Partial => $" {DoctorCommandStrings.DevCertsTrustLabelPartial}", 102Message = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsMultipleNoneTrustedMessageFormat, certInfos.Count), 103Details = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsMultipleNoneTrustedDetailsFormat, certDetails), 116Message = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsMultipleSomeUntrustedMessageFormat, certInfos.Count), 117Details = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsMultipleSomeUntrustedDetailsFormat, certDetails), 131Message = DoctorCommandStrings.DevCertsTrustedMessage, 145Message = DoctorCommandStrings.DevCertsNotTrustedMessage, 146Details = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsNotTrustedDetailsFormat, cert.Thumbprint ?? "unknown"), 161Message = DoctorCommandStrings.DevCertsPartiallyTrustedMessage, 162Details = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsPartiallyTrustedDetailsFormat, devCertsTrustPath), 163Fix = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsPartiallyTrustedFixFormat, BuildSslCertDirFixCommand(devCertsTrustPath)), 176Message = DoctorCommandStrings.DevCertsTrustedMessage, 190Message = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsOldVersionMessageFormat, versions), 191Details = string.Format(CultureInfo.CurrentCulture, DoctorCommandStrings.DevCertsOldVersionDetailsFormat, CertificateManager.CurrentMinimumAspNetCoreCertificateVersion),