MinimalApiBuilder 4.0.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MinimalApiBuilder --version 4.0.0
                    
NuGet\Install-Package MinimalApiBuilder -Version 4.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="MinimalApiBuilder" Version="4.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MinimalApiBuilder" Version="4.0.0" />
                    
Directory.Packages.props
<PackageReference Include="MinimalApiBuilder" />
                    
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 MinimalApiBuilder --version 4.0.0
                    
#r "nuget: MinimalApiBuilder, 4.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 MinimalApiBuilder@4.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=MinimalApiBuilder&version=4.0.0
                    
Install as a Cake Addin
#tool nuget:?package=MinimalApiBuilder&version=4.0.0
                    
Install as a Cake Tool

MinimalApiBuilder

nuget

Reflectionless, source-generated, thin abstraction layer over the ASP.NET Core Minimal APIs interface.

How to Use

Based on the Vertical Slice Architecture with Feature folder. There is one class for every API endpoint. A basic example looks like the following:

using Microsoft.AspNetCore.Mvc;
using MinimalApiBuilder;

public partial class BasicEndpoint : MinimalApiBuilderEndpoint
{
    private static string Handle([FromServices] BasicEndpoint endpoint)
    {
        return "Hello, World!";
    }
}

The endpoint class must be partial, inherit from MinimalApiBuilderEndpoint, and have a static Handle or HandleAsync method with the containing type passed from dependency injection. The endpoint is mapped through the typical IEndpointRouteBuilder Map<Verb> extension methods:

app.MapGet<BasicEndpoint>("/hello");

The above is functionally equivalent to:

app.MapGet("/hello", static () => "Hello, World!");

This library depends on FluentValidation >= 11. An endpoint can have a validated request object:

public struct BasicRequest
{
    public required string Name { get; init; }
}

public partial class BasicRequestEndpoint : MinimalApiBuilderEndpoint
{
    private static string Handle([FromServices] BasicRequestEndpoint endpoint,
        [AsParameters] BasicRequest request)
    {
        return $"Hello, {request.Name}!";
    }
}

public class BasicRequestValidator : AbstractValidator<BasicRequest>
{
    public BasicRequestValidator()
    {
        RuleFor(static request => request.Name).MinimumLength(2);
    }
}
app.MapGet<BasicRequestEndpoint>("/hello/{name}");

The incremental generator will generate code to validate the request object before the handler is called and return a 400 Bad Request response if the validation fails. In Program.cs the below

builder.Services.AddMinimalApiBuilderEndpoints();

needs to be added to register the necessary types with dependency injection.

Configuration

Users can add configuration through entries in .editorconfig or with MSBuild properties. The following options are available:

minimalapibuilder_assign_name_to_endpoint (true | false)

If true, the generator will add a unique public const string Name field to the endpoint classes and call the WithName extension method when mapping them.

minimalapibuilder_assign_name_to_endpoint = true
<PropertyGroup>
  <minimalapibuilder_assign_name_to_endpoint>true</minimalapibuilder_assign_name_to_endpoint>
</PropertyGroup>
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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
5.0.0-beta.10 142 1/25/2024
5.0.0-beta.9 96 1/22/2024
5.0.0-beta.8 126 1/3/2024
5.0.0-beta.7 118 12/29/2023
5.0.0-beta.6 103 12/18/2023
5.0.0-beta.5 110 12/15/2023
5.0.0-beta.4 118 11/27/2023
5.0.0-beta.3 117 11/23/2023
5.0.0-beta.2 96 11/23/2023
5.0.0-beta.1 133 11/21/2023
4.0.0 304 11/12/2023
3.1.0 144 11/8/2023
3.0.1 137 11/6/2023
3.0.0 235 11/6/2023
2.0.0 170 10/30/2023
1.4.0 172 10/27/2023
1.3.3 337 5/11/2023
1.3.2 200 5/8/2023
1.3.1 202 5/8/2023
1.3.0 197 5/8/2023
1.2.0 210 5/6/2023
1.1.0 233 5/1/2023
1.0.1 401 2/10/2023
1.0.0 425 1/5/2023
0.1.0-beta.12 165 1/5/2023
0.1.0-beta.11 174 1/5/2023
0.1.0-beta.10 157 1/5/2023
0.1.0-beta.9 176 1/5/2023
0.1.0-beta.8 184 1/5/2023
0.1.0-beta.7 181 1/4/2023
0.1.0-beta.6 166 1/4/2023
0.1.0-beta.5 175 1/4/2023
0.1.0-beta.4 171 1/4/2023
0.1.0-beta.3 167 1/4/2023
0.1.0-beta.2 172 12/31/2022
0.1.0-beta.1 220 12/30/2022