Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What building options should i use in Visual Studio 6.0 to use builded library in Visual Studio 9.0?
Posted
Comments
Indivara 21-Jan-11 8:41am    
What happens with the default options?
[no name] 21-Jan-11 9:37am    
So, that means, that all project had beed build in Visual Studio 6.0 could be used in Visual Studio 9.0?
Indivara 21-Jan-11 9:40am    
No, I was asking what error you got
[no name] 21-Jan-11 9:47am    
http://www.codeproject.com/Questions/148951/Building-error-mt-exe-and-BaseClasses.aspx
Richard MacCutchan 21-Jan-11 9:38am    
You may well find that this will not work as VC 9 may well add code or components that cannot be used in a VC 6 project. It may be simpler to rebuild your library in VC 6.

Adding to T2102

VC++ 2010 is far more standards compliant than VC++ 6 was, so you will probably need to do quite a bit of tweaking of your code. It all depends on how you wrote your code in VC++ 6.
 
Share this answer
 
If you are not using MFC, it usually is not hard to upgrade from VS 6.0 to VS 2010. Just backup first and do incremental version upgrades if you can. That way it is easier to find documentation on the differences between versions. Going from VS2008 to VS2010, note that VS removes your compiler's include, lib, etc. directories. You might want to copy these to the LIB and INCLUDE environment variable, as well as add your add-in directory to the PATH environment variable.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900