示例#1
0
文件: Program.cs 项目: zmjack/Native
        static void Main(string[] args)
        {
            CommandContainer = new CommandContainer("pi", ProjectInfo.GetCurrent());
            CommandContainer.CacheCommands(Assembly.GetExecutingAssembly());

            PrintWelcome();

            CommandContainer.PrintProjectInfo();
            CommandContainer.Run(args);
        }
示例#2
0
文件: Program.cs 项目: zmjack/Dawnx
        static void Main(string[] args)
        {
            Http.RegisterSystemLogin(true);
            Http.RegisterProxy(true);

            CommandContainer = new CommandContainer("nx", ProjectInfo.GetCurrent());
            CommandContainer.CacheCommands(Assembly.GetExecutingAssembly());

            PrintWelcome();
            CheckDownloadDirectory();

            CommandContainer.PrintProjectInfo();
            CommandContainer.Run(args);
        }