Ejemplo n.º 1
0
        private void SetupFusionStore(MyAppDomainSetup info, MyAppDomainSetup oldInfo)
        {
            if (oldInfo == null)
            {
                if ((info.Value[0] == null) || (info.Value[1] == null))
                {
                    // dummy
                }
                if (info.Value[5] == null)
                {
                    info.PrivateBinPath = RuntimeEnvironment.GetRuntimeDirectory();
                }

                if (info.DeveloperPath == null)
                {
                    info.DeveloperPath = RuntimeEnvironment.GetRuntimeDirectory();
                }
            }
            IntPtr fusionContext = this.GetFusionContext();

            info.SetupFusionContext(fusionContext, oldInfo);
        }
    private void SetupFusionStore(MyAppDomainSetup info, MyAppDomainSetup oldInfo)
    {
      if (oldInfo == null)
      {
        if ((info.Value[0] == null) || (info.Value[1] == null))
	  {
	    // dummy
	  }
        if (info.Value[5] == null)
	  {
	    info.PrivateBinPath = RuntimeEnvironment.GetRuntimeDirectory();
	  }
	
        if (info.DeveloperPath == null)
	  {
	    info.DeveloperPath = RuntimeEnvironment.GetRuntimeDirectory();
	  }
      }
      IntPtr fusionContext = this.GetFusionContext();
      info.SetupFusionContext(fusionContext, oldInfo);
    }
Ejemplo n.º 3
0
 internal void SetupFusionContext(IntPtr fusionContext, MyAppDomainSetup oldInfo)
 {
     throw new NotImplementedException();
 }
 internal void SetupFusionContext(IntPtr fusionContext, MyAppDomainSetup oldInfo)
 {
   throw new NotImplementedException();
 }