You could also just run the project after building, then use task manager to see where the EXE is being run from...
Main Topics
Browse All TopicsI am new to C++, I built my first app recently, and today I have made some changes to it, but now when I build the project there is no exe file in the Release folder, just the manifest file.
I looked in the BuildLog and I see the code below which indicates to me I'm looking in the right folder.
I tried doing Edit->Undo as many times as I could to get back to the old code but it's still not generating the exe file.
If I do Debug->Start Debugging it builds & launches the app and it works fine, so I don't think it's a problem with the code itself, maybe something I changed in the project config.
Any suggestions please?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hmm, yeah it is unorthodox and for that reason I don't think it is vaild.
Do you have a post build step that is moving the EXE at all? Also check in your project settings (Project->Properties->Linker
Glad to help. As I said in my comment above,
>> VS 2005 gives you two: one that contains the intermediate files, and one that actually contains the output. The one you want is in the same directory as your main SLN file.
it is so if you have an executable and several DLLs, all the DLLs and the executable live in the same directory as opposed to their own individual release directories. This removes the need for a post build step to copy the DLLs into the same directory as the exe, which was the case with earlier versions of Visual Studio :)
Business Accounts
Answer for Membership
by: mrwad99Posted on 2009-06-18 at 04:09:15ID: 24656239
Are you sure you are not looking in the wrong release folder? VS 2005 gives you two: one that contains the intermediate files, and one that actually contains the output. The one you want is in the same directory as your main SLN file.
Take a look in there...
HTH