示例#1
0
        public static void Main(string[] args)
        {
            LegacyDifficultyCalculatorBeatmapDecoder.Register();
            ServicePointManager.DefaultConnectionLimit = 128;

            CommandLineApplication.Execute <Program>(args);
        }
示例#2
0
文件: Program.cs 项目: osuHOW/lets
        public static void Main(string[] args)
        {
            LegacyDifficultyCalculatorBeatmapDecoder.Register();

            Logger.Enabled = false;
            CommandLineApplication.Execute <Program>(args);
        }
示例#3
0
        public static void Main(string[] args)
        {
            CultureInfo.CurrentCulture = new CultureInfo("en-US", false);
            LegacyDifficultyCalculatorBeatmapDecoder.Register();

            Logger.Enabled = false;
            CommandLineApplication.Execute <Program>(args);
        }
示例#4
0
文件: Program.cs 项目: ppy/osu-tools
        public static void Main(string[] args)
        {
            Console.OutputEncoding = Encoding.UTF8;
            Logger.Enabled         = false;

            LegacyDifficultyCalculatorBeatmapDecoder.Register();

            CommandLineApplication.Execute <Program>(args);
        }