The project type is not supported by this installation

visual studio 2010

I am trying to open an MVC 3 project on my system but I am getting following error:


Microsoft Visual Studio

The project file 'C:\Users\abc\Desktop\trunk\iCorpNow\iCorpNow.csproj' cannot be opened.

The project type is not supported by this installation.

OK Help

I have both asp.net MVC 2 and asp.net MVc 3 installed on my development machine
I have windows 7 installed on my machine.
I have visual studio 2010 ultimate installed.

Project is developed using asp.net MVc 3 and on Windows server 2008 using Visual studio professional 2010

Please suggest me how to fix this error.

Here are the project types listed in my project file

<ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>

Thanks.

Best Answer

The problem you're having is that your project using Asp.Net MVC4 but you've only installed 2 and 3. If you install Asp.Net MVC4 it should allow you to open the project.

The way to tell that this is the problem is by examining the GUIDs which are associated with the ProjectType entry in the project file. In this example they are

  • {fae04ec0-301f-11d3-bf4b-00c04f79efbc}: C# project
  • {349c5851-65df-11da-9384-00065b846f21}: Web Application
  • {E3E379DF-F4C6-4180-9B81-6769533ABE47}: Asp.Net MVC 4

Both C# and Web Application come standard with Visual Studio Pro and above hence the missing piece must be Asp.Net MVC 4