This code is a template to start a new application using .NET CORE 7 with Mediator, CQRS, Clean Architecture, Unit Test and more.
This have a simple Todo-App
implementation just for demonstration of how it works.
Create your projects based on this template.
some codes is missing tests because it is only an example of usage
click on "Use this template" to start
inside the solution folder
dotnet-ef migrations add <migration_name> -p src/Infra/Infra.csproj -s src/Core/Core.csproj
inside the solution folder
dotnet-ef database update -p src/Infra/Infra.csproj -s src/Core/Core.csproj
dotnet test --logger="console;verbosity=detailed"
cd src/Core
dotnet run