Esempio n. 1
0
        private static void BuildDocumentation(string content, List <string> matches)
        {
            ICollection <PgType> types = TypeProcessor.GetTypes(Program.SchemaPattern);

            content = content.Replace("[DBName]", Program.Database.ToUpperInvariant());

            content = Parsers.TypeParser.Parse(content, matches, types);

            FileHelper.WriteFile(content, OutputPath);
        }