MicroElements.AspNetCore.OpenApi.FluentValidation 7.1.0-beta.1

Prefix Reserved
This is a prerelease version of MicroElements.AspNetCore.OpenApi.FluentValidation.
dotnet add package MicroElements.AspNetCore.OpenApi.FluentValidation --version 7.1.0-beta.1
                    
NuGet\Install-Package MicroElements.AspNetCore.OpenApi.FluentValidation -Version 7.1.0-beta.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MicroElements.AspNetCore.OpenApi.FluentValidation" Version="7.1.0-beta.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MicroElements.AspNetCore.OpenApi.FluentValidation" Version="7.1.0-beta.1" />
                    
Directory.Packages.props
<PackageReference Include="MicroElements.AspNetCore.OpenApi.FluentValidation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MicroElements.AspNetCore.OpenApi.FluentValidation --version 7.1.0-beta.1
                    
#r "nuget: MicroElements.AspNetCore.OpenApi.FluentValidation, 7.1.0-beta.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MicroElements.AspNetCore.OpenApi.FluentValidation@7.1.0-beta.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MicroElements.AspNetCore.OpenApi.FluentValidation&version=7.1.0-beta.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MicroElements.AspNetCore.OpenApi.FluentValidation&version=7.1.0-beta.1&prerelease
                    
Install as a Cake Tool

Applies FluentValidation rules to OpenAPI schemas generated by Microsoft.AspNetCore.OpenApi (IOpenApiSchemaTransformer).

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.1.0-beta.1 30 2/23/2026

$# Changes in 7.1.0-beta.1
- Added: New package `MicroElements.AspNetCore.OpenApi.FluentValidation` for Microsoft.AspNetCore.OpenApi support (Issue #149)
 - Implements `IOpenApiSchemaTransformer` for .NET 9 and .NET 10
 - Supports all FluentValidation rules: Required, NotEmpty, Length, Pattern, Email, Comparison, Between
 - Handles AllOf/OneOf/AnyOf sub-schemas for polymorphic models
 - No dependency on Swashbuckle
 - User-facing API: `services.AddFluentValidationRulesToOpenApi()` + `options.AddFluentValidationRules()`
 - .NET 10: full nested validator support via `GetOrCreateSchemaAsync`
 - .NET 9: limited nested validator support (fallback to empty schema)
- Added: Sample project `SampleAspNetCoreOpenApi` demonstrating Microsoft.AspNetCore.OpenApi integration
- Added: ADR-001 documenting the architectural decision for AspNetCore.OpenApi support

# Changes in 7.0.4
- Fixed: `[AsParameters]` types in minimal API and `[FromQuery]` container types create unused schemas in `components/schemas` (Issue #180)
- Added: Support for keyed DI services (Issue #165)
 - Validators registered via `AddKeyedScoped`, `AddKeyedTransient`, `AddKeyedSingleton` are now discovered automatically
- Removed: Deprecated `FluentValidation.AspNetCore` package reference (Issue #164)
 - Replaced with `FluentValidation.DependencyInjectionExtensions` 12.0.0

# Changes in 7.0.3
- Fixed: NullReferenceException when models contain nested object properties (Issue #176 extended)
 - Handle `OpenApiSchemaReference` for nested class properties in `OpenApiRuleContext`
 - Add safe `TryGetValue` check in `NSwagRuleContext`

# Changes in 7.0.2
- Fixed: InvalidCastException when models contain enum properties (Issue #176)
 - In Microsoft.OpenApi 2.x, enum properties are represented as `OpenApiSchemaReference` instead of `OpenApiSchema`
 - Filter out schema references in `GetProperties()` method to avoid cast exception

# Changes in 7.0.1
- Fixed: FluentValidation rules not applied to `[FromForm]` parameters (Issue #170)
 - Added `RequestBody` processing in `FluentValidationOperationFilter` for `multipart/form-data` and `application/x-www-form-urlencoded` content types


Full release notes can be found at: https://github.com/micro-elements/MicroElements.Swashbuckle.FluentValidation/blob/master/CHANGELOG.md