Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/10 10:23:52 (13 years ago)
Author:
cneumuel
Message:

#1297 fixed wrong directory of appDomain

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Sandboxing/SandboxManager.cs

    r4912 r4920  
    7979      AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation;
    8080      //setup.PrivateBinPath = pluginDir;
    81       setup.ApplicationBase = AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
     81      setup.ApplicationBase = name;
     82      setup.ConfigurationFile = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
    8283      AppDomain applicationDomain = AppDomain.CreateDomain(name, AppDomain.CurrentDomain.Evidence, setup, pset, CreateStrongName(Assembly.GetExecutingAssembly()));
    8384      Type applicationManagerType = typeof(DefaultApplicationManager);
Note: See TracChangeset for help on using the changeset viewer.