Is it a problem if I keep the .pdb files present in the bin directory? Are there any negative performance issues?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ones you have build the dll in release mode, and the asp.net is also running on release mode this have no effect on the performance.
This files are for the DEBUG, but what DEBUG ? The debug informations that you get on un-handled errors, like the calling stack, all the calling functions on stack and all the line number including the one of the throw error. Its useful if you wish to know where the error throw up, and they help to locate bug and errors very fast.
The informations that they give is the functions name, and the call positions inside the functions. We include them all, to help us with the errors.
You can also product similar informations and on the pages (aspx files) by including the
compilerOptions="/D:TRACE"on web.config under the<compilertag, in case that you have some errors on pages and you do not know in witch line they are.Some more informations :
http://msdn.microsoft.com/en-us/library/ms241903.aspx