You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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);
|
|
}
|
|
}
|
|
}
|
|
|