How to Convert VS2003 proj to VS2005 proj - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:52:35Z http://stackoverflow.com/feeds/question/824030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/824030/how-to-convert-vs2003-proj-to-vs2005-proj 0 How to Convert VS2003 proj to VS2005 proj Cute 2009-05-05T09:16:18Z 2009-07-31T06:56:43Z <p>Hi I have test project which i need to convert from VS2003 to VS2005 and i am afraid i got lot of errors and warnigs.</p> <p>The error mostly appeared is ** error C2220: warning treated as error - no 'object' file generated**<br /> The same project wil get compiled in VS2003 and executing wel.what i can do???</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/824030/how-to-convert-vs2003-proj-to-vs2005-proj/824142#824142 0 Answer by PoweRoy for How to Convert VS2003 proj to VS2005 proj PoweRoy 2009-05-05T09:52:40Z 2009-05-05T09:52:40Z <p>try to create a new 2005 solution and add the header and source files and compile. If you so you can see if the errors occur on the code or the project itself.</p> http://stackoverflow.com/questions/824030/how-to-convert-vs2003-proj-to-vs2005-proj/824194#824194 0 Answer by John Saunders for How to Convert VS2003 proj to VS2005 proj John Saunders 2009-05-05T10:07:20Z 2009-05-05T10:07:20Z <p>Try providing a little detail in your questions, and you'll get more detail in the answers.</p> <p>Is this an ASP.NET project? Are you running VS2005 SP1?</p> <p>Make sure that VS hasn't created a Web Site "project" for you. They introduced this nonsense in VS2005, then re-added Web Application Projects in SP1. Make sure you're running SP1.</p> http://stackoverflow.com/questions/824030/how-to-convert-vs2003-proj-to-vs2005-proj/1211043#1211043 0 Answer by Sebastiaan Megens for How to Convert VS2003 proj to VS2005 proj Sebastiaan Megens 2009-07-31T06:56:43Z 2009-07-31T06:56:43Z <p>I guess you have converted one or more C++ projects. The VS2005 compiler is more strict than the VS2003 one; you're suddenly getting warnings in a project that compiled fine with VS2003. You just have to fix the warnings, then you'll be fine. If you add the warning text to your question I can probably tell you how to fix it.</p> <p>Regards,</p> <p>Sebastiaan</p>