Changeset 535
- Timestamp:
- 09/03/08 20:25:22 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Loader.cs
r242 r535 132 132 // load all installed plugins into the reflection only context 133 133 foreach(String filename in Directory.GetFiles(pluginDir, "*.dll")) { 134 assemblies.Add(ReflectionOnlyLoadDll(filename)); 134 try { 135 assemblies.Add(ReflectionOnlyLoadDll(filename)); 136 } catch(BadImageFormatException) { } // just ignore the case that the .dll file is not actually a CLR dll 135 137 } 136 138 return assemblies;
Note: See TracChangeset
for help on using the changeset viewer.