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
<PackageReference Include="TCMProject.Infrastructure" Version="26.8.28.2" />
<PackageVersion Include="TCMProject.Infrastructure" Version="26.8.28.2" />
<PackageReference Include="TCMProject.Infrastructure" />
paket add TCMProject.Infrastructure --version 26.8.28.2
#r "nuget: TCMProject.Infrastructure, 26.8.28.2"
#:package TCMProject.Infrastructure@26.8.28.2
#addin nuget:?package=TCMProject.Infrastructure&version=26.8.28.2
#tool nuget:?package=TCMProject.Infrastructure&version=26.8.28.2
Package Description
| Product | Versions 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. |
-
net10.0
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0)
- System.Runtime.Caching (>= 10.0.0)
- TCMProject.Common (>= 26.8.25.1)
- TCMProject.DataSources (>= 26.5.15.1)
- TCMProject.Utilities (>= 26.5.15.1)
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 |
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.