fix warnings
This commit is contained in:
@@ -13,13 +13,13 @@ public partial class MainWindowViewModel : ViewModelBase
|
|||||||
private readonly FileService _fileService = new();
|
private readonly FileService _fileService = new();
|
||||||
|
|
||||||
[ObservableProperty]
|
[ObservableProperty]
|
||||||
private string _solutionFolderPath;
|
private string _solutionFolderPath = string.Empty;
|
||||||
|
|
||||||
[ObservableProperty]
|
[ObservableProperty]
|
||||||
private string _solutionFilePath;
|
private string _solutionFilePath = string.Empty;
|
||||||
|
|
||||||
[ObservableProperty]
|
[ObservableProperty]
|
||||||
private string _csprojFilePath;
|
private string _csprojFilePath = string.Empty;
|
||||||
|
|
||||||
[ObservableProperty]
|
[ObservableProperty]
|
||||||
private ObservableCollection<string> _parityResults = new() { };
|
private ObservableCollection<string> _parityResults = new() { };
|
||||||
|
|||||||
@@ -1,53 +0,0 @@
|
|||||||
using System.Collections.ObjectModel;
|
|
||||||
using CommunityToolkit.Mvvm.ComponentModel;
|
|
||||||
using CommunityToolkit.Mvvm.Input;
|
|
||||||
|
|
||||||
namespace DotNetSolutionTools.App.ViewModels;
|
|
||||||
|
|
||||||
public partial class PreviewMainWindowViewModel : ViewModelBase
|
|
||||||
{
|
|
||||||
[ObservableProperty]
|
|
||||||
private string _solutionFolderPath =
|
|
||||||
"C:\\Users\\matt\\source\\repos\\DotNetSolutionTools\\DotNetSolutionTools.App";
|
|
||||||
|
|
||||||
[ObservableProperty]
|
|
||||||
private string _solutionFilePath =
|
|
||||||
"C:\\Users\\matt\\source\\repos\\DotNetSolutionTools\\DotNetSolutionTools.App.sln";
|
|
||||||
|
|
||||||
[ObservableProperty]
|
|
||||||
private string _csprojFilePath =
|
|
||||||
"C:\\Users\\matt\\source\\repos\\DotNetSolutionTools\\DotNetSolutionTools.App.csproj";
|
|
||||||
|
|
||||||
[ObservableProperty]
|
|
||||||
private ObservableCollection<string> _parityResults = new() { "Error Message" };
|
|
||||||
|
|
||||||
[RelayCommand]
|
|
||||||
private async Task ExecuteParityChecker(CancellationToken token)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
[RelayCommand]
|
|
||||||
private async Task FormatCsProjFile(CancellationToken token)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
[RelayCommand]
|
|
||||||
private async Task LoadSolutionFile(CancellationToken token)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
[RelayCommand]
|
|
||||||
private async Task LoadSolutionFolder(CancellationToken token)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
[RelayCommand]
|
|
||||||
private async Task LoadCsprojFile(CancellationToken token)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user