상속: AbstractApplicationRunner
예제 #1
0
        public static void Main(string[] args)
        {
            var help = ConsoleAppHelper.ListHelpContents();

            var helpCommands = help.Where(content => ! content.Ignored).Select(content => content.Command);

            var app = new ConsoleAppRunner(
                BuildKernel(args, help),
                helpCommands.Concat(helpCommands.Select(command => "help " + command))
            );
            app.Run();
        }
예제 #2
0
        public static void Main(string[] args)
        {
            var help = ConsoleAppHelper.ListHelpContents();

            var helpCommands = help.Where(content => !content.Ignored).Select(content => content.Command);

            var app = new ConsoleAppRunner(
                BuildKernel(args, help),
                helpCommands.Concat(helpCommands.Select(command => "help " + command))
                );

            app.Run();
        }