Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/10 18:55:46 (14 years ago)
Author:
gkronber
Message:

Fixed projects to work with new plugin infrastructure. #799

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring/HeuristicLab.Core/3.2/ChooseItemDialog.cs

    r1529 r2587  
    8989      }
    9090
    91       DiscoveryService discoveryService = new DiscoveryService();
    92       foreach (PluginInfo plugin in discoveryService.Plugins) {
     91      foreach (IPluginDescription plugin in ApplicationManager.Manager.Plugins) {
    9392        TreeNode pluginNode = new TreeNode(plugin.Name);
    9493        pluginNode.Tag = null;
    9594
    96         Type[] types = discoveryService.GetTypes(itemType, plugin);
    97         foreach (Type type in types) {
     95        foreach (Type type in ApplicationManager.Manager.GetTypes(itemType, plugin)) {
    9896          if (!type.IsAbstract) {
    9997            TreeNode itemNode = new TreeNode();
Note: See TracChangeset for help on using the changeset viewer.