Update prebuild bootstrap, and add MAUI initial support

This commit is contained in:
Zontreck 2023-08-13 23:13:53 -07:00
parent f7f2344276
commit 99ee951d98
6 changed files with 81 additions and 0 deletions

View file

@ -248,6 +248,7 @@ public class ProjectNode : DataNode, IComparable
Authors.Add((AuthorNode)dataNode);
else if (dataNode is FilesNode) Files = (FilesNode)dataNode;
else if(dataNode is TextGenNode) TextGenNodes.Add((TextGenNode)dataNode);
else if(dataNode is MauiNode obj) MauiSettings = obj;
}
}
finally
@ -300,6 +301,12 @@ public class ProjectNode : DataNode, IComparable
/// <value>The name.</value>
public string Name { get; private set; } = "unknown";
/// <summary>
/// Contains settings for DotNet Maui (7.0+)
/// Default is null, which indicates not to include any Maui content in the project file.
/// </summary>
public MauiNode MauiSettings { get; private set; } = null;
/// <summary>
/// The version of the .NET Framework to compile under
/// </summary>