Ejemplo n.º 1
0
        private static void Main(string[] args)
        {
            try
            {
                Options = new CommandLineArguments(args);

                // if help has been requested then display and quit
                if (Options.HelpRequested)
                {
                    Console.WriteLine(Options.UsageMessage);
                    return;
                }

                // validate input parameters and exit if invalid
                var validationErrors = new List<string>();
                if (!Options.Validate(validationErrors))
                {
                    foreach (var error in validationErrors)
                        Console.WriteLine("Error. {0}", error);
                    return;
                }

                var controller = new ScriptController(Options);
                controller.Start();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
            }
            finally
            {
                // keep the window open if we're in debug so we can see what happened
            #if (DEBUG)
                Console.WriteLine("Hit enter to exit");
                Console.ReadLine();
            #endif
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 ///   Creates a new instance with the specified options set
 /// </summary>
 /// <param name = "options"></param>
 public ScriptController(CommandLineArguments options)
 {
     this.options = options;
 }