git_bsmd/nsw/Source/bsmd.POService/Program.cs

32 lines
723 B
C#

// 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
{
/// <summary>
/// The main entry point for the application.
/// </summary>
public static void Main()
{
ServiceBase[] ServicesToRun;
log4net.Config.XmlConfigurator.Configure();
ServicesToRun = new ServiceBase[]
{
new POService()
};
ServiceBase.Run(ServicesToRun);
}
}
}