vote up 7 vote down star
5

Is there a way to display the lines in the stack trace for the .NET assembly build/deployed in Release mode?

UPDATE:

My application is divided into three class library projects and one ASP.NET "website" project. The error I am trying to track down is in one of the three class library projects. I only deployed the pdb file for the class library project that is generating the "Object reference not set to an instance of an object" error.

The line numbers are still not showing up in the stack trace. Do I need to deploy the pdb files for all projects to get the line numbers in the stack trace?

Working solution

Deploying the pdb file for each application fixed the line number issue.

flag

77% accept rate

6 Answers

vote up 11 vote down check
  • Go into the Properties window for the project where you want to see stack trace line numbers.
  • Click on the Build "vertical tab".
  • Select "Release" configuration. Check the DEBUG constant parameter.
  • Uncheck the "Optimize code" parameter to avoid the occasional trace issue with inlined code (this step is not essential).
  • Press the Advanced... button and choose Output -> Debug Info -> pdb-only.
  • Deploy the generated .pdb file with the assembly.
link|flag
Do I have to deploy the pdb file along with the assembly? – Michael Kniskern Mar 10 at 1:10
Yes. That's where the debug symbols and line numbers are at. – John Saunders Mar 10 at 1:21
You probably don't want to expose this information if you don't have to. Use it to debug a clients problem, yes. But you don't always want to do it because debugging information can give away sensitive data and be an attack vector. Depending on what your app is. – jeffamaphone Mar 10 at 2:21
@jeffamaphone - I am only doing this to debug a pesky "Object reference not set to an instance of an object" error that only occurs in production. The methods it occurs is quite large and it could be any number of items. This will hopefully help with pinpointing the problem. – Michael Kniskern Mar 10 at 16:15
@jeffamaphone (cont.) - it will be removed once we have resolved it. – Michael Kniskern Mar 10 at 16:16
show 1 more comment
vote up 1 vote down

Include debug symbols with your build/deployment package.

link|flag
where do I set that in Visual Studio 2008? – Michael Kniskern Mar 10 at 0:50
vote up 1 vote down

In VS 2008 Express, I found it under Project Properties --> Compile --> Advanced Compile Options.

link|flag
vote up 0 vote down

n VS 2008 Express, I found it under Project Properties --> Compile --> Advanced Compile Options.

¿Where is that option?, i cant find that

link|flag
vote up 0 vote down

My solution

Copy pdb file in same folder that executable file.

now i can view the line number when run the exe file.

this is reason

http://msdn.microsoft.com/en-us/library/bb694540%28VS.85%29.aspx

link|flag
vote up 0 vote down

I've run into problems in the past where I feel the need to deploy PDB files with a release build in order to track down an error. The reason is, like you said, was that the exception occurred in a method that was very large and I could not accurately pinpoint where it was happening.

This might be an indication that the method needs to be refactored into smaller, more granular methods. Not a one size fits all answer, but this approach has served me well in the short term (I've often found the bug during the refactoring) and in the long run.

Just a thought.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.