Example #1
0
        public bool CreateAppDomain()
        {
            appDomain = new AppDomainDetails();
            bool check = appDomain.LoadAppDomain(dbInteraction.GetAssemblySearchPath());

            if (checkCustomConfig)
            {
                appDomain.LoadAppDomain(txtCustomConfigAssemblyPath.Text.Trim());
            }
            return(check);
        }
Example #2
0
	    public bool CreateAppDomain()
        {
           appDomain = new AppDomainDetails();
           bool check = appDomain.LoadAppDomain(dbInteraction.GetAssemblySearchPath());
            if (checkCustomConfig)
                appDomain.LoadAppDomain(txtCustomConfigAssemblyPath.Text.Trim());
            return check;
        }