Home > Blockchain >  Visual Studio 2022 - Visual Basic ASP.NET Web Application
Visual Studio 2022 - Visual Basic ASP.NET Web Application

Time:12-06

I 've downloaded/installed Visual Studio 2022 Community Edition but there is no way to find the ability to create a new ASP.NET Web Application (.Net Framework) using Visual Basic. It looks like i can only develop Windows Desktop Application using it.

Has it been deprecated ? If not how can i bring it back to life?

CodePudding user response:

Run the Visual Studio installer. Inside the .NET group, below the ".NET Framework 4.8 targeting pack", there is a component named .NET Framework project and item templates and make sure that you have installed it.

Visual Studio 2022 Installer - individual components .in NET group

Hovering over the component, the tooltip describes it as:

Enables .NET Framework project templates, item templates & related features for .NET Framework development.

enter image description here

See: https://www.howtosolutions.net/2021/11/visual-studio-missing-asp-net-web-application-template-dotnet-framework/

  • Related