Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.PluginInfrastructure/3.3/SandboxApplicationManager.cs
- Timestamp:
- 11/19/21 16:07:45 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.PluginInfrastructure/3.3/SandboxApplicationManager.cs
r17226 r18086 227 227 internal static IEnumerable<Type> GetTypes(Type type, bool onlyInstantiable, bool includeGenericTypeDefinitions) { 228 228 return from asm in AppDomain.CurrentDomain.GetAssemblies() 229 where !asm.IsDynamic && !string.IsNullOrEmpty(asm.Location) 229 230 from t in GetTypes(type, asm, onlyInstantiable, includeGenericTypeDefinitions) 230 231 select t;
Note: See TracChangeset
for help on using the changeset viewer.