예제 #1
0
        private static void RepeatMain(string[] args)
        {
            var input = string.Join("", args);

            while (input is not null)
            {
                CommandSource.Run <CliRoot>(input);
                Console.WriteLine("Enter something:");
                input = Console.ReadLine();
            }
        }
예제 #2
0
 static void Main(string[] args)
 {
     CommandSource.Run <DotnetCommand>(args);
 }
예제 #3
0
 static int Main_Simplest(string[] args)
 => CommandSource.Run <CliRoot>(args);