Changeset 8178 for trunk/sources/HeuristicLab.PluginInfrastructure
- Timestamp:
- 07/02/12 13:16:45 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs
r7259 r8178 551 551 where string.Equals(Path.GetFullPath(assembly.Location), Path.GetFullPath(assemblyLocation), StringComparison.CurrentCultureIgnoreCase) 552 552 select assembly) 553 .Single ();554 553 .SingleOrDefault(); 554 if (asm == null) throw new InvalidPluginException("Could not assembly " + assemblyLocation + " for plugin " + desc.Name); 555 555 foreach (Type pluginType in asm.GetTypes()) { 556 556 if (typeof(IPlugin).IsAssignableFrom(pluginType) && !pluginType.IsAbstract && !pluginType.IsInterface && !pluginType.HasElementType) {
Note: See TracChangeset
for help on using the changeset viewer.