Exemplo n.º 1
0
        private IEnumerable <string> ReadAssembly(string assembly)
        {
            yield return(assembly);

            var documentation = assembly.Replace(".dll", ".xml", StringComparison.OrdinalIgnoreCase);

            if (io.DoesFileExist(documentation))
            {
                yield return(documentation);
            }
        }