protected override IEnumerable <string> GetCandidateAssemblyPaths(AssemblyName nameToResolve)
        {
            string fileName = AssemblyResolver.GetAssemblyFileNameFromFullName(nameToResolve);

            return(base.FilterDirectoryPaths(this.SearchPaths).SelectMany((string path) => this.FindAssembly(path, fileName, this.Recursive)));
        }