MartiX.WebApi 1.1.3

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

MartiX.WebApi

MartiX.WebApi is a net10-first foundation for modern vertical-slice ASP.NET Core APIs.

It packages the result model, request contracts, specifications, HTTP mapping, and common operability modules so new services start from a consistent baseline instead of hand-wired plumbing.

Install

dotnet add package MartiX.WebApi

What you get

  • Result and error primitives such as Result, Result<T>, Error, and ValidationError
  • Application contracts such as ICommand<T>, IQuery<T>, and IRequestHandler<TRequest, TResponse>
  • Specification support with ISpecification<T>, Specification<T>, and SpecificationEvaluator
  • HTTP mapping and native problem-details exception handling
  • Optional integrations for FastEndpoints, Mediator, Mapster, EF Core outbox, and Blazor/web clients
  • Security, caching, resilience, observability, health, idempotency, and versioning building blocks

Target framework

  • net10.0

Quick start

using MartiX.WebApi.Caching;
using MartiX.WebApi.DependencyInjection;
using MartiX.WebApi.Security;

builder.Services.AddMartiXWebApiDefaults();
builder.Services.AddMartiXWebApiSecurity(options => options.RequireHttps = true);
builder.Services.AddMartiXWebApiCaching(options => options.KeyPrefix = "orders");

Notes

  • Legacy solution assets remain archived under archive.
  • Configuration option models normalize invalid resilience and versioning values to safe defaults.
Product Compatible and additional computed target framework versions.
.NET 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
1.1.3 115 3/12/2026
1.1.2 109 3/12/2026
1.1.1 137 3/11/2026

See CHANGELOG.md in the repository and GitHub Releases for version-specific
     release notes.