using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.ServiceProcess; using System.Text; namespace Getf.Service.Transfer.Client { static class Program { /// /// 应用程序的主入口点。 /// static void Main() { log4net.Config.XmlConfigurator.Configure(new FileInfo(Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "log4net.config"))); ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new Service1() }; ServiceBase.Run(ServicesToRun); } } }