markus / ConvertService / ServiceBase / Markus.Service.Monitor / ProjectInstaller.cs @ f3c48db7
이력 | 보기 | 이력해설 | 다운로드 (1.07 KB)
1 |
using log4net; |
---|---|
2 |
using System; |
3 |
using System.Collections; |
4 |
using System.Collections.Generic; |
5 |
using System.ComponentModel; |
6 |
using System.Configuration.Install; |
7 |
using System.Linq; |
8 |
using System.Threading.Tasks; |
9 |
|
10 |
namespace Markus.Service.MonitorService |
11 |
{ |
12 |
[RunInstaller(true)] |
13 |
public partial class ProjectInstaller : System.Configuration.Install.Installer |
14 |
{ |
15 |
public ProjectInstaller() |
16 |
{ |
17 |
InitializeComponent(); |
18 |
} |
19 |
protected ILog logger = LogManager.GetLogger(typeof(ProjectInstaller)); |
20 |
|
21 |
protected override void OnBeforeInstall(IDictionary savedState) |
22 |
{ |
23 |
base.OnBeforeInstall(savedState); |
24 |
} |
25 |
|
26 |
protected override void OnAfterInstall(IDictionary savedState) |
27 |
{ |
28 |
base.OnAfterInstall(savedState); |
29 |
} |
30 |
|
31 |
protected override void OnCommitting(IDictionary savedState) |
32 |
{ |
33 |
base.OnCommitting(savedState); |
34 |
} |
35 |
|
36 |
protected override void OnBeforeUninstall(IDictionary savedState) |
37 |
{ |
38 |
base.OnBeforeUninstall(savedState); |
39 |
} |
40 |
} |
41 |
} |