Files
DP44/Common/DTS.Common.Service/.svn/pristine/6e/6ef69d90a779bd6534b855addda2192fbe933e74.svn-base
2026-04-17 14:55:32 -04:00

21 lines
480 B
Plaintext

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);
}
}
}