what are .PDB files?

  • Thread starter Thread starter SStory
  • Start date Start date
S

SStory

What are .PDB files?
Should I upload it with my dll into the bin directory?

Thanks,

Shane
 
Those are debug files. They aren't needed in a production environment.
 
They are debugging files that are created when you build your application in
"Debug" mode. Be sure to build in "Release" mode when you are ready to take
the assembly to production.
 
Thanks.. figured that out right after asking when I was reading in
web.config.

thanks again.
 
and also be sure to set debug to false under compilation in web.config.
Switching your application to release mode in the IDE, doesn't automatically
set it in web.config

<system.web><compilation defaultLanguage="c#" debug="false" /> ....
 
yeah that is what was confusing me. Copy project copies it even though I
compiled in release mode.

Thanks,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top