static async Task Main(string[] args) { var buildType = ""; #if DEBUG buildType = "Debug"; #else buildType = "Release"; #endif await ProgramBase.InitAsync(CreateHostBuilder, buildType, args); }