Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open VS 2008 solution in VS 2005?

I have seen Solutions created in Visual Studio 2008 cannot be opened in Visual Studio 2005 and tried workaround 1. Yet to try the workaround 2.

But as that link was bit old and out of desperation asking here: Is there any convertor available?


I dont have VS2008 yet and i wanted to open an opensource solution which was done in vs2008.

Guess i have to fiddle around or wait till the vs2008 is shipped.

like image 430
prakash Avatar asked Aug 25 '08 10:08

prakash


People also ask

How do I open Visual Studio 2008?

Select the . sln file in file explorer, right click, select "Open With", select "Visual Studio 2008" or "Visual Studio version Selector".

How do I open an existing solution in Visual Studio?

You can open any solution, project, folder or file in Visual Studio Code by simply right-clicking it in Solution Explorer and select Open in Visual Studio Code.

How do you create a new solution in VS?

To create an empty solutionOn the menu bar, select File > New > Project. On the Create a new project page, type solution into the search box. Select the Blank Solution template, and then click Next. Enter Name and Location values for your solution, and then select Create.


2 Answers

I have a project that I work on in both VS 2005 and VS 2008. The trick is just to have to different solution files, and to make sure they stay in sync. Remember that projects keep track of their files, so the main thing solutions do is keep track of which projects they contain; pretty easy to keep in sync.

So just create a new blank solution in VS 2005, and then add each of your projects to it, one by one. Be sure to name the solutions appropriately. (I call mine ProjectName.sln and ProjectNameVs2008.sln.)

Which is a long way of saying you should try workaround #2.

like image 180
Ryan Lundy Avatar answered Sep 29 '22 09:09

Ryan Lundy


Here's a visual studio 2008 to 2005 downgrade tool And another one.

I haven't tried either of these, so please report back if they are successful for you ;-)

like image 40
Leon Bambrick Avatar answered Sep 29 '22 10:09

Leon Bambrick