websitepanel/WebsitePanel/Sources/WebsitePanel.SchedulerService/Program.cs
2013-04-30 10:47:34 +03:00

24 lines
542 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace WebsitePanel.SchedulerService
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new SchedulerService()
};
ServiceBase.Run(ServicesToRun);
}
}
}