Aman
Aman

Reputation: 11

Asp.NET Core web application not showing on creation of new project

My visual studio 2019 does not show the option to create a project in Asp.NET Core web application (.NET framework). Any suggestions on what to do?

Upvotes: 1

Views: 3664

Answers (2)

Hanuman Tripathi
Hanuman Tripathi

Reputation: 1

In visual Studio 2022, you will find everything in separate templates. Templates names are asp.net core web app (empty) or (mvc) or other templates

Upvotes: 0

Selim Yildiz
Selim Yildiz

Reputation: 5370

From docs

If you don't see the ASP.NET Core Web App template, Then, in the Visual Studio Installer, choose the ASP.NET and web development workload. enter image description here

After that, choose the Modify button in the Visual Studio Installer. If you're prompted to save your work, do so. Next, choose Continue to install the workload. Then, return to step 2 in this "Create a project" procedure.

See also: missing “ASP.NET Core Web Application (.NET Framework)” template

Upvotes: 4

Related Questions