Skip to content

Commit

Permalink
rename core to cores
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Nov 14, 2023
1 parent 046d049 commit a90e6df
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
///
Expand Down
Original file line number Diff line number Diff line change
@@ -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;

/// <summary>
///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace EasyMicroservices.UI.Core.Commands;
namespace EasyMicroservices.UI.Cores.Commands;

/// <summary>
///
Expand Down Expand Up @@ -51,7 +51,7 @@ public RelayCommand(Action<T> execute, Func<T, bool> canExecute)
/// </summary>
/// <param name="execute"></param>
public RelayCommand(Action<T> execute)
: this((x) => execute((T)x), (x) => true)
: this((x) => execute(x), (x) => true)
{

}
Expand Down
Original file line number Diff line number Diff line change
@@ -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
{
/// <summary>
///
Expand Down
Original file line number Diff line number Diff line change
@@ -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
{
/// <summary>
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<PackageProjectUrl>https://github.com/EasyMicroservices/UICores</PackageProjectUrl>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>.\bin\$(Configuration)\$(TargetFramework)\EasyMicroservices.UI.Core.Mvvm.xml</DocumentationFile>
<RootNamespace>EasyMicroservices.UI.Core</RootNamespace>
<DocumentationFile>.\bin\$(Configuration)\$(TargetFramework)\EasyMicroservices.UI.Cores.Mvvm.xml</DocumentationFile>
<RootNamespace>EasyMicroservices.UI.Cores</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.ComponentModel;
using System.Threading.Tasks;

namespace EasyMicroservices.UI.Core.Interfaces
namespace EasyMicroservices.UI.Cores.Interfaces
{
/// <summary>
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a90e6df

Please sign in to comment.