Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/11 10:06:55 (13 years ago)
Author:
cneumuel
Message:

#1431

  • changed visibility in PluginManager and ApplicationDescription
  • added exe-files as possible plugin-files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs

    r5631 r5652  
    179179      }
    180180      // try to load each .dll file in the plugin directory into the reflection only context
    181       foreach (string filename in Directory.GetFiles(baseDir, "*.dll")) {
     181      foreach (string filename in Directory.GetFiles(baseDir, "*.dll").Union(Directory.GetFiles(baseDir, "*.exe"))) {
    182182        try {
    183183          Assembly asm = Assembly.ReflectionOnlyLoadFrom(filename);
Note: See TracChangeset for help on using the changeset viewer.