Re: How to recover source code from a dll that's compiled in debug release

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



FYI, ASP.NET (and also WinForms) will only return error line numbers if
your application includes the program debug file (PDB) - which a Debug
build will do

You can configure the Release build to generate a debug file (which it
doesn't by default) under Config Properties | Build | Generate
Debugging Info

Hope that helps a bit

.