Code Snippet
protected override void OnBeforeInstall(System.Collections.IDictionary savedState)
{
base.OnBeforeInstall(savedState);
System.Windows.Forms.MessageBox.Show("Before");
}
public override void Install(System.Collections.IDictionary stateSaver)
{
base.Install(stateSaver);
System.Windows.Forms.MessageBox.Show("Install");
}
protected override void OnAfterInstall(System.Collections.IDictionary savedState)
{
base.OnAfterInstall(savedState);
System.Windows.Forms.MessageBox.Show("After");
}