From b15042d1b06e96dddb06cbbb3c75977514a867b6 Mon Sep 17 00:00:00 2001 From: RieBi <42877671+RieBi@users.noreply.github.com> Date: Sat, 27 Jul 2024 08:54:57 +0200 Subject: [PATCH] Supress useless warning --- Api/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Api/Program.cs b/Api/Program.cs index 3e9e2b4..17c710b 100644 --- a/Api/Program.cs +++ b/Api/Program.cs @@ -52,4 +52,6 @@ await app.RunAsync(); +#pragma warning disable S1118 // Utility classes should not have public constructors public partial class Program { } +#pragma warning restore S1118 // Utility classes should not have public constructors