Trellis.Authorization 3.0.0-alpha.428

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

Trellis.Authorization

NuGet Package

Lightweight authorization primitives for permissions, actors, and resource-based checks.

Installation

dotnet add package Trellis.Authorization

Quick Example

using System.Collections.Generic;
using Trellis;
using Trellis.Authorization;

var actor = Actor.Create("user-1", new HashSet<string> { "orders:read" });

IResult result = actor.HasPermission("orders:read")
    ? Result.Ok()
    : Result.Fail(new Error.Forbidden("policy.id") { Detail = "Missing permission." });

Key Features

  • Defines Actor, ActorId, IActorProvider, IAuthorize, and resource authorization interfaces.
  • Actor.Id is the strongly-typed ActorId value object — reuse it on consumer aggregate boundaries (Order.CreatedByActorId, Document.LastModifiedByActorId) for type-checked principal-identity comparisons.
  • Works without ASP.NET Core, Mediator, or any web dependency.
  • Keeps permission rules inside the same Result-based workflow as the rest of your application.

Documentation

Part of Trellis

This package is part of the Trellis framework.

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 (9)

Showing the top 5 NuGet packages that depend on Trellis.Authorization:

Package Downloads
Trellis.Asp

ASP.NET Core integration for Trellis. Result-to-HTTP response mapping, scalar value validation, JSON converters (with bundled AOT source generator), and ASP.NET actor providers (Claims, Entra, Easy Auth, Development) for Trellis.Authorization.

Trellis.Mediator

Result-aware pipeline behaviors for martinothamar/Mediator. Provides validation, authorization, logging, tracing, and exception handling behaviors that understand Trellis Result types and short-circuit correctly.

Trellis.Testing

FluentAssertions extensions and test doubles for Trellis - assert Result, Maybe, and Error types with readable fluent syntax

Trellis.EntityFrameworkCore

EF Core integration for Trellis. Convention-based value converter registration for Trellis primitives, Result-returning SaveChanges wrappers, Maybe/Result query extensions, and provider-agnostic database exception classification.

Trellis.Asp.Authorization

Azure Entra ID v2.0 actor provider for Trellis. Maps JWT claims to Actor with permissions, forbidden permissions, and ABAC attributes. Integrates Trellis.Authorization with ASP.NET Core.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.0-alpha.428 48 7/3/2026
3.0.0-alpha.425 187 6/27/2026
3.0.0-alpha.419 100 6/24/2026
3.0.0-alpha.418 275 6/23/2026
3.0.0-alpha.417 100 6/23/2026
3.0.0-alpha.397 194 6/18/2026
3.0.0-alpha.396 98 6/18/2026
3.0.0-alpha.394 110 6/18/2026
3.0.0-alpha.385 114 6/15/2026
3.0.0-alpha.382 106 6/12/2026
3.0.0-alpha.372 106 6/10/2026
3.0.0-alpha.360 148 6/7/2026
3.0.0-alpha.342 137 6/5/2026
3.0.0-alpha.337 103 6/3/2026
3.0.0-alpha.336 89 6/3/2026
3.0.0-alpha.304 106 5/29/2026
3.0.0-alpha.158 122 4/5/2026
3.0.0-alpha.157 66 4/4/2026
3.0.0-alpha.140 82 3/30/2026
3.0.0-alpha.137 86 3/27/2026
Loading failed