P a u l
P a u l

Reputation: 7911

Can't open NerdDinner project in vs2008

NerdDinner.csproj won't load in vs2008 sp1 with .net 3.5 sp1. Am I not up-to-date on these tools or something? It complains this project type not supported on this installation.

Upvotes: 4

Views: 905

Answers (3)

Hector
Hector

Reputation: 51

In my I had to change the value of the "ProjectTypeGuids" in the project file. I copied them from another MVC project that I had created with my version of VS 2008.

This is the post that gave me the answer:

http://www.stuffthatjustworks.com/How+To+Fix+Xcsproj+Cannot+Be+Opened+The+Project+Type+Is+Not+Supported+By+This+Installation.aspx

Upvotes: 1

Keith Nicholas
Keith Nicholas

Reputation: 44288

In my case...it was the wrong version of the framework.

I just copied the from another asp.net mvc project I had made. (then you probably have to fix up the references, which is trivial with resharper :-) )

Upvotes: 0

TheTXI
TheTXI

Reputation: 37875

Do you have the ASP.NET MVC Framework installed? If not, you need it. NerdDinner is an example of an MVC Framework project, and you won't be able to open it or run it without the ASP.NET MVC Framework installed.

You can find the appropriate installation information at http://www.asp.net or more specifically http://www.asp.net/mvc

Upvotes: 8

Related Questions