Skip to content

Commit

Permalink
file scoped namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
giannik committed May 2, 2024
1 parent 922c50c commit 8489c5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/OrchardCore.Modules/OrchardCore.Flows/ResourceManifest.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.Extensions.Options;
using OrchardCore.ResourceManagement;

namespace OrchardCore.Flows
{
namespace OrchardCore.Flows;

public class ResourceManagementOptionsConfiguration : IConfigureOptions<ResourceManagementOptions>
{
private static ResourceManifest _manifest;
Expand All @@ -25,4 +25,4 @@ public void Configure(ResourceManagementOptions options)
options.ResourceManifests.Add(_manifest);
}
}
}

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.Extensions.Options;
using OrchardCore.ResourceManagement;

namespace OrchardCore.Widgets
{
namespace OrchardCore.Widgets;

public class ResourceManagementOptionsConfiguration : IConfigureOptions<ResourceManagementOptions>
{
private static ResourceManifest _manifest;
Expand All @@ -25,4 +25,4 @@ public void Configure(ResourceManagementOptions options)
options.ResourceManifests.Add(_manifest);
}
}
}

0 comments on commit 8489c5d

Please sign in to comment.