Skip to content

Commit

Permalink
Merge pull request #15 from EasyOC/MethodInfoName
Browse files Browse the repository at this point in the history
Move custom extension methods under the system namespace to the EasyOC namespace
  • Loading branch information
hyzx86 committed Apr 16, 2023
2 parents f3b8be7 + 8140de3 commit a1d5dcf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@using EasyOC.Deployment.Deployment;
@using EasyOC;
@using OrchardCore.DisplayManagement.Views;
@using OrchardCore.Queries;
@model ShapeViewModel<QueriesDeploymentStep>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@using EasyOC.Deployment.Deployment;
@using EasyOC;
@using OrchardCore.DisplayManagement.Views;
@using OrchardCore.Security.Services;
@model ShapeViewModel<RolesDeploymentStep>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Concurrent;

namespace System.Collections.Generic
namespace EasyOC
{
public static class DictionaryExtensions
{
Expand Down
4 changes: 1 addition & 3 deletions src/Shared/EasyOC.Shared.Extensions/EnumerableExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System.Linq;

namespace System.Collections.Generic
namespace EasyOC
{
public static class EnumerableExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/EasyOC.Shared.Extensions/ObjectExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Globalization;
using System.Linq;
using Newtonsoft.Json.Linq;
namespace System
namespace EasyOC
{
/// <summary>
/// Extension methods for all objects.
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/EasyOC.Shared.Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Text.RegularExpressions;

namespace System
namespace EasyOC
{
//
// 摘要:
Expand Down

0 comments on commit a1d5dcf

Please sign in to comment.