better documentation

This commit is contained in:
Mathias Beaulieu-Duncan 2023-11-08 22:54:32 -05:00
parent ad0d84f00b
commit 4598cfedb7

View File

@ -63,6 +63,7 @@ private void AddQueries(IServiceCollection services)
services.AddQuery<PersonQuery, IQueryable<Person>, PersonQueryHandler>(); services.AddQuery<PersonQuery, IQueryable<Person>, PersonQueryHandler>();
} }
``` ```
# Fluent Validation # Fluent Validation
We use fluent validation in all of our projects, but we don't want it to be enforced. We use fluent validation in all of our projects, but we don't want it to be enforced.
@ -83,3 +84,14 @@ public void ConfigureServices(IServiceCollection services)
services.AddCommandWithValidator<EchoCommand, string, EchoCommandHandler, EchoCommandValidator>(); services.AddCommandWithValidator<EchoCommand, string, EchoCommandHandler, EchoCommandValidator>();
} }
``` ```
# 2024 Roadmap
| Task | Description | Status |
|------------------------------------------|------------------------------------------------------------------------------------------------------|--------|
| Support .NET 8 | Ensure compatibility with .NET 8. | ✅ |
| Create a new demo project as an example | Develop a new demo project to serve as an example for users. | ⬜️ |
| New Independent Module for MVC | Develop a standalone module, independent of MVC, to enhance framework flexibility. | ⬜️ |
| Implement .NET Native Compilation (AOT) | Enable Ahead-of-Time (AOT) compilation support for .NET 8. | ⬜️ |
| Update FluentValidation to Latest Version | Upgrade FluentValidation to the latest version, addressing potential breaking changes. | ⬜️ |
| Creating a website for the Framework | Develop a website to host comprehensive documentation for the framework. | ⬜️ |