Thomas
Thomas

Reputation: 95

After Installing .NET SDK 5.0, should I also install .NET Core?

I'm new to C# programing & i just installed .NET SDK but i'm confused if I should also install .NET Core SDK or should I leave .NET SDK alone. I've tried searching on google & on YouTube but I can't find the answer.

Upvotes: 4

Views: 649

Answers (1)

Observer
Observer

Reputation: 130

.NET 5.0 is the new release of the family. The goal is to merge .NET Framework and .NET Core into one unified platform.

So in short this is a new version of .NET Core, if you just want to start programing in .NET without the need of one version or another you're fine.

You can check with dotnet --info the .NET SDKs installed

Upvotes: 5

Related Questions