Inheritance: AbstractApplicationRunner
Exemplo n.º 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();
        }
Exemplo n.º 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();
        }