Newer
Older
using System.ServiceProcess;
namespace HaaSMiddleware.MiddlewareService
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new MiddlewareService()
};
ServiceBase.Run(ServicesToRun);
}
}
}