Skip to content

Commit a1d5dcf

Browse files
authored
Merge pull request #15 from EasyOC/MethodInfoName
Move custom extension methods under the system namespace to the EasyOC namespace
2 parents f3b8be7 + 8140de3 commit a1d5dcf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Modules/EasyOC.Deployment/Views/Items/QueriesDeploymentStep.Summary.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@using EasyOC.Deployment.Deployment;
2+
@using EasyOC;
23
@using OrchardCore.DisplayManagement.Views;
34
@using OrchardCore.Queries;
45
@model ShapeViewModel<QueriesDeploymentStep>

src/Modules/EasyOC.Deployment/Views/Items/RolesDeploymentStep.Summary.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@using EasyOC.Deployment.Deployment;
2+
@using EasyOC;
23
@using OrchardCore.DisplayManagement.Views;
34
@using OrchardCore.Security.Services;
45
@model ShapeViewModel<RolesDeploymentStep>

src/Shared/EasyOC.Shared.Extensions/DictionaryExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Concurrent;
22

3-
namespace System.Collections.Generic
3+
namespace EasyOC
44
{
55
public static class DictionaryExtensions
66
{

src/Shared/EasyOC.Shared.Extensions/EnumerableExtensions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System.Linq;
2-
3-
namespace System.Collections.Generic
1+
namespace EasyOC
42
{
53
public static class EnumerableExtensions
64
{

src/Shared/EasyOC.Shared.Extensions/ObjectExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Globalization;
44
using System.Linq;
55
using Newtonsoft.Json.Linq;
6-
namespace System
6+
namespace EasyOC
77
{
88
/// <summary>
99
/// Extension methods for all objects.

src/Shared/EasyOC.Shared.Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Text.RegularExpressions;
66

7-
namespace System
7+
namespace EasyOC
88
{
99
//
1010
// 摘要:

0 commit comments

Comments
 (0)