it seems ASP.NET MVC3 project cannot be opened in a (MVC3 + MVC4) environment.
we have a shared development environment which has both MVC3 and MVC4 environments (VS2010 and VS2013 on Windows 8.1)
and I was trying to open a MVC3 project using visual studio 2010, and I got an error "The project type is not supported by this installation."
I checked project type list in the project file.
<ProjectTypeGuids>{E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
Also, I checked the reference to System.Web.Mvc.dll and it is pointing to C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 3\Assemblies\System.Web.Mvc.dll
, and the physical dll does exist.
I have other projects which have <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
only,
and they are all loaded fine in VS2010.
it seems the issue is about ASP.NET MVC 3 {E53F8FEA-EAE0-44A6-8774-FFD645390401}
in VS2010 with MVC4 installed.
I can't upgrade the project and have to use this MVC3+MVC4 environment. Any ideas of how to load MVC3 project in a (MVC3 + MVC4) environments?
thanks a lot.
Victor