Ejemplo n.º 1
0
        private static void Main(string[] args)
        {
            Directory.CreateDirectory(Env.Get("${ABANU_LOGDIR}"));

            if (args.Length == 0 && Debugger.IsAttached)
            {
                //Verb("build assembly");
                Verb("build --native --bin=all");
                Verb("build --image");
                Verb("run --emulator=qemu --boot=direct");
            }
            else
            {
                Verb(CommandArgs.FromCommandlineArguments(args));
            }

            if (Debugger.IsAttached)
            {
                Console.WriteLine("Press any key to continue");
                Console.ReadKey();
            }
        }