Forgot to add new files in previous commit.

This commit is contained in:
Adam Ierymenko 2013-08-29 12:36:24 -04:00
parent 6882c374c9
commit 1bd3cd4225
17 changed files with 844 additions and 0 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace Service
{
static class Program
{
static void Main()
{
ServiceBase.Run(new ZeroTierOneService());
}
}
}