Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

bin\*.pdb

Status
Not open for further replies.

yu217171

Programmer
Aug 2, 2002
203
CA
Hi everyone,

Every application that I've compiled has a PDB (Intermediate file, according to Windows Explorer) in addition to at least one DLL file in my BIN folder.

What exactly is this PDB file? Is it ok to delete it? Hope someone can shed some light on it.

Thanks,

Keith
 
I think they have something to do with debugging, but I'm not sure. I do know that they are not required. I do not post the PDB files to our online server, just the dlls.

Jason Meckley
Database Analyst
WITF
 
A .pdb file is a "program data base", and contains information used by a debugger.

Change your VS.NET build configuration to "Release" from "Debug" and you won't get these files. Plus, it's a bad idea to distribute them (put them on a public web server), as they allow people to reverse-engineer your code more easily.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top