From a30c7051ae9a9a197db384e6123944ddafb10a16 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 7 Mar 2026 20:46:30 +0000
Subject: [PATCH 1/2] Initial plan
From 08c7da1a7d6a0083d9fe658c685f371ef7355938 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 7 Mar 2026 20:52:36 +0000
Subject: [PATCH 2/2] Replace dotnet dev-certs command references with
aka.ms/aspire/devcerts link
Co-authored-by: danegsta <50252651+danegsta@users.noreply.github.com>
---
src/Aspire.Hosting/Dcp/DcpHost.cs | 14 +++-----------
.../Resources/InteractionStrings.Designer.cs | 4 ++--
.../Resources/InteractionStrings.resx | 4 ++--
.../Resources/xlf/InteractionStrings.cs.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.de.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.es.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.fr.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.it.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.ja.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.ko.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.pl.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.pt-BR.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.ru.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.tr.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.zh-Hans.xlf | 8 ++++----
.../Resources/xlf/InteractionStrings.zh-Hant.xlf | 8 ++++----
16 files changed, 59 insertions(+), 67 deletions(-)
diff --git a/src/Aspire.Hosting/Dcp/DcpHost.cs b/src/Aspire.Hosting/Dcp/DcpHost.cs
index a4973aedc00..85b72c68044 100644
--- a/src/Aspire.Hosting/Dcp/DcpHost.cs
+++ b/src/Aspire.Hosting/Dcp/DcpHost.cs
@@ -3,7 +3,6 @@
using System.Buffers;
using System.Collections;
-using System.Globalization;
using System.IO.Pipelines;
using System.Net.Sockets;
using System.Text;
@@ -154,27 +153,20 @@ internal async Task EnsureDevelopmentCertificateTrustAsync(CancellationToken can
if (hasNoTrustedCerts || hasNewerUntrustedCert)
{
- var trustLocation = "your project folder";
- var appHostDirectory = _configuration["AppHost:Directory"];
- if (!string.IsNullOrWhiteSpace(appHostDirectory))
- {
- trustLocation = $"'{appHostDirectory}'";
- }
-
string title;
string message;
if (hasNoTrustedCerts)
{
title = InteractionStrings.NoDeveloperCertificateTrustedTitle;
- message = string.Format(CultureInfo.CurrentCulture, InteractionStrings.NoDeveloperCertificateTrustedMessage, trustLocation);
+ message = InteractionStrings.NoDeveloperCertificateTrustedMessage;
_logger.LogWarning("No trusted Aspire development certificate was found. See https://aka.ms/aspire/devcerts for more information.");
}
else
{
title = InteractionStrings.DeveloperCertificateNotFullyTrustedTitle;
- message = string.Format(CultureInfo.CurrentCulture, InteractionStrings.DeveloperCertificateNotFullyTrustedMessage, trustLocation);
- _logger.LogWarning("The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {TrustLocation} to trust the certificate.", trustLocation);
+ message = InteractionStrings.DeveloperCertificateNotFullyTrustedMessage;
+ _logger.LogWarning("The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.");
}
// Check if the interaction service is available (dashboard enabled)
diff --git a/src/Aspire.Hosting/Resources/InteractionStrings.Designer.cs b/src/Aspire.Hosting/Resources/InteractionStrings.Designer.cs
index 7eac60e6d02..db0ca2f5c28 100644
--- a/src/Aspire.Hosting/Resources/InteractionStrings.Designer.cs
+++ b/src/Aspire.Hosting/Resources/InteractionStrings.Designer.cs
@@ -115,7 +115,7 @@ internal static string DeveloperCertificateNotFullyTrustedTitle {
}
///
- /// The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate..
+ /// The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information..
///
internal static string DeveloperCertificateNotFullyTrustedMessage {
get {
@@ -133,7 +133,7 @@ internal static string NoDeveloperCertificateTrustedTitle {
}
///
- /// No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate..
+ /// No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information..
///
internal static string NoDeveloperCertificateTrustedMessage {
get {
diff --git a/src/Aspire.Hosting/Resources/InteractionStrings.resx b/src/Aspire.Hosting/Resources/InteractionStrings.resx
index 69dce6f9d1c..f5927dee4a1 100644
--- a/src/Aspire.Hosting/Resources/InteractionStrings.resx
+++ b/src/Aspire.Hosting/Resources/InteractionStrings.resx
@@ -188,13 +188,13 @@
Development certificate not fully trusted
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.No trusted development certificate
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.Set parameter
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.cs.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.cs.xlf
index e28dfc9c203..02e1409443e 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.cs.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.cs.xlf
@@ -67,8 +67,8 @@ Hodnota je aktuálně uložena v [tajných klíčích uživatele](https://learn.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ Hodnota je aktuálně uložena v [tajných klíčích uživatele](https://learn.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.de.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.de.xlf
index b103193b8f2..fedb1a22b2f 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.de.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.de.xlf
@@ -67,8 +67,8 @@ Der Wert wird derzeit in [Benutzergeheimnissen](https://learn.microsoft.com/aspn
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ Der Wert wird derzeit in [Benutzergeheimnissen](https://learn.microsoft.com/aspn
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.es.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.es.xlf
index d6cd6e43b5c..5cffbed4ffc 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.es.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.es.xlf
@@ -67,8 +67,8 @@ El valor se guarda actualmente en [secretos de usuario](https://learn.microsoft.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ El valor se guarda actualmente en [secretos de usuario](https://learn.microsoft.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.fr.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.fr.xlf
index 0cc853303ca..0dbc88689f0 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.fr.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.fr.xlf
@@ -67,8 +67,8 @@ La valeur est actuellement enregistrée dans [secrets utilisateur](https://learn
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ La valeur est actuellement enregistrée dans [secrets utilisateur](https://learn
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.it.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.it.xlf
index 9e118dbce0a..45fef7372b8 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.it.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.it.xlf
@@ -67,8 +67,8 @@ Il valore è attualmente salvato nei [segreti utente](https://learn.microsoft.co
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ Il valore è attualmente salvato nei [segreti utente](https://learn.microsoft.co
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ja.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ja.xlf
index f1a782c4ea2..9ae07f2c5e2 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ja.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ja.xlf
@@ -67,8 +67,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ko.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ko.xlf
index afdefaeac82..36963a7ebe4 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ko.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ko.xlf
@@ -67,8 +67,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pl.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pl.xlf
index c8a993143ac..3024498c087 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pl.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pl.xlf
@@ -67,8 +67,8 @@ Wartość jest obecnie zapisana we [wpisach tajnych użytkownika](https://learn.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ Wartość jest obecnie zapisana we [wpisach tajnych użytkownika](https://learn.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pt-BR.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pt-BR.xlf
index 38a694ed397..afbca8ba758 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pt-BR.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.pt-BR.xlf
@@ -67,8 +67,8 @@ O valor está atualmente salvo em [segredos do usuário](https://learn.microsof
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ O valor está atualmente salvo em [segredos do usuário](https://learn.microsof
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ru.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ru.xlf
index cf470065369..e79546fead3 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ru.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.ru.xlf
@@ -67,8 +67,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.tr.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.tr.xlf
index 61e54911abc..53c97bae7ff 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.tr.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.tr.xlf
@@ -67,8 +67,8 @@ Değer şu anda [kullanıcı gizli dizinleri](https://learn.microsoft.com/aspnet
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ Değer şu anda [kullanıcı gizli dizinleri](https://learn.microsoft.com/aspnet
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hans.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hans.xlf
index 77e008e9dfa..48dae2b30d7 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hans.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hans.xlf
@@ -67,8 +67,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
diff --git a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hant.xlf b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hant.xlf
index 3ff21f94e25..63c0fa0d4f7 100644
--- a/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hant.xlf
+++ b/src/Aspire.Hosting/Resources/xlf/InteractionStrings.zh-Hant.xlf
@@ -67,8 +67,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- The most recent ASP.NET Core Development Certificate isn't fully trusted. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
+ The most recent ASP.NET Core Development Certificate isn't fully trusted. See https://aka.ms/aspire/devcerts for more information.
@@ -77,8 +77,8 @@ The value is currently saved in [user secrets](https://aka.ms/aspire/user-secret
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
- No trusted ASP.NET Core Development Certificate was found. Run `dotnet dev-certs https --trust` from {0} to trust the certificate.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.
+ No trusted ASP.NET Core Development Certificate was found. See https://aka.ms/aspire/devcerts for more information.