New to Telerik UI for .NET MAUI? Start a free 30-day trial
Using .NET CLI
Updated on Oct 24, 2025
If you do not use a Visual Studio's NuGet Package manager or a custom NuGet.Config file, you can also add a new package source by utilizing the .NET CLI add source command.
Use the add source or update source command respectively to add the new source and set the credentials required for the authentication by the Telerik NuGet server.
- Generate a NuGet API Key.
- 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.