// Copyright (c) 2020-present schick Informatik // Description: using System; using System.Collections.Generic; using System.Linq; using System.ServiceProcess; using System.Text; using System.Threading.Tasks; namespace bsmd.POService { internal static class Program { /// /// The main entry point for the application. /// public static void Main() { ServiceBase[] ServicesToRun; log4net.Config.XmlConfigurator.Configure(); ServicesToRun = new ServiceBase[] { new POService() }; ServiceBase.Run(ServicesToRun); } } }