Trellis.Authorization 3.0.0-alpha.342

This is a prerelease version of Trellis.Authorization.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Trellis.Authorization --version 3.0.0-alpha.342
                    
NuGet\Install-Package Trellis.Authorization -Version 3.0.0-alpha.342
                    
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.342" />
                    
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.342" />
                    
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.342
                    
#r "nuget: Trellis.Authorization, 3.0.0-alpha.342"
                    
#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.342
                    
#: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.342&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Trellis.Authorization&version=3.0.0-alpha.342&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.Testing.AspNetCore

ASP.NET Core integration test utilities for Trellis - WebApplicationFactory helpers, DI service replacement, fake time providers, and MSAL token acquisition

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.0-alpha.432 142 7/6/2026
3.0.0-alpha.428 156 7/3/2026
3.0.0-alpha.425 196 6/27/2026
3.0.0-alpha.419 109 6/24/2026
3.0.0-alpha.418 284 6/23/2026
3.0.0-alpha.417 105 6/23/2026
3.0.0-alpha.397 198 6/18/2026
3.0.0-alpha.396 104 6/18/2026
3.0.0-alpha.394 120 6/18/2026
3.0.0-alpha.385 119 6/15/2026
3.0.0-alpha.382 111 6/12/2026
3.0.0-alpha.372 110 6/10/2026
3.0.0-alpha.360 151 6/7/2026
3.0.0-alpha.342 143 6/5/2026
3.0.0-alpha.337 107 6/3/2026
3.0.0-alpha.336 95 6/3/2026
3.0.0-alpha.304 111 5/29/2026
3.0.0-alpha.158 125 4/5/2026
3.0.0-alpha.157 70 4/4/2026
3.0.0-alpha.140 86 3/30/2026
Loading failed