public bool Unload()
        {
            BuildManagerHost host = this._host;

            if (host != null)
            {
                this._host = null;
                return(host.UnloadAppDomain());
            }
            return(false);
        }
        public bool Unload()
        {
            Debug.Trace("CBM", "Unload");

            BuildManagerHost host = _host;

            if (host != null)
            {
                _host = null;
                return(host.UnloadAppDomain());
            }

            return(false);
        }