From a6d5a3eb72cc6fa66f36c828fd0d54bd52c63888 Mon Sep 17 00:00:00 2001 From: AliveDevil Date: Thu, 8 Feb 2024 01:22:32 +0100 Subject: [PATCH] Unused --- app/InkForge.Desktop/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/InkForge.Desktop/Program.cs b/app/InkForge.Desktop/Program.cs index 23e8531..bb5a5f0 100644 --- a/app/InkForge.Desktop/Program.cs +++ b/app/InkForge.Desktop/Program.cs @@ -16,7 +16,7 @@ static class Program [STAThread] public static void Main(string[] args) => BuildAvaloniaApp() - .UseMicrosoftDependencyInjection(args) + .UseMicrosoftDependencyInjection() .StartWithClassicDesktopLifetime(args); public static AppBuilder BuildAvaloniaApp() @@ -56,7 +56,7 @@ static class Program dispatcher.ShutdownFinished += (_, _) => serviceProvider.Dispose(); } - private static AppBuilder UseMicrosoftDependencyInjection(this AppBuilder builder, string[] args) + private static AppBuilder UseMicrosoftDependencyInjection(this AppBuilder builder) { ServiceCollection services = []; ConfigureServices(services);