Skip to content

Commit

Permalink
removed developer's name from the package name
Browse files Browse the repository at this point in the history
  • Loading branch information
wladyslawczyzewski committed Jul 31, 2021
1 parent 56f14c4 commit 51f5c9f
Show file tree
Hide file tree
Showing 35 changed files with 60 additions and 60 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
dotnet-version: 5.0.102
- name: Install dependencies
run: dotnet restore src/VladyslavChyzhevskyi.ASPNET.CQRS.csproj
&& dotnet restore tests/VladyslavChyzhevskyi.ASPNET.CQRS.Tests.csproj
&& dotnet restore example/VladyslavChyzhevskyi.ASPNET.CQRS.Example.csproj
run: dotnet restore src/ASPNET.CQRS.csproj
&& dotnet restore tests/ASPNET.CQRS.Tests.csproj
&& dotnet restore example/ASPNET.CQRS.Example.csproj
- name: Build
run: dotnet build src/VladyslavChyzhevskyi.ASPNET.CQRS.csproj --configuration Debug --no-restore
run: dotnet build src/ASPNET.CQRS.csproj --configuration Debug --no-restore
- name: Test
run: dotnet test tests/VladyslavChyzhevskyi.ASPNET.CQRS.Tests.csproj --no-restore --verbosity normal
run: dotnet test tests/ASPNET.CQRS.Tests.csproj --no-restore --verbosity normal
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/example/bin/Debug/netcoreapp3.1/VladyslavChyzhevskyi.ASPNET.CQRS.Example.dll",
"program": "${workspaceFolder}/example/bin/Debug/netcoreapp3.1/ASPNET.CQRS.Example.dll",
"args": [],
"cwd": "${workspaceFolder}/example",
"stopAtEntry": false,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VladyslavChyzhevskyi.ASPNET.CQRS
# ASPNET.CQRS

