Add text generator to prebuild

This commit is contained in:
Zontreck 2023-08-10 04:33:29 -07:00
parent 00637861f7
commit 7c6e0021c2
8 changed files with 108 additions and 285 deletions

View file

@ -247,6 +247,7 @@ public class ProjectNode : DataNode, IComparable
else if (dataNode is AuthorNode)
Authors.Add((AuthorNode)dataNode);
else if (dataNode is FilesNode) Files = (FilesNode)dataNode;
else if(dataNode is TextGenNode) TextGenNodes.Add((TextGenNode)dataNode);
}
}
finally
@ -428,6 +429,12 @@ public class ProjectNode : DataNode, IComparable
}
}
/// <summary>
/// Gets the text generator nodes
/// </summary>
public List<TextGenNode> TextGenNodes { get; private set; } = new();
/// <summary>
/// Gets the configurations table.
/// </summary>