Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4920


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

#1297 fixed wrong directory of appDomain

Location:
trunk/sources
Files:
2 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);
  • trunk/sources/HeuristicLab/3.3/HeuristicLab-3.3.csproj

    r4775 r4920  
    128128    </Compile>
    129129    <None Include="app.config" />
     130    <None Include="CustomPostBuild.cmd" />
    130131    <None Include="CopyAssemblies.cmd" />
    131     <None Include="CustomPostBuild.cmd" />
    132132    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
    133133    <None Include="HeuristicLab.snk" />
Note: See TracChangeset for help on using the changeset viewer.