Exemple #1
0
        public static int Main(string[] args)
        {
            DoozerTool tool = new DoozerTool();

            try
            {
                tool.ProcessCommandLine(args);

                tool.Execute();
                return(tool.HasOutputErrors ? 1 : 0);
            }
            catch (Exception e)
            {
                while (e != null)
                {
                    ConsoleUtility.WriteMessage(MessageType.Error, e.Message);
                    e = e.InnerException;
                }
                return(1);
            }
        }
Exemple #2
0
        public static int Main(string[] args)
        {
            DoozerTool tool = new DoozerTool();

            try
            {
                tool.ProcessCommandLine(args);

                tool.Execute();
                return (tool.HasOutputErrors ? 1 : 0);
            }
            catch (Exception e)
            {
                while (e != null)
                {
                    ConsoleUtility.WriteMessage(MessageType.Error, e.Message);
                    e = e.InnerException;
                }
                return 1;
            }
        }