From 97d8cbe51754f1e07e3481f4fd261ca14e1c1f7c Mon Sep 17 00:00:00 2001 From: Tom Deseyn Date: Fri, 9 Jan 2026 09:59:50 +0100 Subject: [PATCH] App targets .NET 9 now, remove warning for earlier versions. --- src/linux-dev-certs/Program.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/linux-dev-certs/Program.cs b/src/linux-dev-certs/Program.cs index 3b735b9..0220ce2 100644 --- a/src/linux-dev-certs/Program.cs +++ b/src/linux-dev-certs/Program.cs @@ -29,10 +29,6 @@ Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("The development certificate was successfully installed."); - Console.ForegroundColor = ConsoleColor.Yellow; - Console.WriteLine("ASP.NET Core applications may still print a warning at startup that the developer certificate is not trusted."); - Console.WriteLine("This is a false warning. The message is no longer printed with ASP.NET Core 9 preview 6+."); - Console.ForegroundColor = color; } ctx.ExitCode = isSuccess ? 0 : 1;