From a90e6df2a1edba3c47b6cb6b570f6f53d613cb3f Mon Sep 17 00:00:00 2001 From: Ali Yousefi Date: Tue, 14 Nov 2023 16:46:58 +0330 Subject: [PATCH] rename core to cores --- .../BaseViewModel.cs | 4 ++-- .../Commands/BaseCommand.cs | 4 ++-- .../Commands/RelayCommand.cs | 4 ++-- .../Commands/TaskBaseCommand.cs | 4 ++-- .../Commands/TaskRelayCommand.cs | 4 ++-- .../EasyMicroservices.UI.Cores.Mvvm.csproj} | 4 ++-- .../Interfaces/IBusyViewModel.cs | 2 +- ...croservices.UI.Core.sln => EasyMicroservices.UI.Cores.sln} | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm => EasyMicroservices.UI.Cores.Mvvm}/BaseViewModel.cs (98%) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm => EasyMicroservices.UI.Cores.Mvvm}/Commands/BaseCommand.cs (96%) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm => EasyMicroservices.UI.Cores.Mvvm}/Commands/RelayCommand.cs (91%) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm => EasyMicroservices.UI.Cores.Mvvm}/Commands/TaskBaseCommand.cs (97%) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm => EasyMicroservices.UI.Cores.Mvvm}/Commands/TaskRelayCommand.cs (96%) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm/EasyMicroservices.UI.Core.Mvvm.csproj => EasyMicroservices.UI.Cores.Mvvm/EasyMicroservices.UI.Cores.Mvvm.csproj} (88%) rename src/CSharp/{EasyMicroservices.UI.Core.Mvvm => EasyMicroservices.UI.Cores.Mvvm}/Interfaces/IBusyViewModel.cs (96%) rename src/CSharp/{EasyMicroservices.UI.Core.sln => EasyMicroservices.UI.Cores.sln} (90%) diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/BaseViewModel.cs b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/BaseViewModel.cs similarity index 98% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/BaseViewModel.cs rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/BaseViewModel.cs index 438aaae..3d98de1 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/BaseViewModel.cs +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/BaseViewModel.cs @@ -1,10 +1,10 @@ using EasyMicroservices.ServiceContracts; -using EasyMicroservices.UI.Core.Interfaces; +using EasyMicroservices.UI.Cores.Interfaces; using System; using System.ComponentModel; using System.Threading.Tasks; -namespace EasyMicroservices.UI.Core; +namespace EasyMicroservices.UI.Cores; /// /// diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/BaseCommand.cs b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/BaseCommand.cs similarity index 96% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/BaseCommand.cs rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/BaseCommand.cs index 0a1c3c8..7a5b43b 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/BaseCommand.cs +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/BaseCommand.cs @@ -1,9 +1,9 @@ using EasyMicroservices.ServiceContracts.Exceptions; -using EasyMicroservices.UI.Core.Interfaces; +using EasyMicroservices.UI.Cores.Interfaces; using System; using System.Windows.Input; -namespace EasyMicroservices.UI.Core.Commands; +namespace EasyMicroservices.UI.Cores.Commands; /// /// diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/RelayCommand.cs b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/RelayCommand.cs similarity index 91% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/RelayCommand.cs rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/RelayCommand.cs index 0ed1566..3cf73a2 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/RelayCommand.cs +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/RelayCommand.cs @@ -1,6 +1,6 @@ using System; -namespace EasyMicroservices.UI.Core.Commands; +namespace EasyMicroservices.UI.Cores.Commands; /// /// @@ -51,7 +51,7 @@ public RelayCommand(Action execute, Func canExecute) /// /// public RelayCommand(Action execute) - : this((x) => execute((T)x), (x) => true) + : this((x) => execute(x), (x) => true) { } diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/TaskBaseCommand.cs b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/TaskBaseCommand.cs similarity index 97% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/TaskBaseCommand.cs rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/TaskBaseCommand.cs index d273387..462a348 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/TaskBaseCommand.cs +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/TaskBaseCommand.cs @@ -1,10 +1,10 @@ using EasyMicroservices.ServiceContracts.Exceptions; -using EasyMicroservices.UI.Core.Interfaces; +using EasyMicroservices.UI.Cores.Interfaces; using System; using System.Threading.Tasks; using System.Windows.Input; -namespace EasyMicroservices.UI.Core.Commands +namespace EasyMicroservices.UI.Cores.Commands { /// /// diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/TaskRelayCommand.cs b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/TaskRelayCommand.cs similarity index 96% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/TaskRelayCommand.cs rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/TaskRelayCommand.cs index 4f86cbb..a16cc21 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Commands/TaskRelayCommand.cs +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Commands/TaskRelayCommand.cs @@ -1,8 +1,8 @@ -using EasyMicroservices.UI.Core.Interfaces; +using EasyMicroservices.UI.Cores.Interfaces; using System; using System.Threading.Tasks; -namespace EasyMicroservices.UI.Core.Commands +namespace EasyMicroservices.UI.Cores.Commands { /// /// diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/EasyMicroservices.UI.Core.Mvvm.csproj b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/EasyMicroservices.UI.Cores.Mvvm.csproj similarity index 88% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/EasyMicroservices.UI.Core.Mvvm.csproj rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/EasyMicroservices.UI.Cores.Mvvm.csproj index 16781e0..c18e972 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/EasyMicroservices.UI.Core.Mvvm.csproj +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/EasyMicroservices.UI.Cores.Mvvm.csproj @@ -12,8 +12,8 @@ https://github.com/EasyMicroservices/UICores latest true - .\bin\$(Configuration)\$(TargetFramework)\EasyMicroservices.UI.Core.Mvvm.xml - EasyMicroservices.UI.Core + .\bin\$(Configuration)\$(TargetFramework)\EasyMicroservices.UI.Cores.Mvvm.xml + EasyMicroservices.UI.Cores diff --git a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Interfaces/IBusyViewModel.cs b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Interfaces/IBusyViewModel.cs similarity index 96% rename from src/CSharp/EasyMicroservices.UI.Core.Mvvm/Interfaces/IBusyViewModel.cs rename to src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Interfaces/IBusyViewModel.cs index 0af603d..292289c 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.Mvvm/Interfaces/IBusyViewModel.cs +++ b/src/CSharp/EasyMicroservices.UI.Cores.Mvvm/Interfaces/IBusyViewModel.cs @@ -3,7 +3,7 @@ using System.ComponentModel; using System.Threading.Tasks; -namespace EasyMicroservices.UI.Core.Interfaces +namespace EasyMicroservices.UI.Cores.Interfaces { /// /// diff --git a/src/CSharp/EasyMicroservices.UI.Core.sln b/src/CSharp/EasyMicroservices.UI.Cores.sln similarity index 90% rename from src/CSharp/EasyMicroservices.UI.Core.sln rename to src/CSharp/EasyMicroservices.UI.Cores.sln index cdc6513..4fe1f2e 100644 --- a/src/CSharp/EasyMicroservices.UI.Core.sln +++ b/src/CSharp/EasyMicroservices.UI.Cores.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34018.315 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EasyMicroservices.UI.Core.Mvvm", "EasyMicroservices.UI.Core.Mvvm\EasyMicroservices.UI.Core.Mvvm.csproj", "{301DB27A-4A96-4891-89BA-15FF9D6091B5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EasyMicroservices.UI.Cores.Mvvm", "EasyMicroservices.UI.Cores.Mvvm\EasyMicroservices.UI.Cores.Mvvm.csproj", "{301DB27A-4A96-4891-89BA-15FF9D6091B5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "App", "App", "{0B34338E-D1A6-44EC-94AE-3D7A305E77E7}" EndProject