How to update .Net core runtime

Redistro 186 Reputation points
2023-06-02T17:53:33.3866667+00:00

Anyone with experience on how to manage EOL versions of .Net Runtime. Qualys is throwing up alerts for .net version 5.0 and I want to get this resolved with Intune

.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,119 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,334 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 56,021 Reputation points
    2023-06-03T15:52:22.5133333+00:00

    You question is not clear. .net core does not update in place. Each update is installed into its own folder. Some patch installers can be configured to delete lower version patches. But installing a newer version does not delete previous versions.

    also .net core apps a built against a particular version. They will run with the lasted patch version installed, but not a new You can only update the patch version without building the app for a later version.

    so this means if you delete the .net 5 runtime before upgrading all the .net 5 apps, they will not run.

    see:

    https://learn.microsoft.com/en-us/dotnet/core/additional-tools/uninstall-tool?tabs=macos

    0 comments No comments