New to Telerik Reporting? Download free 30-day trial

Document Processing Libraries Licensing Warning in Telerik Reporting

Environment

Version Product Author
19.2.25.813 Telerik Reporting Desislava Yordanova

Description

After upgrading to Q3 2025, a licensing warning, related to Telerik Document Processing Libraries, occurs while using Telerik Reporting. A valid Telerik Reporting license is available, but the Telerik Document Processing Libraries is not explicitly used in the project.

Possible warning messages:

Telerik and Kendo UI Licensing warning TKL101: Telerik Document Processing Libraries is not listed in your current license file.

Telerik and Kendo UI Licensing warning TKL102: Your current license has expired and is not valid for Telerik Document Processing Libraries version 2025.2.807.20.

Solution

This unexpected behavior was introduced with the 2025 Q3 release due to newly added DPL code that is being used internally.

The possible solution is to ignore the warning. If the project treats warnings as errors, add an exception to the rule in the csproj file.

Follow the steps:

  1. Ignore the warning if you are not explicitly using Telerik Document Processing Libraries outside of the Report Viewer.
  2. If your project treats warnings as errors, add an exception to the rule in the .csproj file. Use the following configuration:
<PropertyGroup>  
  <TreatWarningsAsErrors>true</TreatWarningsAsErrors>  
  <NoWarn>TKL102;TKL004</NoWarn>  
</PropertyGroup>  

This configuration suppresses the specific warnings TKL102 and TKL004 related to the Telerik Document Processing Libraries license not being found.

In this article