unknown (google)
unknown (google)

Reputation:

Why are there multiple 'debug' folders in a Visual Studio 2008 project?

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

Answers (1)

ta.speot.is
ta.speot.is

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

Related Questions