wildbisu
wildbisu

Reputation: 172

Using Telerik Kendo in ASP.NET Core MVC Web application

I am starting with usage of Telerik Kendo UI in my ASP.NET core sample web application. I am following the guide descried here: http://docs.telerik.com/aspnet-core/getting-started I have paid account for Telerik and the same I am using to install NugetPackge in my solution from private Nuget feed of Telerik.

We are doing a collaborative development using Bitbucket and when others download my solution they get error while Restoration of Packages in .Net Core MVC web app.

Error: Unable to resolve 'Telerik.UI.for.AspNet.Core (>= 2017.1.118)' for '.NETCoreApp,Version=v1.0'.

Do I need to configure the Telerik private feed in every developer's Visual Studio? Can anyone please point me in the right direction how can we use Telerik Kendo for our Product in Production environment. I am new to this, kindly pardon my meager understanding(s).

Thanks.

Upvotes: 1

Views: 2300

Answers (1)

chambo
chambo

Reputation: 491

You will need to either:

1) setup the private nuget feed on each other developers environment so they can restore the Telerik Kendo UI package

or

2) configure the private feed in the nuget.config file in the .nuget folder of the solution

<packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
    <add key="Contoso Package Source" value="https://contoso.com/packages/" />
    <add key="Test source" value="c:\packages" />
</packageSources>

Reference: https://learn.microsoft.com/en-us/nuget/schema/nuget-config-file

Upvotes: 2

Related Questions