Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2738


Ignore:
Timestamp:
02/02/10 17:31:01 (14 years ago)
Author:
gkronber
Message:

Implemented quick fix for #862 (Changes of user settings in one HL application are not reflected in another HL application)

File:
1 edited

Legend:

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

    r2615 r2738  
    127127        AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation;
    128128        setup.PrivateBinPath = pluginDir;
    129         applicationDomain = AppDomain.CreateDomain(appInfo.Name, null, setup);
     129        applicationDomain = AppDomain.CreateDomain(AppDomain.CurrentDomain.FriendlyName, null, setup);
    130130        Type applicationManagerType = typeof(ApplicationManager);
    131131        ApplicationManager applicationManager =
Note: See TracChangeset for help on using the changeset viewer.