Update prebuild bootstrap, and add MAUI initial support
This commit is contained in:
parent
f7f2344276
commit
99ee951d98
6 changed files with 81 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue