Changeset 2738 for trunk/sources/HeuristicLab.PluginInfrastructure
- Timestamp:
- 02/02/10 17:31:01 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginManager.cs
r2615 r2738 127 127 AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation; 128 128 setup.PrivateBinPath = pluginDir; 129 applicationDomain = AppDomain.CreateDomain( appInfo.Name, null, setup);129 applicationDomain = AppDomain.CreateDomain(AppDomain.CurrentDomain.FriendlyName, null, setup); 130 130 Type applicationManagerType = typeof(ApplicationManager); 131 131 ApplicationManager applicationManager =
Note: See TracChangeset
for help on using the changeset viewer.