Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update adding-license-key-ci-cd-services.md #577

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Adding the License Key to CI/CD Services
page_title: Adding the License Key to CI/CD Services
slug: adding-license-key-ci-cd-services
tags: ci, cd, service, services, license, key, document, processing, libraries
tags: ci, cd, service, services, license, key, document, processing, libraries, lambda, plugin, vsto, extension, function
published: True
position: 1
---
Expand Down Expand Up @@ -93,7 +93,7 @@ Copy-Item -Path $(telerikLicense.secureFilePath) -Destination "$(Build.Repositor

### Using TelerikLicensing.Register method on AWS Lambdas

As of version **1.6.7** [ Telerik.Licensing](https://www.nuget.org/packages/Telerik.Licensing) offers the parameterless **TelerikLicensing.Register()** method allowing the developers to validate the Telerik license when running [AWS Lambda](https://docs.aws.amazon.com/lambda/latest/dg/welcome.html) functions. It is necessary to upgrade the Telerik.Licensing NuGet package at least to **1.6.7** and call the Register() method in the body of the function. Thus, the Telerik license will be validated, and the trial message is not expected to be printed (for licensed users) in the generated document:
As of version **1.6.7** [ Telerik.Licensing](https://www.nuget.org/packages/Telerik.Licensing) offers the parameterless **TelerikLicensing.Register()** method and the **TelerikLicensing.Register(…script key…)** method allowing the developers to validate the Telerik license when running [AWS Lambda](https://docs.aws.amazon.com/lambda/latest/dg/welcome.html) functions, plugins, or a class library that uses Telerik Document Processing consumed by any third-party software (Word, Excel, Revit, AutoCAD, MFC app, etc.). It is necessary to upgrade the Telerik.Licensing NuGet package at least to **1.6.7** and call the Register method in the body of the function. Thus, the Telerik license will be validated, and the trial message is not expected to be printed (for licensed users) in the generated document:

```csharp
namespace LicensingInLambda;
Expand Down