![Build RC](https://github.com/vchyzhevskyi/aspnet.cqrs/workflows/Build%20RC/badge.svg)
[![NuGet Badge](https://buildstats.info/nuget/VladyslavChyzhevskyi.ASPNET.CQRS?includePreReleases=true)](https://www.nuget.org/packages/VladyslavChyzhevskyi.ASPNET.CQRS/)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<ItemGroup>
<ProjectReference Include="..\src\VladyslavChyzhevskyi.ASPNET.CQRS.csproj" />
<ProjectReference Include="..\src\ASPNET.CQRS.csproj" />
</ItemGroup>

<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions example/Commands/PingCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Commands;
using ASPNET.CQRS.Commands;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Example.Commands
namespace ASPNET.CQRS.Example.Commands
{
[CQRSRoute("/ping")]
public class PingCommandHandler : ICommandHandler<PingCommand>
Expand Down
4 changes: 2 additions & 2 deletions example/Commands/PingComplexCommand.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Commands;
using ASPNET.CQRS.Commands;
using Microsoft.Extensions.Logging;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Example.Commands
namespace ASPNET.CQRS.Example.Commands
{
[CQRSRoute("/ping-complex")]
public class PingComplexCommandHandler : ICommandHandler<PingComplexCommand>
Expand Down
2 changes: 1 addition & 1 deletion example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Example
namespace ASPNET.CQRS.Example
{
public class Program
{
Expand Down
2 changes: 1 addition & 1 deletion example/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"VladyslavChyzhevskyi.ASPNET.CQRS.Example": {
"ASPNET.CQRS.Example": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "weatherforecast",
Expand Down
6 changes: 3 additions & 3 deletions example/Queries/PingComplexQuery.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS;
using ASPNET.CQRS.Queries;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Example.Queries
namespace ASPNET.CQRS.Example.Queries
{
[CQRSRoute("/ping-complex")]
public class PingComplexQueryHandler : IQueryHandler<PingComplexQuery, PingComplexQueryResult>
Expand Down
6 changes: 3 additions & 3 deletions example/Queries/PingQuery.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS;
using ASPNET.CQRS.Queries;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Example.Queries
namespace ASPNET.CQRS.Example.Queries
{
[CQRSRoute("/ping")]
public class PingQueryHandler : IQueryHandler<PingQuery>
Expand Down
2 changes: 1 addition & 1 deletion example/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Example
namespace ASPNET.CQRS.Example
{
public class Startup
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net5.0</TargetFramework>
<PackageId>VladyslavChyzhevskyi.ASPNET.CQRS</PackageId>
<PackageId>ASPNET.CQRS</PackageId>
<Version>1.0-rc1</Version>
<Authors>Vladyslav Chyzhevskyi</Authors>
<Company>Vladyslav Chyzhevskyi</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/CQRSFeature.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
public class CQRSFeature
{
Expand Down
8 changes: 4 additions & 4 deletions src/CQRSFeatureProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using VladyslavChyzhevskyi.ASPNET.CQRS.Commands;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS.Commands;
using ASPNET.CQRS.Queries;
using Microsoft.Extensions.Options;

[assembly: InternalsVisibleTo("VladyslavChyzhevskyi.ASPNET.CQRS.Tests")]
[assembly: InternalsVisibleTo("ASPNET.CQRS.Tests")]

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{

internal class CQRSFeatureProvider : ICQRSFeatureProvider
Expand Down
2 changes: 1 addition & 1 deletion src/CQRSHandlerDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
public class CQRSHandlerDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/CQRSMiddleware.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
internal partial class CQRSMiddleware
{
Expand Down
2 changes: 1 addition & 1 deletion src/CQRSMiddlewareExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Options;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
public static class CQRSMiddlewareExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/CQRSOptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
public class CQRSOptions
{
Expand Down
2 changes: 1 addition & 1 deletion src/CQRSRouteAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class CQRSRouteAttribute : System.Attribute
Expand Down
6 changes: 3 additions & 3 deletions src/Commands/CQRSMiddleware.HandleCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Commands;
using VladyslavChyzhevskyi.ASPNET.CQRS.Helpers;
using ASPNET.CQRS.Commands;
using ASPNET.CQRS.Helpers;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
partial class CQRSMiddleware
{
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ICommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VladyslavChyzhevskyi.ASPNET.CQRS.Commands
namespace ASPNET.CQRS.Commands
{
public interface ICommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ICommandHandler.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Commands
namespace ASPNET.CQRS.Commands
{
public interface ICommandHandler<TCommand>
where TCommand : ICommand
Expand Down
4 changes: 2 additions & 2 deletions src/Helpers/ReflectionHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS.Queries;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Helpers
namespace ASPNET.CQRS.Helpers
{
internal static class ReflectionHelpers
{
Expand Down
2 changes: 1 addition & 1 deletion src/HttpContextExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Net;
using Microsoft.AspNetCore.Http;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
internal static class HttpContextExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/ICQRSFeatureProvider.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
internal interface ICQRSFeatureProvider
{
Expand Down
2 changes: 1 addition & 1 deletion src/IServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using Microsoft.Extensions.DependencyInjection;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
public static class IServiceCollectionExtensions
{
Expand Down
6 changes: 3 additions & 3 deletions src/Queries/CQRSMiddleware.HandleQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
using System.Net;
using System.Reflection;
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Helpers;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS.Helpers;
using ASPNET.CQRS.Queries;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.WebUtilities;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;

namespace VladyslavChyzhevskyi.ASPNET.CQRS
namespace ASPNET.CQRS
{
partial class CQRSMiddleware
{
Expand Down
2 changes: 1 addition & 1 deletion src/Queries/IQuery.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VladyslavChyzhevskyi.ASPNET.CQRS.Queries
namespace ASPNET.CQRS.Queries
{
public interface IQuery
{
Expand Down
2 changes: 1 addition & 1 deletion src/Queries/IQueryHandler.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Queries
namespace ASPNET.CQRS.Queries
{
public interface IQueryHandler<TQuery>
where TQuery : IQuery
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\src\VladyslavChyzhevskyi.ASPNET.CQRS.csproj" />
<ProjectReference Include="..\src\ASPNET.CQRS.csproj" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions tests/CommandSelectorTests.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using NUnit.Framework;
using VladyslavChyzhevskyi.ASPNET.CQRS;
using VladyslavChyzhevskyi.ASPNET.CQRS.Tests.TestCases;
using ASPNET.CQRS;
using ASPNET.CQRS.Tests.TestCases;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Tests
namespace ASPNET.CQRS.Tests
{
[TestFixture]
public class CommandSlectorTests
Expand Down
6 changes: 3 additions & 3 deletions tests/QuerySelectorTests.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using NUnit.Framework;
using VladyslavChyzhevskyi.ASPNET.CQRS;
using VladyslavChyzhevskyi.ASPNET.CQRS.Tests.TestCases;
using ASPNET.CQRS;
using ASPNET.CQRS.Tests.TestCases;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Tests
namespace ASPNET.CQRS.Tests
{
[TestFixture]
public class QuerySlectorTests
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCases/ComplexQuery.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS.Queries;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Tests.TestCases
namespace ASPNET.CQRS.Tests.TestCases
{
public class ComplexQueryTestCase1 : IQueryHandler<IQuery, object>
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCases/SimpleCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Commands;
using ASPNET.CQRS.Commands;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Tests.TestCases
namespace ASPNET.CQRS.Tests.TestCases
{
public class SimpleCommandTestCase1 : ICommandHandler<ICommand>
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCases/SimpleQuery.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using VladyslavChyzhevskyi.ASPNET.CQRS.Queries;
using ASPNET.CQRS.Queries;

namespace VladyslavChyzhevskyi.ASPNET.CQRS.Tests.TestCases
namespace ASPNET.CQRS.Tests.TestCases
{
public class SimpleQueryTestCase1 : IQueryHandler<IQuery>
{
Expand Down

0 comments on commit 51f5c9f

Please sign in to comment.