Possible Duplicate:
Generating .NET crash dumps automatically
include line numbers in stack trace without pdb?
Currently I have a .NET Windows application and I don't deploy the pdb files with it. If a client gets an exception I display it in nice window with the stack trace so they can email it to me. I am considering deploying the pdb files also so I get line numbers in the stack trace.
Now I am wondering if there is a better way. The pdb files will roughly double the size of my install, which I don't like. Is there a way to catch an exception and maybe create some kind of dump file that the user could sent to me and then I could debug that information and retrieve the line number?
If there's no common easy way to do this then I'll just deploy the pdb files and be done with it.