/// <summary>
        ///
        /// </summary>
        private static void Main()
        {
            var rgx          = new Regex(@"(?<P>[^\s\""]+)|(\""(?<P>.*?)\"")", RegexOptions.Singleline);
            var runAsConsole = rgx.Matches(Environment.CommandLine)
                               .Cast <Match>()
                               .Select(m => m.Groups["P"].Value)
                               .Where(arg => string.Compare(arg, "-console", true) == 0 ||
                                      string.Compare(arg, "console", true) == 0 ||
                                      string.Compare(arg, "-c", true) == 0)
                               .Any();

            if (runAsConsole)
            {
                var lingvisticServer = new LingvisticsServer();
                lingvisticServer.Start();
                //Thread.Sleep( Timeout.Infinite );
                Console.WriteLine("[......push Enter for exit......]");
                Console.ReadLine();
                lingvisticServer.Stop();
                Console.WriteLine("[......exit in progress......]");
            }
            else
            {
                ServiceBase.Run(new LingvisticsServer());
            }
        }
Beispiel #2
0
        /// <summary>
        ///
        /// </summary>
        private static void Main()
        {
            var rgx = new Regex(@"(?<P>[^\s\""]+)|(\""(?<P>.*?)\"")", RegexOptions.Singleline);

            string[] argv = rgx.Matches(Environment.CommandLine)
                            .Cast <Match>()
                            .Select(m => m.Groups["P"].Value)
                            .ToArray();

            if ((1 < argv.Length) && (string.Compare(argv[1], "console", true) == 0))
            {
                var lingvisticServer = new LingvisticsServer();
                lingvisticServer.Start();
                //Thread.Sleep( Timeout.Infinite );
                Console.WriteLine("[......push Enter for exit......]");
                Console.ReadLine();
                lingvisticServer.Stop();
                Console.WriteLine("[......exit in progress......]");
            }
            else
            {
                var servicesToRun = new[] { new LingvisticsServer() };
                ServiceBase.Run(servicesToRun);
            }
        }