Skip to content

Commit f5fec1d

Browse files
authored
docs(Common): Clarify multi-project setup to avoid a license banner (#3129)
* docs(Common): Clarify multi-project setup to avoid a license banner * Update installation/license-key.md
1 parent 90aa3ae commit f5fec1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

installation/license-key.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ The new license key includes information about all previous purchases. This proc
6666
Telerik UI for Blazor may be used in a referenced project in a multi-project app, for example:
6767

6868
* In the **Client** project of a Blazor Web App with **WebAssembly** or **Auto** render mode.
69-
* In a Razor class library project, which is used by a main web project.
69+
* In a Razor class library (RCL) project, which is used by another web or RCL project.
7070

7171
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".
7272

7373
There are two alternative ways to avoid the warning banner:
7474

75-
* Set `PrivateAssets="none"` to the Telerik UI for Blazor NuGet package registration tag.
75+
* 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.
7676
````XML.skip-repl
7777
<PackageReference Include="Telerik.UI.for.Blazor" Version="{{site.uiForBlazorLatestVersion}}" PrivateAssets="none" />
7878
````
7979

80-
* 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.
80+
* 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.
8181
````XML.skip-repl
8282
<ItemGroup>
8383
<PackageReference Include="Telerik.Licensing" Version="*" />

0 commit comments

Comments
 (0)