TCMProject.Application 26.5.22.1

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

Package Downloads
TCMProject.Web

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.5.22.1 129 5/22/2026
26.5.21.1 98 5/21/2026
26.5.15.3 98 5/16/2026
26.5.15.2 89 5/15/2026
26.5.15.1 185 5/15/2026
26.5.12.1 104 5/13/2026
26.5.5.5 150 5/6/2026
26.5.5.4 99 5/6/2026
26.5.5.3 104 5/6/2026
26.5.5.2 86 5/6/2026
26.5.5.1 90 5/6/2026
26.4.28.3 103 4/29/2026
26.4.28.2 101 4/29/2026
26.4.28.1 101 4/29/2026
5.8.2.1 134 8/3/2025
5.2.11.1 195 2/12/2025
4.10.23.1 172 10/24/2024
4.10.10.1 173 10/11/2024
4.9.27.2 172 9/28/2024
4.8.28.1 172 8/29/2024
Loading failed

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.