kalitsov
kalitsov

Reputation: 1639

Microsoft .NET Core SDK manager

It turned out that i have tens of side by side installed Microsoft .NET Core SDK 2.1.??? (x64) visible from Apps & Features windows settings. e.g.

Microsoft .NET Core SDK 2.1.100 (x64)
Microsoft .NET Core SDK 2.1.102 (x64)
Microsoft .NET Core SDK 2.1.104 (x64)
...
Microsoft .NET Core SDK 2.1.509 (x64)
Microsoft .NET Core SDK 2.1.511 (x64)
Microsoft .NET Core SDK 3.1.101 (x64)

Is there some kind of "dotnet core" runtime manager to keep these under control? e.g. like we have Android SDK manager where we can install/uninstall what we need in a batch?

Note: My problem is that if there is no such manager, i have to manually go through all uninstalls one by one.

Upvotes: 2

Views: 877

Answers (1)

Henkolicious
Henkolicious

Reputation: 1401

I believe you have to generate a globals.json file in your current working directory, if you use the CLI.

https://learn.microsoft.com/en-us/dotnet/core/tools/global-json?tabs=netcore3x

Upvotes: 1

Related Questions