개정판 f22054ff
Markus Monitor Service 추가
Change-Id: I384e98ba411d84c908a21d9afac31f936abf7670
ConvertService/ServiceBase/Markus.Service.Monitor/ProjectInstaller.cs | ||
---|---|---|
1 |
using System; |
|
1 |
using log4net; |
|
2 |
using System; |
|
2 | 3 |
using System.Collections; |
3 | 4 |
using System.Collections.Generic; |
4 | 5 |
using System.ComponentModel; |
... | ... | |
15 | 16 |
{ |
16 | 17 |
InitializeComponent(); |
17 | 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 |
} |
|
18 | 40 |
} |
19 | 41 |
} |
내보내기 Unified diff