pramod maurya
pramod maurya

Reputation: 123

MVC Add Area and Controller Options are missing from Context menu

I am using Visual studio 2013 and after opening an existing project, I am not able to see the add Controller or Area option.

Context menu to Add Controller/View missing

I have tried this question answer but it’s not worked for me

Then I added a new project in that solution and in that project I found all missing options. But in my main project they are still missing .

Upvotes: 1

Views: 567

Answers (1)

Jordy van Eijk
Jordy van Eijk

Reputation: 2766

Please take a look at the project type guid and then search for the guid on here

  1. You will find these properties as a <ProjectTypeGuids> element in the project file, not to be confused with <ProjectGuid> which is a unique identifier for your project.
  2. Some GUIDs are used in combination. For example <ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> describes a Xamarin.Android library in C#.

Upvotes: 1

Related Questions