markus / ConvertService / ServiceBase / Markus.Service.Monitor / Program.cs @ a9e86f7a
이력 | 보기 | 이력해설 | 다운로드 (585 Bytes)
1 | 53c9637d | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.ServiceProcess; |
||
5 | using System.Text; |
||
6 | using System.Threading.Tasks; |
||
7 | |||
8 | namespace Markus.Service.MonitorService |
||
9 | { |
||
10 | static class Program |
||
11 | { |
||
12 | /// <summary> |
||
13 | /// 해당 응용 프로그램의 주 진입점입니다. |
||
14 | /// </summary> |
||
15 | static void Main() |
||
16 | { |
||
17 | ServiceBase[] ServicesToRun; |
||
18 | ServicesToRun = new ServiceBase[] |
||
19 | { |
||
20 | new ServiceMonitor() |
||
21 | }; |
||
22 | ServiceBase.Run(ServicesToRun); |
||
23 | } |
||
24 | } |
||
25 | } |