How to Check if .NET Core is installed ?

If you need to find out if the .NET Core is installed in Windows and which version of the SDK is installed , you can use the dotnet –info command from the Windows command prompt.

How to Check if .NET Core is installed?

dotnet --info

The above command prints out the installed runtimes and SDK versions along with other information.

If you need only the details of the SDK’s installed, you can use the below command

dotnet --list-sdks

If you want to list only the installed runtimes , you can use the below command.

dotnet --list-runtimes
How to Check if .NET Core is installed ?

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the error message “FileOpenAccessDenied – You do not have permissions to open this file...
  • .NET
  • December 3, 2024
You might have had a situation where your code once worked fine in ASP.NET application but now throws the below...
  • .NET
  • December 3, 2024
C# uses the flower bracket “{” and “}” to identify the block or scope of the function or program ....
  • .NET
  • December 3, 2024