示例#1
0
        static async Task Main(string[] args)
        {
            var buildType = "";

#if DEBUG
            buildType = "Debug";
#else
            buildType = "Release";
#endif
            await ProgramBase.InitAsync(CreateHostBuilder, buildType, args);
        }