ThisCloud.Framework.Web 1.0.94

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

ThisCloud.Framework.Web

Copilot-ready web framework for ASP.NET Core Minimal APIs with standardized middlewares, CORS, and Swagger integration.

What is this?

ThisCloud.Framework.Web provides production-ready middleware, exception handling, correlation tracking, CORS configuration, and Swagger/OpenAPI integration for ASP.NET Core Minimal APIs.

Installation

dotnet add package ThisCloud.Framework.Web

Quick Start

using ThisCloud.Framework.Web;

var builder = WebApplication.CreateBuilder(args);

// Add ThisCloud.Framework.Web services
builder.Services.AddThisCloudWeb(builder.Configuration);

var app = builder.Build();

// Use middlewares (correlation, exception mapping, etc.)
app.UseThisCloudWeb();

app.MapGet("/", () => "Hello from ThisCloud.Framework.Web!");

app.Run();

Features

  • Correlation middleware - Automatic request correlation ID tracking
  • Exception mapping - Structured ProblemDetails responses for all exceptions
  • CORS support - Configurable CORS policies via appsettings.json
  • Swagger/OpenAPI - Auto-configured with security schemes and examples
  • Minimal API optimized - Designed for .NET Minimal APIs
  • 90% coverage enforced - Battle-tested with mandatory test coverage

Documentation

For full documentation, middleware guides, and advanced configuration:

License

ISC License - see LICENSE for details.

Support

This is an open-source project maintained on a best-effort basis. For issues or contributions, visit the GitHub repository.

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.0.94 92 2/21/2026
1.0.92 94 2/14/2026
1.0.91 92 2/14/2026
1.0.86 97 2/14/2026
1.0.45 93 2/12/2026