Windows Service stubs...

This commit is contained in:
Adam Ierymenko 2014-01-20 17:03:15 -08:00
parent 6bc5a84a2d
commit f0dd90d9d7
10 changed files with 407 additions and 3 deletions

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace ZeroTierOneService
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Service()
};
ServiceBase.Run(ServicesToRun);
}
}
}