프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / Markus.Service.Monitor / ProjectInstaller.cs @ f22054ff

이력 | 보기 | 이력해설 | 다운로드 (1.07 KB)

1 f22054ff taeseongkim
using log4net;
2
using System;
3 53c9637d taeseongkim
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 f22054ff taeseongkim
        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 53c9637d taeseongkim
    }
41
}
클립보드 이미지 추가 (최대 크기: 500 MB)