TrustIdentity.Server 1.0.2

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

TrustIdentity.Server

Meta-package for TrustIdentity - All-in-one OAuth 2.0 / OpenID Connect server


📦 Overview

TrustIdentity.Server is the main meta-package that includes all necessary components to run a complete OAuth 2.0 / OpenID Connect server. This package is designed for easy installation and setup.


🚀 Installation

dotnet add package TrustIdentity.Server

📋 What's Included

This meta-package includes:

  • TrustIdentity.Core - Core OAuth/OIDC engine
  • TrustIdentity.AspNetCore - ASP.NET Core integration
  • TrustIdentity.Abstractions - Interfaces and models
  • TrustIdentity.UI - Login/Consent UI (optional)

🎯 Quick Start

Basic Setup

using TrustIdentity.AspNetCore.Extensions;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddTrustIdentity(options =>
{
    options.IssuerUri = "https://localhost:5001";
})
.AddInMemoryClients(Config.GetClients())
.AddInMemoryIdentityResources(Config.GetIdentityResources())
.AddInMemoryApiScopes(Config.GetApiScopes())
.AddDeveloperSigningCredential();

var app = builder.Build();
app.UseTrustIdentity();
app.Run();

📚 Documentation


🔧 Additional Packages

Optional Packages

# Database support
dotnet add package TrustIdentity.Storage

# SAML 2.0 support
dotnet add package TrustIdentity.Saml

# WS-Federation support
dotnet add package TrustIdentity.WsFederation

# AI fraud detection
dotnet add package TrustIdentity.AI

# External providers (Azure AD, Google, etc.)
dotnet add package TrustIdentity.ExternalProviders

# Admin UI
dotnet add package TrustIdentity.Admin

# Backend-for-Frontend
dotnet add package TrustIdentity.Bff

✨ Features

  • ✅ OAuth 2.0 & OpenID Connect 1.0
  • ✅ All 9 grant types
  • ✅ PKCE, DPoP, mTLS, PAR, JAR
  • ✅ FAPI 1.0 & 2.0 compliant
  • ✅ 100% Duende IdentityServer compatible
  • ✅ Free & Open Source (Apache 2.0)

📄 License

Apache 2.0 - See LICENSE

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.2 96 2/5/2026
1.0.1 94 2/4/2026
1.0.0 94 1/22/2026

- Full implementation of OAuth 2.0 and OpenID Connect 1.0.
     - Integrated SAML 2.0 and WS-Federation support.
     - Advanced AI/ML-driven fraud detection and behavioral analysis.
     - FAPI 1.0 & 2.0 (Security Profile) compliance.
     - Support for PKCE, DPoP, Mutual TLS, PAR, and JAR.
     - Entity Framework Core support for SQL Server, PostgreSQL, MySQL, and SQLite.
     - Multi-tenant isolation and Backend-for-Frontend (BFF) patterns.
     - Complete Admin UI and REST API for identity management.