1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-16 07:23:31 +00:00

stub out projects for the solution

This commit is contained in:
Kyle Spearrin
2017-05-11 21:50:13 -04:00
parent e5f3b30edd
commit 3de0755fb3
25 changed files with 2067 additions and 0 deletions

20
src/Service/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
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 ServiceBase[]
{
new Service()
});
}
}
}