views:

124

answers:

3

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.

The error mostly appeared is ** error C2220: warning treated as error - no 'object' file generated**
The same project wil get compiled in VS2003 and executing wel.what i can do???

Thanks in advance

A: 

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.

PoweRoy
A: 

Try providing a little detail in your questions, and you'll get more detail in the answers.

Is this an ASP.NET project? Are you running VS2005 SP1?

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.

John Saunders
A: 

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.

Regards,

Sebastiaan

Sebastiaan Megens