Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/11 10:48:32 (13 years ago)
Author:
cneumuel
Message:

#1429

  • ensure that assemblies are only searched in PrivateBinPath and not in ApplicationBase. This is important for a hive slave creating a AppDomain with assemblies from a path different from the path of the executing AppDomain
File:
1 edited

Legend:

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

    r5652 r5703  
    7575      AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation;
    7676      setup.PrivateBinPath = pluginDir;
     77      // probing should only occur in PrivateBinPath (not in ApplicationBase). This is enforced by the value string.Empty
     78      setup.PrivateBinPathProbe = string.Empty;
    7779      AppDomain pluginDomain = null;
    7880      try {
Note: See TracChangeset for help on using the changeset viewer.