Add text generator to prebuild
This commit is contained in:
parent
00637861f7
commit
7c6e0021c2
8 changed files with 108 additions and 285 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue