示例#1
0
        public override void Rollback(IDictionary savedState)
        {
            base.Rollback(savedState);
            var helper = new InstallerHelper();

            helper.UnInstall();
        }
示例#2
0
        public override void Uninstall(IDictionary savedState)
        {
            base.Uninstall(savedState);
            var helper = new InstallerHelper();

            helper.UnInstall();
        }
示例#3
0
        public override void Commit(IDictionary savedState)
        {
            base.Commit(savedState);
            var helper = new InstallerHelper();

            helper.Install(InstallationPath);
        }