Projektdateien hinzufügen.

This commit is contained in:
2020-02-22 11:51:21 +01:00
parent 95286199fb
commit 90544956bb
7 changed files with 217 additions and 0 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 KatekTracability
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new KatekTracability()
};
ServiceBase.Run(ServicesToRun);
}
}
}