Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual studio 2017 / 2019 add areas missing

Tags:

While creating a ASP.NET MVC Core Web app using VS2017 / 2019, came across that 'Add Areas' option is missing from Context menu.

like image 460
Akshay Chawla Avatar asked Apr 11 '17 09:04

Akshay Chawla


1 Answers

Area is not removed from VS 2017/19 but it is moved in Scaffolding and you can access the area using below steps:

1) Right click on your project and click on Add>New Scaffolded Item

2) After click choose the MVC area from the Menu:

enter image description here

3) After choosing give it Name, and after this the Area will be added to your project:

enter image description here

Hope it will helps.

like image 126
Sunil Kumar Avatar answered Sep 29 '22 21:09

Sunil Kumar