20 lines
524 B
20 lines
524 B
using System.ServiceProcess;
|
|
|
|
namespace CompleteStatisticsService
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
static void Main()
|
|
{
|
|
QMFrameWork.Log.LogManager.Configure("log4net");
|
|
ServiceBase[] servicesToRun = new ServiceBase[]
|
|
{
|
|
new global::CompleteStatisticsService.CompleteStatisticsService()
|
|
};
|
|
ServiceBase.Run(servicesToRun);
|
|
}
|
|
}
|
|
}
|
|
|