Free cookie consent management tool by TermsFeed Policy Generator

Changeset 17809


Ignore:
Timestamp:
12/30/20 09:49:16 (3 years ago)
Author:
gkronber
Message:

#3088: merged r17782 from trunk to stable

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.PluginInfrastructure/3.3/SandboxApplicationManager.cs

    r17181 r17809  
    227227    internal static IEnumerable<Type> GetTypes(Type type, bool onlyInstantiable, bool includeGenericTypeDefinitions) {
    228228      return from asm in AppDomain.CurrentDomain.GetAssemblies()
     229             where !asm.IsDynamic && !string.IsNullOrEmpty(asm.Location)
    229230             from t in GetTypes(type, asm, onlyInstantiable, includeGenericTypeDefinitions)
    230231             select t;
Note: See TracChangeset for help on using the changeset viewer.