Changeset 2693
- Timestamp:
- 01/27/10 17:53:07 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/ApplicationManager.cs
r2690 r2693 212 212 PluginDescription pluginDesc = (PluginDescription)pluginDescription; 213 213 return from asm in AppDomain.CurrentDomain.GetAssemblies() 214 where !string.IsNullOrEmpty(asm.Location) // ignore dynamically generated assemblies 214 215 where pluginDesc.AssemblyLocations.Any(location => location.Equals(Path.GetFullPath(asm.Location), StringComparison.CurrentCultureIgnoreCase)) 215 216 from t in GetTypes(type, asm, onlyInstantiable)
Note: See TracChangeset
for help on using the changeset viewer.