public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .UseWindowsService() .ConfigureLogging((context, logging) => { logging.AddEventLog(new EventLogSettings() { SourceName = "MySource", LogName = "MyLogName" }); }) .ConfigureServices((hostContext,...