RickAndMSFT
RickAndMSFT

Reputation: 22840

What version of the .NET Core SDK is installed

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

Upvotes: 12

Views: 3966

Answers (1)

RickAndMSFT
RickAndMSFT

Reputation: 22840

 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.

Upvotes: 16

Related Questions