public override void Load(IDeployment deployment = null) { if (Loaded) { return; } if (deployment != null) { Deployment = deployment; } SetupAppDomain(); var handle = Activator.CreateInstanceFrom( remoteDomain, typeof(TToolset).Assembly.Location, typeof(TToolset).FullName, false, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance, null, null, null, null, null); NestedToolset = handle.Unwrap() as IToolset; NestedToolset.Load(Deployment); Deployment = NestedToolset.Deployment; Loaded = true; }
public override void Load(IDeployment deployment) { if (Loaded) { return; } if (deployment != null) { Deployment = deployment; } SetupAppDomain(); var handle = Activator.CreateInstanceFrom( m_remoteDomain, typeof(TToolset).Assembly.Location, typeof(TToolset).FullName, false, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance, null, null, null, null, null); NestedToolset = handle.Unwrap() as IToolset; if (NestedToolset == null) { throw new InvalidOperationException("Unable to locate an instance of IToolset from the handle."); } NestedToolset.Load(Deployment); Deployment = NestedToolset.Deployment; Loaded = true; }