Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find asp.net core version

Tags:

I'm using websitepanel and in Web Sites ==> Extensions tab, the ASP.NET version is 4 integrated pipeline.
My question is that how can I figure out what version of dot net core is my server using now?
I don't really know if the asp.net is 4, the dot net core is also 4 or not.
And if it's version 4, then does it mean that version 2 is installed?
Because in extensions tab, I have four options: 2, 2 integrated pipeline, 4 and 4 integrated pipeline.
Thanks in advance

like image 975
Saeed Avatar asked May 04 '18 14:05

Saeed


People also ask

How do I find my .Net Core version?

NET Core is installed on Windows is: Press Windows + R. Type cmd. On the command prompt, type dotnet --version.

What is the current Asp.Net Core version?

The latest version of Asp.Net Core is Asp . Net Core 6.0. It was released on November 8, 2021.

How do I tell what version of ASP.NET is installed?

Click Start > Control Panel > Administrative Tools > Internet Information Services (IIS) Manager. On the left pane, expand the entry for Local Computer and click Web Service Extensions. Check that there is an item called ASP.NET v2. 0.50727 and that its status reads Allowed .


1 Answers

To check which .NET Core Version is installed you can run one of the following commands on the command prompt.

dotnet --version      // Display .NET Core SDK version.  dotnet --info          //Display .NET Core information.  dotnet --list-runtimes   // Display the installed runtimes.  dotnet --list-sdks       // Display the installed SDKs. 

Also, you can view all .NET Core versions Installed on the system by navigating to the installation folder on below path.

%ProgramFiles%\dotnet\sdk 
like image 117
ElasticCode Avatar answered Oct 08 '22 02:10

ElasticCode