From 5c0d4a1325cd8f9d49c55d6faacbc3802e86580b Mon Sep 17 00:00:00 2001 From: Gerald Versluis Date: Wed, 22 Oct 2025 15:56:40 +0200 Subject: [PATCH] Change Warn state string from 'warn' to 'warning' --- src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs b/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs index 8b5ed22cd3c..7e40b2e8b2f 100644 --- a/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs +++ b/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs @@ -353,7 +353,7 @@ public static class KnownResourceStateStyles /// /// The warn state. Useful for showing warnings. /// - public static readonly string Warn = "warn"; + public static readonly string Warn = "warning"; } ///