TCMProject.Web
26.5.22.1
dotnet add package TCMProject.Web --version 26.5.22.1
NuGet\Install-Package TCMProject.Web -Version 26.5.22.1
<PackageReference Include="TCMProject.Web" Version="26.5.22.1" />
<PackageVersion Include="TCMProject.Web" Version="26.5.22.1" />
<PackageReference Include="TCMProject.Web" />
paket add TCMProject.Web --version 26.5.22.1
#r "nuget: TCMProject.Web, 26.5.22.1"
#:package TCMProject.Web@26.5.22.1
#addin nuget:?package=TCMProject.Web&version=26.5.22.1
#tool nuget:?package=TCMProject.Web&version=26.5.22.1
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.AspNetCore.Authentication.JwtBearer (>= 10.0.0)
- StackExchange.Redis (>= 2.8.0)
- Swashbuckle.AspNetCore (>= 7.2.0)
- TCMProject.Application (>= 26.5.15.1)
- TCMProject.Common (>= 26.5.15.1)
- TCMProject.Infrastructure (>= 26.5.15.1)
- TCMProject.Utilities (>= 26.5.15.1)
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 |
|---|---|---|
| 26.5.22.1 | 134 | 5/22/2026 |
| 26.5.21.1 | 90 | 5/21/2026 |
| 26.5.15.3 | 98 | 5/16/2026 |
| 26.5.15.2 | 96 | 5/15/2026 |
| 26.5.15.1 | 101 | 5/15/2026 |
| 26.5.12.1 | 98 | 5/13/2026 |
| 26.5.5.5 | 121 | 5/6/2026 |
| 26.5.5.4 | 87 | 5/6/2026 |
| 26.5.5.3 | 101 | 5/6/2026 |
| 26.5.5.2 | 86 | 5/6/2026 |
| 26.5.5.1 | 84 | 5/6/2026 |
| 26.4.28.3 | 117 | 4/29/2026 |
| 26.4.28.2 | 102 | 4/29/2026 |
| 26.4.28.1 | 107 | 4/29/2026 |
| 6.4.9.1 | 108 | 4/10/2026 |
| 6.4.7.2 | 103 | 4/8/2026 |
| 6.4.7.1 | 102 | 4/8/2026 |
| 6.3.30.2 | 102 | 3/31/2026 |
| 6.3.30.1 | 105 | 3/31/2026 |
| 6.3.3.2 | 107 | 3/4/2026 |
UTC DateTime handling as the gold standard (Issue #3, timezone-standardization.md). TCMProject.Infrastructure adds fail-fast EF Core value converters (StrictUtcDateTimeConverter / StrictUtcNullableDateTimeConverter) and the ApplyUtcDateTimeConvention extension over ModelConfigurationBuilder: it forces every DateTime to Kind=Utc and rejects Kind=Unspecified on write instead of guessing a timezone. The existing lenient UtcDateTimeConverters are kept unchanged. TCMProject.Web adds System.Text.Json UtcDateTimeConverter/NullableUtcDateTimeConverter, a UtcDateTimeModelBinder + provider for query-string/route DateTime values, and the AddTcmUtcDateTime extension over IMvcBuilder to wire them in one call. Adoption is opt-in per service. TCMProject.DataSources: EntityFrameworkDataSourceConverter now throws BadRequestException (HTTP 400) instead of NullReferenceException (HTTP 500) when a DataSource sort or filter references a field that does not exist on the entity.