summaryrefslogtreecommitdiff
path: root/vsprojects/Service/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'vsprojects/Service/Program.cs')
-rw-r--r--vsprojects/Service/Program.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/vsprojects/Service/Program.cs b/vsprojects/Service/Program.cs
new file mode 100644
index 00000000..579e5bfe
--- /dev/null
+++ b/vsprojects/Service/Program.cs
@@ -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());
+ }
+ }
+}