Files
DnsServer/DnsService/Program.cs
2017-11-04 14:53:19 +05:30

21 lines
434 B
C#

using System.ServiceProcess;
namespace DnsService
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new DnsService()
};
ServiceBase.Run(ServicesToRun);
}
}
}