
Signature
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
Hi,
thank you for your answers! My problem is that lot of developers in my company are still using VS 6.0 and others use VS.NET 2003. I wanted to share the same code base.
One good thing is that solution files (.sln) could live together with old .dsw files so I don't have to generate different projects, Simply I'll open .sln files in VS.NET2003 and .dsw in VS 6.0 (I hope that the same will apply to Whidbey).
Concerning the new header files (iostream, fstream) I chose to migrate to the new ones. For the otherissues I will use a preprocess macro for i.e.:
#if (_MSC_VER<1300)
#include <onlyforVS60.h>
#endif // (_MSC_VER<1300)
PS:
Sorry if this thread would fit better in "VC++" newsgroups..
Regards,
Diego
> Hi Peter,
>
[quoted text clipped - 12 lines]
> This posting is provided "AS IS" with no warranties, and confers no rights.
> --------------------
Peter van der Goes - 30 Jul 2004 23:17 GMT
> Hi,
> thank you for your answers! My problem is that lot of developers in my company are still using VS 6.0 and others use VS.NET 2003. I wanted to
share the same code base.
> One good thing is that solution files (.sln) could live together with old .dsw files so I don't have to generate different projects, Simply I'll open
.sln files in VS.NET2003 and .dsw in VS 6.0 (I hope that the same will apply
to Whidbey).
> Concerning the new header files (iostream, fstream) I chose to migrate to the new ones. For the otherissues I will use a preprocess macro for i.e.:
>
[quoted text clipped - 7 lines]
> Regards,
> Diego
No apologies needed. The vc group was just a suggestion if you didn't find
what you need here.
It looks as if you have it worked out. Best of luck!

Signature
Peter [MVP Visual Developer]
Jack of all trades, master of none.