Sitecore.Linqpad.Driver.SitecoreDriver.GetAssembliesToAdd C# (CSharp) Method

GetAssembliesToAdd() public method

public GetAssembliesToAdd ( IConnectionInfo cxInfo ) : IEnumerable
cxInfo IConnectionInfo
return IEnumerable
        public override IEnumerable<string> GetAssembliesToAdd(IConnectionInfo cxInfo)
        {
            var set = new HashSet<string>(base.GetAssembliesToAdd(cxInfo));
            var settings = GetCxSettings(cxInfo);
            var paths = CxSettingsPathsHelper.Current.GetAssemblyLocations(settings);
            set.UnionWith(paths);
            return set.ToList();
        }