How to Convert VS2003 proj to VS2005 proj - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:52:35Zhttp://stackoverflow.com/feeds/question/824030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/824030/how-to-convert-vs2003-proj-to-vs2005-proj0How to Convert VS2003 proj to VS2005 projCute2009-05-05T09:16:18Z2009-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#8241420Answer by PoweRoy for How to Convert VS2003 proj to VS2005 projPoweRoy2009-05-05T09:52:40Z2009-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#8241940Answer by John Saunders for How to Convert VS2003 proj to VS2005 projJohn Saunders2009-05-05T10:07:20Z2009-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#12110430Answer by Sebastiaan Megens for How to Convert VS2003 proj to VS2005 projSebastiaan Megens2009-07-31T06:56:43Z2009-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>