1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| using CommonUtil;
| using ScheduledTasks.Handle;
| using System;
|
| namespace ScheduledTasks
| {
| class Program
| {
| static void Main(string[] args)
| {
|
| JobStart();
| Console.ReadLine();
| }
|
| static void JobStart()
| {
| try
| {
| new Scheduler().Start().GetAwaiter().GetResult();
| }
| catch (Exception ex)
| {
| LogUtil.Error(ex);
| }
| }
| }
| }
|
|