TCMProject.Infrastructure 26.8.28.2

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

Package Description

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

Showing the top 1 NuGet packages that depend on TCMProject.Infrastructure:

Package Downloads
TCMProject.Web

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.8.28.2 221 8/28/2026
26.8.25.1 97 8/25/2026
26.5.22.1 257 5/22/2026
26.5.21.1 105 5/21/2026
26.5.15.3 116 5/16/2026
26.5.15.2 110 5/15/2026
26.5.15.1 357 5/15/2026
26.5.12.1 104 5/13/2026
26.5.5.5 169 5/6/2026
26.5.5.4 108 5/6/2026
26.4.28.3 122 4/29/2026
26.4.28.2 111 4/29/2026
26.4.28.1 111 4/29/2026
5.5.20.1 232 5/21/2025
5.3.31.3 231 4/1/2025
5.3.31.2 220 4/1/2025
5.3.31.1 212 4/1/2025
5.3.25.1 532 3/26/2025
5.2.11.1 191 2/12/2025
5.2.10.2 173 2/11/2025
Loading failed

La unidad de resolucion de permisos se muda de TCMProject.Web a TCMProject.Infrastructure (namespace TCMProject.Infrastructure.Authorization): IPermissionChecker, PermissionChecker, IPermissionCache, InMemoryPermissionCache, IAccountsClient y AccountsClient. En Web queda solo la maquinaria de politicas de ASP.NET: HasPermissionAttribute, PermissionRequirement, PermissionAuthorizationHandler y RedisPermissionCache. Motivo: el checker se introdujo en 26.8.28.1 dentro de Web, y eso obligaba a cada servicio a escribir un adaptador en su proyecto API —el unico que referencia TCMProject.Web— rompiendo el patron por capas del resto del arranque. Desde esta version el adaptador vive en la capa Infrastructure del servicio, junto a los demas. AccountsClient tenia que moverse si o si: Web ya depende de Infrastructure, asi que dejarlo arriba habria creado una dependencia circular entre paquetes. La unidad queda ademas junto a AuthenticatedUser, que ya vivia en TCMProject.Infrastructure: identidad y autorizacion en el mismo paquete. El registro NO se movio —AddAuthorizationService sigue en Web y registra las tres piezas— asi que los consumidores no cambian una linea de codigo, solo versiones. IMPORTANTE para adoptantes: Web 26.8.28.2 exige Infrastructure >= 26.8.28.2 y Common >= 26.8.25.1. El piso de Common es real y no se puede bajar (AuthenticatedUser usa UserLogged.PractitionerUid); el de Utilities se dejo en 26.5.15.1 con VersionOverride porque era el pin del repo y no una necesidad del codigo. Consecuencia consciente: Web deja de poder adoptarse sin tocar otros paquetes, propiedad que 26.8.26.2 habia protegido. Se acepto a cambio de que la ubicacion del codigo sea la correcta.