Changeset 7069 for trunk/sources/HeuristicLab.PluginInfrastructure
- Timestamp:
- 11/24/11 17:04:12 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/LightweightApplicationManager.cs
r7066 r7069 124 124 var assemblyTypes = assembly.GetTypes(); 125 125 126 return from t in assemblyTypes 127 where !IsNonDiscoverableType(t) 128 where CheckTypeCompatibility(type, t) 129 where onlyInstantiable == false || (!t.IsAbstract && !t.IsInterface && !t.HasElementType && !t.IsGenericTypeDefinition) 130 select BuildType(t, type); 126 var buildTypes = from t in assemblyTypes 127 where !IsNonDiscoverableType(t) 128 where CheckTypeCompatibility(type, t) 129 where onlyInstantiable == false || (!t.IsAbstract && !t.IsInterface && !t.HasElementType) 130 select BuildType(t, type); 131 132 return from t in buildTypes 133 where onlyInstantiable == false || !t.IsGenericTypeDefinition 134 select t; 131 135 } 132 136 catch (TypeLoadException) { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/SandboxApplicationManager.cs
r7066 r7069 262 262 /// <returns>Enumerable of the discovered types.</returns> 263 263 private static IEnumerable<Type> GetTypes(Type type, Assembly assembly, bool onlyInstantiable) { 264 return from t in assembly.GetTypes() 265 where !IsNonDiscoverableType(t) 266 where CheckTypeCompatibility(type, t) 267 where onlyInstantiable == false || 268 (!t.IsAbstract && !t.IsInterface && !t.HasElementType && !t.IsGenericTypeDefinition) 269 select BuildType(t, type); 264 var buildTypes = from t in assembly.GetTypes() 265 where !IsNonDiscoverableType(t) 266 where CheckTypeCompatibility(type, t) 267 where onlyInstantiable == false || 268 (!t.IsAbstract && !t.IsInterface && !t.HasElementType) 269 select BuildType(t, type); 270 271 return from t in buildTypes 272 where onlyInstantiable == false || !t.IsGenericTypeDefinition 273 select t; 270 274 } 271 275
Note: See TracChangeset
for help on using the changeset viewer.