feat(Program.cs): Hosting-Unterstützung zu CommandManagerRunner hinzufügen

- Einführung von `Microsoft.Extensions.Hosting` in `DependencyInjection.cs`.
- Überladung für `RunCommandManagerRunner` hinzugefügt, um `IHost` zu akzeptieren.
- Aktualisiert `Program.cs`, um die neue Methode `RunCommandManagerRunner` zu verwenden.
This commit is contained in:
Developer 02
2025-04-14 13:18:50 +02:00
parent e171b50868
commit 54c17f106e
2 changed files with 4 additions and 1 deletions

View File

@@ -14,6 +14,6 @@ public class Program
var app = builder.Build();
return await app.Services.RunCommandManagerRunner(args);
return await app.RunCommandManagerRunner(args);
}
}