Update plan
This commit is contained in:
@@ -2,8 +2,6 @@ namespace Ghost.Data.Models;
|
||||
|
||||
public class ProjectMetadata
|
||||
{
|
||||
public const string PROJECT_EXTENSION = "ghostproj";
|
||||
|
||||
public Guid ID
|
||||
{
|
||||
get; set;
|
||||
@@ -39,7 +37,9 @@ public class ProjectMetadata
|
||||
}
|
||||
|
||||
// Parameterless constructor for deserialization
|
||||
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
|
||||
public ProjectMetadata()
|
||||
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,8 @@ internal partial class ProjectService
|
||||
private const string _TEMPLATE_CONTENT_FILE = "content.zip";
|
||||
|
||||
public const string ASSETS_FOLDER = "Assets";
|
||||
public const string CONFIG_FOLDER = "ProjectConfig";
|
||||
public const string CACHE_FOLDER = "Caches";
|
||||
public const string CONFIG_FOLDER = "Configs";
|
||||
|
||||
public static ProjectMetadataInfo CurrentProject
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user