Reputation: 167
I recently finished a solution composed by 2 project. For this 2 project I have the .exe
build, but I don't know how to do the exe of solution with VS 2012. Someone know how to do it?
Upvotes: 0
Views: 19728
Reputation: 25056
When you compile & build a solution, the .exe
that is created is placed into the folder relating to your current build configuration, usually either Debug
or Release
.
So navigate to the folder, on disk, using Windows Explorer, where the solution is stored, and look in the Debug
folder. The compiled program is there.
If this is not what you are after, please post more details about these two projects and how they 'tie together'.
Upvotes: 3