Changeset 2688 for trunk/sources/HeuristicLab.Operators.Programmable/3.2
- Timestamp:
- 01/27/10 11:11:52 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Programmable/3.2/ProgrammableOperator.cs
r2681 r2688 167 167 foreach (var plugin in ApplicationManager.Manager.Plugins) { 168 168 var aList = new List<Assembly>(); 169 foreach (var aName in plugin.Assemblies) { 169 foreach (var aName in from file in plugin.Files 170 where file.Type == PluginFileType.Assembly 171 select file.Name) { 170 172 Assembly a; 171 173 locationTable.TryGetValue(aName, out a); … … 198 200 assemblies.Add(a, false); 199 201 } 200 } catch (NotSupportedException) { 202 } 203 catch (NotSupportedException) { 201 204 // NotSupportedException is thrown while accessing 202 205 // the Location property of the anonymously hosted
Note: See TracChangeset
for help on using the changeset viewer.