What is a PDB file?

Viewed 250094

What is a PDB file and how can I exclude it from the release folder when I rebuild my solution?

5 Answers

Program Debug Database file (pdb) is a file format by Microsoft for storing debugging information.

When you build a project using Visual Studio or command prompt the compiler creates these symbol files.

Check Microsoft Docs

Related