Files

21 lines
480 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.ServiceProcess;
namespace DTS.Common.Service
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// InstallUtil.exe “WindowService.exe”
/// </summary>
static void Main()
{
var servicesToRun = new ServiceBase[]
{
new DTSService()
};
ServiceBase.Run(servicesToRun);
}
}
}