Reputation: 7675
Using VS 2012, I build a C# project for a Debug build. The build succeeds, but the directory ..\bin\debug
is empty.
What can cause that and what can cure it?
Update: This project builds a DLL
Upvotes: 0
Views: 1102
Reputation: 7675
Thanks all for chiming in. After a double-check I found the error. The dev had renamed the folder for the project. I was looking in the old folder! (face-palm!)
Upvotes: 0
Reputation: 124
A possibility is that output path for project is wrong. For checking output path : right click on Project and then click on Properties. Then in Build Tab check the value of field output path . It must be "bin\Debug\" .
Upvotes: 0
Reputation: 12327
Check the "Build" tab in the project properties dialog and see what the "Output path" is set to for the "Debug" configuration. It probably builds in a location that's different than the default.
Upvotes: 2