yam1343424
yam1343424

Reputation: 1

Combining two projects and get a single .sln file

I want to combine two projects into one i.e. image and audio steganography with a single .sln file. How do I connect them? I'm using Visual Studio 2008.

Upvotes: 0

Views: 6550

Answers (2)

darin
darin

Reputation: 419

What the other guy said about opening one solution and adding an existing project sounds pretty good. If for some reason you open your projects and don't see a solution in your Solution explorer, you can always create a blank solution:

Blank Solution

And then add the projects to it. Go to File->Add->Existing Project.

Add Existing Project

Select a project.

Project1

Select another project.

Project2

Your new solution:

New Solution

Remember: If you're merging projects that have websites or web services, you need to select "Add Existing Website" and choose the folder that the website / web service is in. (:

Hope that helps!

Upvotes: 1

army
army

Reputation: 545

You can find an answer here:

How do I merge two different Visual Studio solutions?

Or simply right click on the solution Add existing project (or Add existing item) and select the solution to be merged

Upvotes: 1

Related Questions