Skip to content

Commit 15fc201

Browse files
update name package
1 parent 39c2cca commit 15fc201

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+86
-66
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,3 @@ nunit-*.xml
6363
.vs
6464

6565
/need.md
66-
/need.md

CommandQuery.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ VisualStudioVersion = 17.12.35527.113
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample", "Sample\Sample.csproj", "{BB773DDC-463B-47E1-A365-061DD3D066D4}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandQuery", "CommandQuery\CommandQuery.csproj", "{61D87402-246B-46EF-9006-FFDDBCD88DC1}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bas24.CommandQuery", "CommandQuery\Bas24.CommandQuery.csproj", "{61D87402-246B-46EF-9006-FFDDBCD88DC1}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
1111
ProjectSection(SolutionItems) = preProject
1212
.gitignore = .gitignore
1313
LICENSE = LICENSE
14+
need - sample.md = need - sample.md
1415
need.md = need.md
1516
README.md = README.md
1617
EndProjectSection

CommandQuery/CommandQuery.csproj renamed to CommandQuery/Bas24.CommandQuery.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
2525
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2626
<IsPackable>true</IsPackable>
27-
<Title>CommandQuery</Title>
28-
<PackageId>CommandQuery</PackageId>
27+
<Title>Bas24.CommandQuery</Title>
28+
<PackageId>Bas24.CommandQuery</PackageId>
2929
<PackageProjectUrl>https://github.com/codewithmecoder/CommandQuery</PackageProjectUrl>
3030
<RepositoryUrl>https://github.com/codewithmecoder/CommandQuery</RepositoryUrl>
3131
</PropertyGroup>

CommandQuery/CommandQuery.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using CommandQuery.Notifications;
2-
using CommandQuery.Wrappers;
3-
using System.Collections.Concurrent;
1+
using System.Collections.Concurrent;
2+
using Bas24.CommandQuery.Notifications;
3+
using Bas24.CommandQuery.Wrappers;
44

5-
namespace CommandQuery;
5+
namespace Bas24.CommandQuery;
66

77
/// <summary>
88
/// CommandQuery implementation for sending commands, queries, and notifications.

CommandQuery/CommandQueryExtensions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using CommandQuery.Notifications;
2-
using CommandQuery.PostRequest;
3-
using CommandQuery.PreRequest;
4-
using CommandQuery.ServiceRegisters;
1+
using Bas24.CommandQuery.Notifications;
2+
using Bas24.CommandQuery.PostRequest;
3+
using Bas24.CommandQuery.PreRequest;
4+
using Bas24.CommandQuery.ServiceRegisters;
55
using Microsoft.Extensions.DependencyInjection;
66
using Microsoft.Extensions.DependencyInjection.Extensions;
77

8-
namespace CommandQuery;
8+
namespace Bas24.CommandQuery;
99

1010
/// <summary>
1111
/// Service extensions for CommandQuery library.
@@ -54,7 +54,7 @@ public static IServiceCollection AddCommandQuery(this IServiceCollection service
5454
/// <param name="configuration"></param>
5555
public static void AddRequiredServices(IServiceCollection services, CommandQueryConfig configuration)
5656
{
57-
services.AddScoped<ICommandQuery, CommandQuery>();
57+
services.AddScoped<ICommandQuery, Bas24.CommandQuery.CommandQuery>();
5858

5959
services.AddTransient(typeof(IPipelineBehavior<,>), typeof(RequestPreProcessorBehavior<,>));
6060
services.AddTransient(typeof(IPipelineBehavior<,>), typeof(RequestPostProcessorBehavior<,>));

CommandQuery/ICommandQuery.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using CommandQuery.Notifications;
1+
using Bas24.CommandQuery.Notifications;
22

3-
namespace CommandQuery;
3+
namespace Bas24.CommandQuery;
44

55
/// <summary>
66
/// CommandQuery interface for sending commands, queries, and notifications.

CommandQuery/IPipelineBehavior.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace CommandQuery;
1+
namespace Bas24.CommandQuery;
22

33
/// <summary>
44
/// Represents a delegate that handles a request and returns a response asynchronously.

CommandQuery/IRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace CommandQuery;
1+
namespace Bas24.CommandQuery;
22

33
/// <summary>
44
/// IRequest interface for defining a request in the CommandQuery framework.

CommandQuery/IRequestHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace CommandQuery;
1+
namespace Bas24.CommandQuery;
22

33
/// <summary>
44
/// IRequest interface for defining a request in the CommandQuery framework.

CommandQuery/Notifications/ForeachAwaitPublisher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace CommandQuery.Notifications;
1+
namespace Bas24.CommandQuery.Notifications;
22

33
/// <summary>
44
/// Awaits each notification handler in a single foreach loop:

0 commit comments

Comments
 (0)