Installed .NET Core / .NET Frameworks

Overview

This article lists the .NET Core and .NET runtime versions installed on the platform. These are not the same thing as the ASP.NET Framework setting in the Everleap Control Panel, which offers only 2.0/3.5 and 4.x and covers the older .NET Framework. You will not find a .NET Core version in that dropdown, and you do not need to change it to run a .NET Core application.

Two terms are used below:

  • Framework-dependent deployment (FDD) means your application relies on the runtime already installed on the server. It only works if the version you built against is one of those listed here.
  • Self-contained deployment (SCD) means your application ships its own copy of the runtime. It works regardless of what is installed on the server, at the cost of a larger deployment.

The versions supporting framework-dependent deployment are listed below. Versions not listed can be deployed with self-contained deployment until the framework is installed.

.NET Core versions currently supported

VersionStatus
1.0.xOut of support version
1.1.xOut of support version
2.1.xOut of support version
2.2.xOut of support version
3.0.xOut of support version
3.1.xSupported Version

"Out of support version" means the runtime is installed and your application will still run, but Microsoft no longer issues fixes for it.

.NET versions currently supported

VersionAlso known as
5.0.x.NET Core 5.0.x, ASP.NET Core 5.0.x
6.0.x.NET Core 6.0.x, ASP.NET Core 6.0.x
7.0.x.NET Core 7.0.x, ASP.NET Core 7.0.x
8.0.x.NET Core 8.0.x, ASP.NET Core 8.0.x
9.0.x.NET Core 9.0.x, ASP.NET Core 9.0.x
10.0.x.NET Core 10.0.x, ASP.NET Core 10.0.x

If your version is not listed

Publish the application as a self-contained deployment. It will carry its own runtime and does not depend on what is installed here.

Related Articles