Forum Discussion
MahaauD
Jul 09, 2025Copper Contributor
Do I need to upgrade Microsoft.AspNetCore.* NuGet packages after upgrading the .NET Runtime?
Hi, I'm encountering an issue with our SCA (Software Composition Analysis) scan, which reports several known vulnerabilities in .NET Core components. Specifically, the scan detects that the followin...
UdhayarajanJ
Aug 05, 2025Copper Contributor
If your app is running fine, fully tested, and you’re not using new runtime features, you might delay some package upgrades.
Run this after runtime upgrade:
dotnet list package --outdated
Check if outdated packages have versions compatible with the new runtime.
Upgrade packages selectively based on:
Security patches
Compatibility
Performance gains