Update plan

This commit is contained in:
2026-01-26 15:58:19 +09:00
parent 8df0b46960
commit 8d82c0a750
8 changed files with 117 additions and 11 deletions

View File

@@ -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.
{
}
}

View File

@@ -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
{