From 38a88fd231052e74db3600de5aaefd109153ec02 Mon Sep 17 00:00:00 2001
From: Dimo Dimov <961014+dimodi@users.noreply.github.com>
Date: Thu, 24 Jul 2025 21:06:31 +0300
Subject: [PATCH 1/2] docs(Common): Clarify multi-project setup to avoid a
license banner
---
installation/license-key.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/installation/license-key.md b/installation/license-key.md
index 2aa392a861..446be23b25 100644
--- a/installation/license-key.md
+++ b/installation/license-key.md
@@ -66,18 +66,18 @@ The new license key includes information about all previous purchases. This proc
Telerik UI for Blazor may be used in a referenced project in a multi-project app, for example:
* In the **Client** project of a Blazor Web App with **WebAssembly** or **Auto** render mode.
-* In a Razor class library project, which is used by a main web project.
+* In a Razor class library (RCL) project, which is used by another web or RCL project.
In such cases, you may see a yellow banner in the browser, which says "We couldn't verify your license key for Telerik UI for Blazor. Please see the build log for details and resolution steps".
There are two alternative ways to avoid the warning banner:
-* Set `PrivateAssets="none"` to the Telerik UI for Blazor NuGet package registration tag.
+* Set `PrivateAssets="none"` to the Telerik UI for Blazor NuGet package registration tag. This approach is applicable only if the main (startup) app project directly references the project that includes Telerik UI for Blazor.
````XML.skip-repl
````
-* Reference the `Telerik.Licensing` package explicitly in all projects that reference other projects with Telerik packages. You can use the same version that is referenced by the `Telerik.UI.for.Blazor` NuGet package, or a newer version.
+* Reference the `Telerik.Licensing` NuGet package explicitly in the main (startup) app project. This approach is required if your are using Telerik UI for Blazor in a project hierarchy with more than two levels. For example, Telerik UI for Blazor is used in Razor Class Library (RCL) project C, which is referenced by RCL project B, which is referenced by the main (startup) app project A. You can use the same `Telerik.Licensing` version that is referenced by `Telerik.UI.for.Blazor`, or a newer version.
````XML.skip-repl
From 8abaa7272f7d651a92caf4f6e474bcc77455a07d Mon Sep 17 00:00:00 2001
From: Dimo Dimov <961014+dimodi@users.noreply.github.com>
Date: Thu, 24 Jul 2025 21:09:45 +0300
Subject: [PATCH 2/2] Update installation/license-key.md
---
installation/license-key.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/installation/license-key.md b/installation/license-key.md
index 446be23b25..083d7913f3 100644
--- a/installation/license-key.md
+++ b/installation/license-key.md
@@ -77,7 +77,7 @@ There are two alternative ways to avoid the warning banner:
````
-* Reference the `Telerik.Licensing` NuGet package explicitly in the main (startup) app project. This approach is required if your are using Telerik UI for Blazor in a project hierarchy with more than two levels. For example, Telerik UI for Blazor is used in Razor Class Library (RCL) project C, which is referenced by RCL project B, which is referenced by the main (startup) app project A. You can use the same `Telerik.Licensing` version that is referenced by `Telerik.UI.for.Blazor`, or a newer version.
+* Reference the `Telerik.Licensing` NuGet package explicitly in the main (startup) app project. This approach is required if you are using Telerik UI for Blazor in a project hierarchy with more than two levels. For example, the main (startup) app project A references a Razor Class Library (RCL) project B, which references RCL project C that includes Telerik UI for Blazor. You can use the same `Telerik.Licensing` version that is referenced by `Telerik.UI.for.Blazor`, or a newer version.
````XML.skip-repl