markus / MarkusLogview / SignalR_Server_Watcher / Program.cs @ 84578b97
이력 | 보기 | 이력해설 | 다운로드 (579 Bytes)
1 |
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 SignalR_Server_Watcher |
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 SignalR_Watcher() |
21 |
}; |
22 |
ServiceBase.Run(ServicesToRun); |
23 |
} |
24 |
} |
25 |
} |