From a22a5328f50b72354637b6405ae122b11f53ed0f Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 9 Jul 2022 22:25:18 +0200 Subject: [PATCH] Ignore not initialized warning --- I18N Commander/UI WinForms/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I18N Commander/UI WinForms/Program.cs b/I18N Commander/UI WinForms/Program.cs index ca12ea2..5c21401 100644 --- a/I18N Commander/UI WinForms/Program.cs +++ b/I18N Commander/UI WinForms/Program.cs @@ -8,7 +8,7 @@ namespace UI_WinForms; internal static class Program { internal const string VERSION = "v0.1.0"; - internal static IServiceProvider SERVICE_PROVIDER; + internal static IServiceProvider SERVICE_PROVIDER = null!; [STAThread] private static void Main()