gimelfarb / ProductionStackTrace

Without deploying PDBs, generate a .NET exception stack trace that can be processed to retrieve source file and line number info
Other
79 stars 8 forks source link

How do i find the line number? #5

Closed DModder closed 9 years ago

DModder commented 9 years ago

The linenumber isn't inside the ExceptionReporting.GetExceptionReport(ex)). Where do i find it?

gimelfarb commented 9 years ago

Hi @DModder - line numbers would be shown when you run "Convert-ProductionStackTrace", which will use PDB information to extract line numbers. The GetExceptionReport(ex) is meant to be run in production, where you don't have PDBs installed.

Checkout the README for info on how to examine the generated exception reports.