diff --git a/Nerfed.Editor/Project/Project.cs b/Nerfed.Editor/Project/Project.cs index d57f1f6..2f32698 100644 --- a/Nerfed.Editor/Project/Project.cs +++ b/Nerfed.Editor/Project/Project.cs @@ -4,12 +4,12 @@ namespace Nerfed.Editor.Project; internal static class EditorProject { - internal static Compiler.Project Project { get; private set; } - internal static string ProjectFilePath { get; private set; } - internal static string ProjectSolutionFilePath { get; private set; } - internal static string ProjectPath { get; private set; } - internal static string ProjectContentPath { get; private set; } - internal static string ProjectTempPath { get; private set; } + internal static Compiler.Project Project { get; private set; } = null; + internal static string ProjectFilePath { get; private set; } = string.Empty; + internal static string ProjectSolutionFilePath { get; private set; } = string.Empty; + internal static string ProjectPath { get; private set; } = string.Empty; + internal static string ProjectContentPath { get; private set; } = string.Empty; + internal static string ProjectTempPath { get; private set; } = string.Empty; internal static bool Create(string projectFilePath, string projectName) {