From 4598cfedb75648fdb153b026fa648f1b6a72d684 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Wed, 8 Nov 2023 22:54:32 -0500 Subject: [PATCH] better documentation --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 312cc50..2e1f945 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ private void AddQueries(IServiceCollection services) services.AddQuery, PersonQueryHandler>(); } ``` + # Fluent Validation 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(); } ``` + +# 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. | ⬜️ |