using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Configuration.Install;
namespace WindowsApplication
{
[System.ComponentModel.RunInstaller(true)]
public class SetupInstaller : System.Configuration.Install.Installer
{
public SetupInstaller()
{
this.AfterInstall += new InstallEventHandler(SetupInstaller_AfterInstall);
this.BeforeInstall += new InstallEventHandler(SetupInstaller_BeforeInstall);
this.Committed += new InstallEventHandler(SetupInstaller_Committed);
}
// 셋업 설치가 완료되었을 때 호출
void SetupInstaller_Committed(object sender, InstallEventArgs e)
{
// 아래
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Configuration.Install;
namespace WindowsApplication
{
[System.ComponentModel.RunInstaller(true)]
public class SetupInstaller : System.Configuration.Install.Installer
{
public SetupInstaller()
{
this.AfterInstall += new InstallEventHandler(SetupInstaller_AfterInstall);
this.BeforeInstall += new InstallEventHandler(SetupInstaller_BeforeInstall);
this.Committed += new InstallEventHandler(SetupInstaller_Committed);
}
// 셋업 설치가 완료되었을 때 호출
void SetupInstaller_Committed(object sender, InstallEventArgs e)
{
// 아래
using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Configuration.Install; namespace WindowsApplication { [System.ComponentModel.RunInstaller(true)] public class SetupInstaller : System.Configuration.Install.Installer { public SetupInstaller() { this.AfterInstall += new InstallEventHandler(SetupInstaller_AfterInstall); this.BeforeInstall += new InstallEventHandler(SetupInstaller_BeforeInstall); this.Committed += new InstallEventHandler(SetupInstaller_Committed); } // 셋업 설치가 완료되었을 때 호출 void SetupInstaller_Committed(object sender, InstallEventArgs e) { // 아래