Hello,
I see this often when running your Product updater, or it may come from within VS 2026 when it prompts to update projects. I had Telerik UI for Blazor 13.2 installed, updated using the product updater and got the prompt for the project updater and now 13.3.0 is active. The problem though is when you add a new version entry in the nuget package sources the older version(s) are not being removed. This breaks the build, it will fail to restore packages, etc.
Hello,
The behavior you described can happen if old local NuGet package source entries for previous Telerik UI for Blazor versions remain in your nuget.config after updating. This is common when using the Product Updater or Visual Studio's update prompts, as these tools may add new package sources but not automatically remove outdated ones.
Why this happens:
How to resolve:
nuget.config file (usually found at the solution root or project directory).<packageSources> entries pointing to old Telerik UI for Blazor local feeds. Keep only the latest version or the official Telerik NuGet feed:<packageSources>
<add key="Telerik" value="https://nuget.telerik.com/v3/index.json" />
</packageSources>
dotnet nuget locals all --clear
dotnet restore
I would wecommend you to use Telerik Blazor Upgrade Wizard to upgrade the version of existing Telerik UI for Blazor app.
It will replace the older version with the latest version and your proj file would look similar to:
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Telerik.UI.for.Blazor">
<Version>13.3.0</Version>
</PackageReference>
</ItemGroup>
</Project>Preventative measures:
nuget.config for old entries and remove them manually.Questions for clarification:
nuget.config located at the solution root, or do you have multiple configs in subfolders? If so, the issue might persist across configs.References:
Best Regards,
Misho
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.