Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            var log     = log4net.LogManager.GetLogger("TestHarness");
            var service = new PollingService(log);
            var ep      = new ServiceEntryPoint(log, service, args);

            ep.Start();
        }
Ejemplo n.º 2
0
        public static void Main(string[] args)
        {
            var service = new WindowsServiceMock(@"Mock McAfee Service", "Mock Service for Unitest");

            if (args.Length > 0 && !args[0].StartsWith("/"))
            {
                Console.WriteLine("Pleae run it with /d to debug, /i to install it as a service, or /u to uninstall it");
                Console.ReadLine();
                return;
            }
            else
            {
                ServiceEntryPoint entry = new ServiceEntryPoint(service);
                entry.EnterService(args);
            }
        }
Ejemplo n.º 3
0
        static void Main(string[] args)
        {
            const string serviceName = @"MCU release automation monitor";

            _logger = LogManager.GetLogger(@"Default");
            log4net.Config.XmlConfigurator.Configure();

            var service = new McuAutomationMonitorService(serviceName, @"Mcu release automation serive monitor", _logger);

            if (args.Length > 0 && !args[0].StartsWith("/"))
            {
                Console.WriteLine("Pleae run it with /d to debug, /i to install it as a service, or /u to uninstall it");
                Console.ReadLine();
                return;
            }
            else
            {
                ServiceEntryPoint entry = new ServiceEntryPoint(service);
                entry.EnterService(args);
            }
        }