Files
Samuele E. Locatelli b991c15137 vers 2.2.153
Contiene schedulatore
Modifiche x timeout comandi SQL
2014-11-21 12:33:43 +01:00

25 lines
525 B
C#

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