Ejemplo n.º 1
0
        public override void Rollback(IDictionary savedState)
        {
            base.Rollback(savedState);
            var helper = new InstallerHelper();

            helper.UnInstall();
        }
Ejemplo n.º 2
0
        public override void Uninstall(IDictionary savedState)
        {
            base.Uninstall(savedState);
            var helper = new InstallerHelper();

            helper.UnInstall();
        }
Ejemplo n.º 3
0
        public override void Commit(IDictionary savedState)
        {
            base.Commit(savedState);
            var helper = new InstallerHelper();

            helper.Install(InstallationPath);
        }