fix warnings

This commit is contained in:
Matthew Parker [SSW]
2023-11-28 15:11:33 +10:00
parent 66e10dcabc
commit 0c4bdfd5a8
2 changed files with 3 additions and 56 deletions

View File

@@ -13,13 +13,13 @@ public partial class MainWindowViewModel : ViewModelBase
private readonly FileService _fileService = new();
[ObservableProperty]
private string _solutionFolderPath;
private string _solutionFolderPath = string.Empty;
[ObservableProperty]
private string _solutionFilePath;
private string _solutionFilePath = string.Empty;
[ObservableProperty]
private string _csprojFilePath;
private string _csprojFilePath = string.Empty;
[ObservableProperty]
private ObservableCollection<string> _parityResults = new() { };