コード例 #1
0
        public static void Main(string[] args)
        {
            System.Console.WriteLine("IMI Supply Chain Application Server");
            System.Console.WriteLine(string.Format("Version {0}", Assembly.GetExecutingAssembly().GetName().Version));
            System.Console.WriteLine("Copyright (c) Aptean\n");

            CommandLineParser cmd      = new CommandLineParser(args);
            string            instance = cmd["SystemId"];

            if (String.IsNullOrEmpty(instance))
            {
                instance = ConfigurationManager.AppSettings["SystemId"];
            }

            if (String.IsNullOrEmpty(instance))
            {
                System.Console.WriteLine(string.Format("Error 0x0001 - No SystemId was supplied.\nUsage: {0} /SystemId <SystemId>",
                                                       Path.GetFileName(Assembly.GetExecutingAssembly().Location)));

                System.Console.ReadKey();

                return;
            }

            ConsoleHost host = new ConsoleHost(instance);

            host.StartServer();
        }