https://github.com/rabbicse/mehedi.application.sharedkernel
Some useful base classes and interfaces, mainly used with the Application layer inside CleanArchitecture template. Also, a template to make your own Application layer SharedKernel nuget package.
https://github.com/rabbicse/mehedi.application.sharedkernel
clean-architecture csharp domain-driven-design dotnet-core solid
Last synced: 2 months ago
JSON representation
Some useful base classes and interfaces, mainly used with the Application layer inside CleanArchitecture template. Also, a template to make your own Application layer SharedKernel nuget package.
- Host: GitHub
- URL: https://github.com/rabbicse/mehedi.application.sharedkernel
- Owner: rabbicse
- License: gpl-3.0
- Created: 2024-05-06T03:58:20.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-21T10:57:06.000Z (about 1 year ago)
- Last Synced: 2025-11-27T12:41:05.484Z (8 months ago)
- Topics: clean-architecture, csharp, domain-driven-design, dotnet-core, solid
- Language: C#
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/Mehedi.Application.SharedKernel/)
[](https://www.nuget.org/packages/Mehedi.Application.SharedKernel/)
# Mehedi.Application.SharedKernel
Some useful base classes and interfaces, mainly used with the Application layer inside CleanArchitecture template. Also, a template to make your own Application layer SharedKernel nuget package.
## Technologies
- .NET Core 8
- C#
- MediatR
- xUnit
## Prerequisites
- MediatR (>= 12.2.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
- Mehedi.Core.SharedKernel (>= 1.0.0)
## Packaging
To pack nuget package write the following command
```
dotnet pack
```
To publish package of Mehedi.Application.SharedKernel.1.0.0.nupkg write the following command
```
dotnet nuget push .\bin\Release\Mehedi.Application.SharedKernel.1.0.0.nupkg --api-key --source https://api.nuget.org/v3/index.json
```
## References
- [Ardalis.SharedKernel](https://github.com/ardalis/Ardalis.SharedKernel)
- [Clean Architecture Solution Template](https://github.com/jasontaylordev/CleanArchitecture)
- [ASP.NET Core C# CQRS Event Sourcing, REST API, DDD, SOLID Principles and Clean Architecture](https://github.com/jeangatto/ASP.NET-Core-Clean-Architecture-CQRS-Event-Sourcing)