1234567891011121314151617181920 |
- using System.ServiceProcess;
- namespace Vinno.FIS.Sonopost.Service
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- static void Main()
- {
- ServiceBase[] ServicesToRun;
- ServicesToRun = new ServiceBase[]
- {
- new SonopostService()
- };
- ServiceBase.Run(ServicesToRun);
- }
- }
- }
|