Hello,
we are currently following this guide (https://docs.telerik.com/aspnet-core/getting-started/first-steps-cli)
to setup Telerik UI for ASP.NET Core 3.0.100 (not RC).
After
we run "dotnet add package Telerik.UI.for.AspNet.Core" we see that the
version "2016.3.914" is downloaded and installed, and NOT the version
"2019.3.917" we see from here:
https://www.telerik.com/account/product-download?product=UIASPCORE
Obviously with old this version "dotnet run" throws errors.
What are we missing?
We tried to downgrade to dotnet SDK 3.0.100-RC but nothing changes.
Forcing
installing the specific version with "dotnet add package Telerik.UI.for.AspNet.Core -v
2019.3.917" returns error "Unable to find package
Telerik.UI.for.AspNet.Core with version (>= 2019.3.917)"
Our
platform is Linux and we downloaded dotnet sdk from here
https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-3.0.100-linux-x64-binaries
We have trial license of ProgressĀ® TelerikĀ® UI for ASP.NET Core
Thanks for your support
my nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="telerik.com" value="https://nuget.telerik.com/nuget" />
</packageSources>
<packageSourceCredentials>
<telerik.com>
<add key="Username" value="enrico.papi@re-lab.it" />
<add key="ClearTextPassword" value="*********" />
</telerik.com>
</packageSourceCredentials>
</configuration>
my csproj after we add the package:
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2016.3.914" />
</ItemGroup>
</Project>