Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/09 14:25:50 (15 years ago)
Author:
gkronber
Message:

Fixed loading of plugins in correct order as defined by plugin dependencies in AppDomains for applications. (ApplicationManager) #799

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring/HeuristicLab/MainForm.cs

    r2488 r2495  
    3131using System.Threading;
    3232using HeuristicLab.PluginInfrastructure.Manager;
     33using System.IO;
    3334
    3435namespace HeuristicLab {
     
    4445
    4546      abortRequested = false;
    46       pluginManager = new PluginManager(HeuristicLab.PluginInfrastructure.Properties.Settings.Default.PluginDir);
     47      string pluginPath = Path.GetFullPath(HeuristicLab.PluginInfrastructure.Properties.Settings.Default.PluginDir);
     48      pluginManager = new PluginManager(pluginPath);
    4749      SplashScreen splashScreen = new SplashScreen(pluginManager, 1000, "Loading HeuristicLab...");
    4850      splashScreen.Owner = this;
Note: See TracChangeset for help on using the changeset viewer.