Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/17/09 14:34:13 (15 years ago)
Author:
kgrading
Message:

refactoring (#547)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/PluginManager.cs

    r1501 r1602  
    191191    }
    192192
    193     public AppDomain CreateAndInitAppDomainWithSandbox(string friendlyName, bool sandboxed, Type jobType) {
     193    public AppDomain CreateAndInitAppDomainWithSandbox(string friendlyName, bool sandboxed, Type jobType, ICollection<byte[]> assemblyFiles) {
    194194      PermissionSet pset;
    195195
     
    227227      NotifyListeners(PluginManagerAction.Initializing, "All plugins");
    228228
    229       if (depPlugins != null && depPlugins.Count > 0) {
    230         remoteRunner.LoadPlugins(depPlugins);
    231       }
     229      if (assemblyFiles != null && assemblyFiles.Count > 0)
     230        remoteRunner.LoadPlugins(assemblyFiles);
     231   
     232      //if (depPlugins != null && depPlugins.Count > 0) {       
     233      //  remoteRunner.LoadPlugins(depPlugins);
     234      //}
    232235      NotifyListeners(PluginManagerAction.Initialized, "All plugins");
    233236      return applicationDomain;
Note: See TracChangeset for help on using the changeset viewer.