Reputation: 1142
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
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
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