Ejemplo n.º 1
0
        public static int Main(string[] args)
        {
            CleanerTool tool = new CleanerTool();

            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);
            }
        }
Ejemplo n.º 2
0
        public static int Main(string[] args)
        {
            CleanerTool tool = new CleanerTool();

            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;
            }
        }