Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1899


Ignore:
Timestamp:
05/26/09 14:22:44 (15 years ago)
Author:
swagner
Message:

Fixed #651

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure.GUI/ManagerForm.cs

    r1896 r1899  
    623623        OnDeletePlugins();
    624624        OnPreUpgradePlugins();
    625         PluginManager.Manager.UnloadAllPlugins();
    626         BackupOldFiles();
    627         DeleteOldFiles();
    628         InstallNewFiles();
    629         PluginManager.Manager.LoadAllPlugins();
     625        try {
     626          PluginManager.Manager.UnloadAllPlugins();
     627          BackupOldFiles();
     628          DeleteOldFiles();
     629          InstallNewFiles();
     630        }
     631        finally {
     632          PluginManager.Manager.LoadAllPlugins();
     633        }
    630634        InitializePlugins();
    631635        OnPostUpgradePlugins();
Note: See TracChangeset for help on using the changeset viewer.