Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
1-How to shift a VS 2010 solution (having multiple projects) to VS 2005 solution?
I am not using .Net, it's a C++ project.
2-I have a".vcxproj" file in each project folder. How to change ".vcxproj" file to ".vcproj" file?
Thanks...
Posted
Updated 11-Apr-12 21:25pm
v3

If you are using .Net 4.0, then you can't do this very easily.
You will need to change the runtime to 2.0 and then see if the application works first.
 
Share this answer
 
Comments
ahsanriaz1K 12-Apr-12 3:05am    
I am not using .net, it's a C++ project
 
Share this answer
 
Comments
ahsanriaz1K 12-Apr-12 3:24am    
In this link, way to change ".sln" file is given.. while i have a".vcxproj" file in each project folder. How to change ".vcxproj" files.
You can do it for VS10 to VS08. But I'm not that sure about VS05

Open .sln file and make following changes

Format Version 11.00 -> Format Version 10.00
Visual Studio 2010 -> Visual Studio 2008

save the changes.

also in .vcproj

Version="10.00" -> Version="9.00"

this should do
But if you have .sln & .vcproj files of VS08 and 10 you can change it by compairing
them.
 
Share this answer
 
Comments
ahsanriaz1K 12-Apr-12 3:16am    
But for VS 2005 there is ".vcproj" file while for 2010 there is ".vcxproj".
ahsanriaz1K 12-Apr-12 3:26am    
I have a".vcxproj" file in each project folder. How to change ".vcxproj" file to ".vcproj" file?

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