private FileInfo FindAssembly(AssemblyName name, IEnumerable<string> directories)
        {
            var files = new List<string>();
            foreach (var dir in directories)
            {
                files.AddRange(m_FileSystem.Directory.GetFiles(dir, "*.dll", SearchOption.AllDirectories));
            }

            // Store all the assemblies we can find that match the name, culture and public key. If a public key is specified
            // then there should be at most 1 of those assemblies because it should be an exact match. If however no public key
            // is specified then potentially any assembly with an equal or greater version number could be loaded.
            IDictionary<AssemblyName, string> assemblyNameToFileMap = new Dictionary<AssemblyName, string>();
            foreach (var filePath in files)
            {
                AssemblyName assemblyName = null;
                try
                {
                    assemblyName = AssemblyName.GetAssemblyName(filePath);
                }
                catch (ArgumentException)
                {
                    // Not a valid assembly name
                }
                catch (SecurityException)
                {
                    // No access
                }
                catch (BadImageFormatException)
                {
                    // Not a valid assembly
                }
                catch (FileLoadException)
                {
                    // Couldn't load file
                }

                if (assemblyName != null)
                {
                    if (name.IsMatch(assemblyName))
                    {
                        assemblyNameToFileMap.Add(assemblyName, filePath);
                    }
                }
            }

            var file = assemblyNameToFileMap.OrderByDescending(p => p.Key.Version).Select(p => p.Value).FirstOrDefault();
            return (!string.IsNullOrWhiteSpace(file)) ? new FileInfo(file) : null;
        }