Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any tool to convert Visual Studio 2005/2008 project to Visual Studio 6? Thanks.

share|improve this question
is this a C# or Visual basic project ? – Yassir Dec 18 '09 at 13:11

4 Answers

Doubtful. I am pretty sure Microsoft does not have anything like that.

I assume this is a C/C++ project? VS 6 was before .NET.

I guess your best option is to start with a blank VS 6 project and manually add the source files.

After adding the source files, attempting a compile should quickly tell you what library/include folders you need to reference.

share|improve this answer

Microsoft does not support that conversion. But there is some tool to convert from vc7 to vc6 projects. http://www.codeproject.com/KB/applications/prjconverter.aspx

share|improve this answer

I do not know of such a tool. Instead, import the individual source files into a new VS6 project.

share|improve this answer

This make be a long shot here, but on Codeproject, there's an article on converting a solution to a Linux Makefile, and use that make file under VC6...Would this be useful?

Hope this helps, Best regards, Tom.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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