Skip to content
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
21 changes: 12 additions & 9 deletions installation/nuget.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,20 +142,23 @@ You can [generate your Telerik NuGet API Key on telerik.com](https://www.telerik

The `Telerik.UI.for.Blazor` NuGet package and most of its dependencies reside on `nuget.telerik.com`. On the other hand, the [Telerik icon packages]({%slug common-features-icons%}) reside on `nuget.org`. The correct [package source mapping](https://learn.microsoft.com/en-us/nuget/consume-packages/package-source-mapping) configuration should be similar to:

>caption packageSourceMapping configuration for Telerik UI for Blazor
>caption packageSourceMapping configuration for Telerik UI for Blazor and other Telerik Packages

<div class="skip-repl"></div>

````CSHTML
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
<package pattern="Telerik.FontIcons" />
<package pattern="Telerik.SvgIcons" />
</packageSource>
<packageSource key="TelerikOnlineFeed">
<package pattern="Telerik.*" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="*" />
<package pattern="Telerik.FontIcons" />
<package pattern="Telerik.SvgIcons" />
</packageSource>
<packageSource key="TelerikOnlineFeed">
<package pattern="Telerik*" />
<package pattern="Kendo*" />
<package pattern="UI.for*" />
<package pattern="JustMock*" />
</packageSource>
</packageSourceMapping>
````

Expand Down