Reputation: 1
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
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:
And then add the projects to it. Go to File->Add->Existing Project.
Select a project.
Select another project.
Your 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
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