After installing ASP.net MVC, when I attempt to load a existing or a new MVC application (straight from New Project - A project for creating an application using the ASP.NET MVC framework (1.0) (.NET Framework 3.5)) I get the following error:


Microsoft Visual Studio

The project file 'path' cannot be opened.

The project type is not supported by this installation.

OK Help

Tried reinstalling which didn't help. Tried devenv /setup which also didn't help.

Any ideas?

Thanks

Ben

link|improve this question

35% accept rate
feedback

5 Answers

up vote 6 down vote accepted

The reason was because I didn't have the Visual Web Development part of VS installed. I only had the C# language. As such, MVC didn't check and installed successfully but couldn't use the underlying part.

After installing the Web Dev bit everything worked as expected...

link|improve this answer
Control Panel > Programs > Programs and Features > Visual Studio 2010 Professional > Uninstall/Change > Add Feature... – bendytree Apr 6 at 21:09
feedback

You could also try to run the following command:

devenv /ResetSkipPkgs

This will try to load any Visual Studio packages that failed previously at some point, such as the WPF project flavor package, which would cause the error message you're seeing.

link|improve this answer
feedback

Not sure if this is the same issue but going through the uninstall and re-install of beta and RC versions and finally the RTW I ended up with two ASP.NET MVC Web Application icons in my "File/New/Project" dialog.

If I click the first link, my project does not load correctly. But if I click the second one everythign works great.

I haven't dug into the templates folder to see if there is a remnant from a previous version or what.

Brian

link|improve this answer
Hi Brain, thanks for that. I only have the one template, this laptop only ever had RTW installed on it. – Ben Hall Apr 10 '09 at 22:52
feedback

Did you install SP1 for .Net and VS2008?

link|improve this answer
feedback

The way I corrected this issue of not being able to open a ASP.NET MVC 1.0 for myself goes like this when I was using VS 2008

  • Install SP1 for VS 2008
  • Install MVC 2.0 framework
  • I realized I had an MVC 1.0 project and I used this tool to change the project to MVC 2.0.

The tool works great, props to Eilon Lipton never met the guy but I'm down with anyone that will make my life easier.

http://weblogs.asp.net/leftslipper/archive/2009/10/19/migrating-asp-net-mvc-1-0-applications-to-asp-net-mvc-2.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.