views:

249

answers:

1

It seems I cannot upgrade my ASP.NET MVC v1 project to be able to open it in Visual Studio 2010. Anyone noticed that already?

"The project type is not supported by this installation."

??

edit...I actually want to upgrade it to ASP.NET MVC v2 if possible. If not, I will probably create a new ASP.NET MVC v2 project and copy the files there and then try to build.

Can't seem to get it why there are no replies yet, didn't anyone try this out yet?

+2  A: 

To upgrade an existing ASP.NET MVC 1.0 application to version 2, follow these steps:

Make a backup of the existing project.

Open the project file in a text editor (the file with the .csproj or .vbproj file extension) and find the ProjectTypeGuid element.

As the value of that element, replace the GUID {603c0e0b-db56-11dc-be95-000d561079b0} with {F85E285D-A4E0-4152-9332-AB1D724D3325}.

When you are done, the value of that element should be as follows: {F85E285D-A4E0-4152-9332-AB1D724D3325};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}

For additional steps read this.

Mendy
Release notes, ha? ;) thanks
mare
Yeh... one of the things that you 'should' consider to read. :)
Mendy