Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What version of the .NET Core SDK is installed

Tags:

.net

How can I tell what versions of the .NET Core SDK are installed. How can I tell and which one is being used?

like image 966
RickAndMSFT Avatar asked Mar 27 '18 01:03

RickAndMSFT


People also ask

How do I check my net core SDK version?

You can see both the SDK versions and runtime versions with the command dotnet --info .

Where is .NET Core SDK installed?

NET are installed to the normal C:\Program Files\dotnet\ folder. However, when you install the x64 version of . NET 6 SDK, it's installed to the C:\Program Files\dotnet\x64\ folder.

How do I know what SDK is installed?

To start the SDK Manager from within Android Studio, use the menu bar: Tools > Android > SDK Manager. This will provide not only the SDK version, but the versions of SDK Build Tools and SDK Platform Tools. It also works if you've installed them somewhere other than in Program Files.

What is Microsoft .NET core SDK?

NET SDK is a set of libraries and tools that allow developers to create . NET applications and libraries. It contains the following components that are used to build and run applications: The . NET CLI.


1 Answers

 dotnet --version

Displays the version being used.

dotnet --list-sdks

Lists the versions installed. Requires .NET Core SDK 2.1 and later.

See also See Windows or Visual Studio can't find the latest installed .NET SDK due to bitness

Windows key > apps & features and search on .net core. From apps & features you can uninstall SDKs you're not using.

like image 73
RickAndMSFT Avatar answered Oct 19 '22 20:10

RickAndMSFT