Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Do I Downgrade a C++ Visual Studio 2008 Project to 2005

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.

like image 996
Brock Woolf Avatar asked Mar 04 '09 06:03

Brock Woolf


2 Answers

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

  • http://sourceforge.net/projects/vspc

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

  • http://www.codeproject.com/KB/macros/vsconvert.aspx
like image 162
Michael Burr Avatar answered Oct 05 '22 23:10

Michael Burr


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.

like image 45
Andy White Avatar answered Oct 05 '22 23:10

Andy White