New to Telerik UI for .NET MAUIStart a free 30-day trial

Using .NET CLI

Updated on May 18, 2026

If you do not use a Visual Studio's NuGet Package manager or a custom NuGet.Config file, you can also manage NuGet packages by using the .NET CLI.

As of Q2 2026, the Telerik.UI.for.Maui package is available on the public NuGet.org registry. This is the recommended way to install the libraries because NuGet.org is the default package source for the .NET CLI, so no additional feed configuration is required. Navigate to your project directory and run:

bash
dotnet add package Telerik.UI.for.Maui

Installing from the Telerik NuGet Server

As an alternative, you can add the Telerik NuGet server as a package source and install from there. Use the add source or update source command to add the new source and set the credentials required for authentication.

  1. Generate a NuGet API Key.
  2. Add or update the Telerik NuGet source by using .NET CLI and the generated API key:
bash
dotnet nuget add source https://nuget.telerik.com/v3/index.json --name TelerikNuGetFeed --username api-key --password <THE-VALUE-OF-YOUR-API-KEY> --store-password-in-clear-text

See Microsoft's security best practices for more information on how to securely store your NuGet source credentials.

See Also