Filipe
Filipe

Reputation: 158

.NET 6 not showing up in Visual Studio 2022

I have .NET 6 installed.

enter image description here

But it doesn't show up.

enter image description here

enter image description here

I even have the "Use previews of the .NET SDK" on.

I don't understand what I'm missing.

Upvotes: 0

Views: 3114

Answers (2)

Rees hunt
Rees hunt

Reputation: 13

Exactly right like Mike said. You should try cmd to check if dotnet is installed or not. Try dotnet list-sdks to show all versions installed for dotnet core. Or you can see the selected version by dotnet --version

Upvotes: -1

Mike93041
Mike93041

Reputation: 387

First of all .NET Framework 6.0 does not exist, the latest release is actually .NET Framework 4.8.1. What you mean is .NET 6 or if you prefer using the old naming then .NET core 6.

For you to use .NET 6 be sure to create a project using a template without the (.NET Framework) at the end (if coming from an existing .NET Framework project you need to migrate it to .NET 6)

.NET Framework and .NET (.NET Core) are completely different enviroments, .NET Framework being the oldest which is replaced by the newer .NET (.NET Core).

You can check this for more information about .NET Framework vs .NET Core vs .NET vs .NET Standard vs C#.

Upvotes: 7

Related Questions