Skip to content

Commit

Permalink
Move custom extension methods under the system namespace to the EasyO…
Browse files Browse the repository at this point in the history
…C namespace
  • Loading branch information
hyzx86 committed Apr 16, 2023
1 parent 9c9c120 commit 8140de3
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 24 deletions.
18 changes: 0 additions & 18 deletions pack.ps1

This file was deleted.

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 8140de3

Please sign in to comment.