Kenny
Kenny

Reputation: 1142

Remove .pdb file on Visual Studio 2013?

When I compile a .sln file with Visual Studio 2013 a .pdb file is generated. How can I disable the creation of the .pdb file?

Upvotes: 2

Views: 7668

Answers (2)

Sam Hobbs
Sam Hobbs

Reputation: 2881

In Project Properties see "Configuration Properties -> Linker -> Debugging -> Generate Debug Info".

Also see:

PDB Files - What are they and how to generate them

.net - Release generating .pdb files, why?

Those are relevant to Visual Studio 2013 also. Be sure to read the stackoverflow thread since it has important information.

Upvotes: 2

Kenny
Kenny

Reputation: 1142

I found it.

Project -> Properties -> Build

Last category there is Output, click the Advanced button and the Debug info should be none.

Upvotes: 5

Related Questions