Changeset 2644
- Timestamp:
- 01/19/10 15:46:11 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/ApplicationManager.cs
r2642 r2644 214 214 return from asm in AppDomain.CurrentDomain.GetAssemblies() 215 215 where !string.IsNullOrEmpty(asm.Location) && 216 pluginDesc.Assemblies.Any(asmPath => Path.GetFullPath(asmPath) == Path.GetFullPath(asm.Location)) 216 pluginDesc.Assemblies.Any(asmPath => 217 Path.GetFullPath(asmPath).Equals(Path.GetFullPath(asm.Location), 218 StringComparison.CurrentCultureIgnoreCase)) 217 219 from t in GetTypes(type, asm, onlyInstantiable) 218 220 select t;
Note: See TracChangeset
for help on using the changeset viewer.