Home > other >  .NET 6.0 missing when creating a ASP.NET MVC Application in visual basic
.NET 6.0 missing when creating a ASP.NET MVC Application in visual basic

Time:12-01

I'd like to create a MVC web app using ASP.NET and visual basic. So, in Visual Studio, i've selected the corresponding template project : enter image description here

In the next screen, why .NET 6.0 is missing (considering that if I select C# project template, .NET 6.0 is selectable) ? enter image description here

EDIT: I used Visual Studio Community 2022 up to date. Here are the choices that i had when filtered to VB and Web project type: enter image description here

CodePudding user response:

Which version are you using? .NET 6 is only supported in VS 2022.

Another thing: You selected (.NET Framework) project. You have to select (Core)

  • Related