Skip to content

Commit

Permalink
adjust namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusz96 committed Aug 1, 2024
1 parent 89a2a1c commit d4a892e
Show file tree
Hide file tree
Showing 16 changed files with 13 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.Extensions.Logging;
using PipelineNet.Middleware;
using PipelineNet.Pipelines;
using PipelineNet.ServiceProvider.PipelineFactories;
using PipelineNet.ServiceProvider.Pipelines.Factories;
using Xunit.Abstractions;

namespace PipelineNet.ServiceProvider.Tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using PipelineNet.ServiceProvider.MiddlewareResolver;
using System;

namespace PipelineNet.ServiceProvider.ChainOfResponsibilityFactories
namespace PipelineNet.ServiceProvider.ChainsOfResponsibility.Factories
{
/// <inheritdoc/>
public class AsyncResponsibilityChainFactory<TParameter, TReturn>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using PipelineNet.ChainsOfResponsibility;
using System;

namespace PipelineNet.ServiceProvider.ChainOfResponsibilityFactories
namespace PipelineNet.ServiceProvider.ChainsOfResponsibility.Factories
{
/// <summary>
/// Used to create new instances of an asynchronous chain of responsibility.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using PipelineNet.ChainsOfResponsibility;
using System;

namespace PipelineNet.ServiceProvider.ChainOfResponsibilityFactories
namespace PipelineNet.ServiceProvider.ChainsOfResponsibility.Factories
{
/// <summary>
/// Used to create new instances of a chain of responsibility.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using PipelineNet.ServiceProvider.MiddlewareResolver;
using System;

namespace PipelineNet.ServiceProvider.ChainOfResponsibilityFactories
namespace PipelineNet.ServiceProvider.ChainsOfResponsibility.Factories
{
/// <inheritdoc/>
public class ResponsibilityChainFactory<TParameter, TReturn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using PipelineNet.ServiceProvider.MiddlewareResolver;
using System;

namespace PipelineNet.ServiceProvider.PipelineFactories
namespace PipelineNet.ServiceProvider.Pipelines.Factories
{
/// <inheritdoc/>
public class AsyncPipelineFactory<TParameter>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using PipelineNet.Pipelines;
using System;

namespace PipelineNet.ServiceProvider.PipelineFactories
namespace PipelineNet.ServiceProvider.Pipelines.Factories
{
/// <summary>
/// Used to create new instances of an asynchronous pipeline.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using PipelineNet.Pipelines;
using System;

namespace PipelineNet.ServiceProvider.PipelineFactories
namespace PipelineNet.ServiceProvider.Pipelines.Factories
{
/// <summary>
/// Used to create new instances of a pipeline.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using PipelineNet.ServiceProvider.MiddlewareResolver;
using System;

namespace PipelineNet.ServiceProvider.PipelineFactories
namespace PipelineNet.ServiceProvider.Pipelines.Factories
{
/// <inheritdoc/>
public class PipelineFactory<TParameter>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using PipelineNet.Middleware;
using PipelineNet.ServiceProvider.ChainOfResponsibilityFactories;
using PipelineNet.ServiceProvider.PipelineFactories;
using PipelineNet.ServiceProvider.ChainsOfResponsibility.Factories;
using PipelineNet.ServiceProvider.Pipelines.Factories;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using PipelineNet.ChainsOfResponsibility;
using PipelineNet.Middleware;
using PipelineNet.MiddlewareResolver;
using System;
using System.Threading.Tasks;
using Xunit;

namespace PipelineNet.Tests.ChainsOfResponsibility
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using PipelineNet.ChainsOfResponsibility;
using PipelineNet.Middleware;
using PipelineNet.MiddlewareResolver;
using System;
using Xunit;

namespace PipelineNet.Tests.ChainsOfResponsibility
Expand Down
3 changes: 0 additions & 3 deletions src/PipelineNet.Tests/Pipelines/AsyncPipelineTests.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
using PipelineNet.Middleware;
using PipelineNet.MiddlewareResolver;
using PipelineNet.Pipelines;
using System;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using Xunit;

namespace PipelineNet.Tests.Pipelines
Expand Down
1 change: 0 additions & 1 deletion src/PipelineNet.Tests/Pipelines/PipelineTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using PipelineNet.Middleware;
using PipelineNet.MiddlewareResolver;
using PipelineNet.Pipelines;
using System;
using System.Text.RegularExpressions;
using Xunit;

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

namespace PipelineNet.ChainsOfResponsibility
namespace PipelineNet.ChainsOfResponsibility.Extensions
{
/// <summary>
/// Extension methods to the asynchronous chain of responsibility.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace PipelineNet.ChainsOfResponsibility
namespace PipelineNet.ChainsOfResponsibility.Extensions
{
/// <summary>
/// Extension methods to the chain of responsibility.
Expand Down

0 comments on commit d4a892e

Please sign in to comment.