From 50a77d512097236f5f89c60675bbf21168df5644 Mon Sep 17 00:00:00 2001 From: max Date: Sun, 21 Jul 2024 22:40:16 +0200 Subject: [PATCH] default values --- Nerfed.Editor/Project/Project.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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) {