Reputation:
When I create a Visual C++ project named test
, the project directory will be like this:
test
test
Debug
Debug
test.ncb
test.sln
test.suo
Why does it create two Debug
directories?
Upvotes: 0
Views: 376
Reputation: 27214
One of the folders is for the project (output files from the project)
One of the folders is for the solution (output files from all the projects in the solution)
Upvotes: 2