Adding the Telerik Private NuGet Feed to VS
The legacy https://nuget.telerik.com/nuget server is now deprecated. Make sure you are using the new https://nuget.telerik.com/v3/index.json server, which is faster, lighter, and reduces the number of requests from your NuGet client.
Telerik provides NuGet packages from the private Telerik NuGet feed which you can add to the Visual Studio NuGet package manager.
Prerequisites
Visual Studio 2012 or later.
Valid Telerik Reporting trial or commercial license.
Setup
Open Visual Studio.
Go to Tools > NuGet Package Manager > Package Manager Settings, select Package Manager Sources and click the + button.
-
Choose the feed Name, set the feed URL to https://nuget.telerik.com/v3/index.json and click OK.
The Visual Studio NuGet Package Manager and the Telerik NuGet Feed
Create or load your project.
Go to Tools > NuGet Package Manager > Manage NuGet Packages for solution.
In the upper right-hand corner of the Manage Packages for Solution window, select the Telerik Package source that you just added.
Depending on your Visual Studio version, choose the Online or Browse list of packages.
In the Windows Authentication dialog, enter your Telerik credentials. For example, user: my.name@my.company.com and password: myPassPhraseForTelerikDotCom.
-
Enter your credentials only once by selecting the Remember my password checkbox.
Enter your Telerik.com credentials to access the Telerik NuGet feed
Now all the packages that are licensed to the above users are available in the Visual Studio NuGet Package manager.
Setup with NuGet CLI
Download the latest NuGet executable.
Open a Command Prompt and change the path to the
nuget.exe
location.-
The command from the example below stores a token in the
%AppData%\NuGet\NuGet.config
file. Your original credentials cannot be obtained from this token.NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/v3/index.json" ^ -UserName "your login email" -Password "your password"
If you are unable to connect to the feed by using encrypted credentials, store your credentials in clear text.
NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/v3/index.json" ^ -UserName "your login email" -Password "your password" ^ -StorePasswordInClearText
If you have already stored a token instead of storing the credentials as clear text, update the definition in the
%AppData%\NuGet\NuGet.config
file by using the following command:NuGet Sources Update -Name "telerik.com" -Source "https://nuget.telerik.com/v3/index.json" ^ -UserName "your login email" -Password "your password" ^ -StorePasswordInClearText