I am loading an already checked in MVC project.
The .csproj file has the following projecttypeguids :
<ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
But, when I load the project on my VS, the Projecttypeguids is getting updated to the following:
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
On looking in the internet, I found that the guid that is removed corresponds to MVC4. I am not sure why the GUID is being removed when I load the project. Also, I do have MVC4 installed. When I created a new MVC4 Project, I see the GUID appear in that new project.
Anything I am missing here ?
Thanks !