Changeset 1602 for trunk/sources/HeuristicLab.PluginInfrastructure
- Timestamp:
- 04/17/09 14:34:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/PluginManager.cs
r1501 r1602 191 191 } 192 192 193 public AppDomain CreateAndInitAppDomainWithSandbox(string friendlyName, bool sandboxed, Type jobType ) {193 public AppDomain CreateAndInitAppDomainWithSandbox(string friendlyName, bool sandboxed, Type jobType, ICollection<byte[]> assemblyFiles) { 194 194 PermissionSet pset; 195 195 … … 227 227 NotifyListeners(PluginManagerAction.Initializing, "All plugins"); 228 228 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 //} 232 235 NotifyListeners(PluginManagerAction.Initialized, "All plugins"); 233 236 return applicationDomain;
Note: See TracChangeset
for help on using the changeset viewer.