Reputation: 123
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
Reputation: 2766
Please take a look at the project type guid and then search for the guid on here
<ProjectTypeGuids>
element in the project file, not to be confused with <ProjectGuid>
which is a unique identifier for your project.<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
describes a Xamarin.Android library in C#.Upvotes: 1