Fix warnings

This commit is contained in:
Matt Parker
2025-05-18 13:48:36 +10:00
parent 77206e76f6
commit 4db57d1eb2
3 changed files with 6 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
public class AppState
{
public required string SolutionFolderPath { get; set; }
public required string SolutionFilePath { get; set; }
public required string CsprojFilePath { get; set; }
public required string? SolutionFolderPath { get; set; }
public required string? SolutionFilePath { get; set; }
public required string? CsprojFilePath { get; set; }
}