CleanValidation.DependencyInjection 1.0.0

dotnet add package CleanValidation.DependencyInjection --version 1.0.0
                    
NuGet\Install-Package CleanValidation.DependencyInjection -Version 1.0.0
                    
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="CleanValidation.DependencyInjection" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CleanValidation.DependencyInjection" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="CleanValidation.DependencyInjection" />
                    
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 CleanValidation.DependencyInjection --version 1.0.0
                    
#r "nuget: CleanValidation.DependencyInjection, 1.0.0"
                    
#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 CleanValidation.DependencyInjection@1.0.0
                    
#: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=CleanValidation.DependencyInjection&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=CleanValidation.DependencyInjection&version=1.0.0
                    
Install as a Cake Tool

CleanValidation.DependencyInjection ⚙️

Plug-and-play integration for CleanValidation with ASP.NET Dependency Injection, using Scrutor under the hood to automatically register validators.


✨ Features

  • ✅ Auto-registers all IValidator<T> implementations as Scoped
  • ✅ Easy-to-use extension method: AddCleanValidation(...)
  • ✅ Supports multiple assemblies or a single reference
  • ✅ No configuration required — just plug and go

🚀 Getting Started

1. Install the package:

Install-Package CleanValidation.DependencyInjection

2. Register your validators in Startup.cs or Program.cs:

using CleanValidation.DependencyInjection;

var services = new ServiceCollection();
services.AddCleanValidation(typeof(UserValidator).Assembly);

Or for multiple assemblies:

services.AddCleanValidation(
    typeof(UserValidator).Assembly,
    typeof(OtherValidator).Assembly
);

🪤 How It Works

This extension method uses Scrutor to scan the specified assemblies and register all types that implement:

IValidator<T>

🔍 Example

public class UserValidator : Validator<User>
{
    public override Task<IResult> ValidateAsync(User value, string cultureName = "en-US", CancellationToken cancellationToken = default)
    {
        return Task.FromResult(Guard.Create(cultureName)
            .AgainstNullOrWhiteSpace(value.Name)
            .AgainstNullOrWhiteSpace(value.Description)
            .GetResult());
    }
}

Then simply inject it:

public class UserHandler
{
    private readonly IValidator<User> _validator;

    public UserHandler(IValidator<User> validator)
    {
        _validator = validator;
    }

    public async Task<IResult> HandleAsync(User user)
    {
        return await _validator.ValidateAsync(user);
    }
}

CleanValidation.DependencyInjection makes your validators discoverable, injectable, and production-ready — instantly.


🛁 CleanValidation Ecosystem

Package Description
CleanValidation.Core Fluent validation with Guard + Result<T>
CleanValidation.Extensions.Http HTTP mapping of results to IActionResult
CleanValidation.DependencyInjection Registers IValidator<T> via Scrutor

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 was computed.  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
1.0.0 138 6/24/2025