Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Options options = ProcessCommandLine(args);
            if (options == null)
            {
                ShowHelp();
                return;
            }

            var processor = new SiteProcessor();

            processor.Process(Directory.GetCurrentDirectory(), options);
        }