An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![Nuget](https://img.shields.io/nuget/v/Mehedi.Application.SharedKernel)](https://www.nuget.org/packages/Mehedi.Application.SharedKernel/)
[![Nuget](https://img.shields.io/nuget/dt/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)