コード例 #1
0
ファイル: Program.cs プロジェクト: ewin66/WindNight.NetFx
        private static void Main(string[] args)
        {
            var buildType = "";

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