vote up 0 vote down star

How can I downgrade a C++ Visual Studio 2008 project to visual studio 2005?

Maybe there is a converter program that someone knows of or otherwise a process that I can undertake. Thanks.

flag

Yeah, I'm with 1800 INFORMATION on this, what's your actual issue. – John Leidegren Mar 4 at 6:42
Actually that's not really my question, I'm just interested in what kind of problems he is running into – 1800 INFORMATION Mar 4 at 8:07

7 Answers

vote up 2 vote down check

I always hate to edit the .sln/proj files by hand, since they can be so picky and problematic. It might be easiest to just create a new project in 2005, and just copy all the code files back into it.

link|flag
vote up 0 vote down

Here is the open source that convert VS2008 project into VS2005.

http://www.emmet-gray.com/Articles/ProjectConverter.htm

link|flag
vote up 1 vote down

You can delete .sln file, then open .vcproj in VS2005, then save it as new solution. Since all project options are held in .vcproj file, that should do.

link|flag
vote up 1 vote down

Is your solution file in revision control system? Just see what modifications the upgrading to VS 2008 did to project and solution files and then undo them. There's not a lot of them.

link|flag
vote up 1 vote down

Kind of off topic for your question, but what kind of issues are you seeing?

link|flag
vote up 1 vote down

You will need change the sln and vcproj files (including attributes like ToolsVersion, TargetFramework, ProductVersion etc). Some freeware may be available but I haven't heard very highly of them.

link|flag
vote up 3 vote down

I have no idea how well it works, but here's an open source converter tool:

that was an extension to the tool outlined in this article:

link|flag

Your Answer

Get an OpenID
or

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