show/hide this revision's text 2 added 7 characters in body

Yes, you can debug release code with a PDB. There are some pitfalls however with debugging optimized code, more info here and here.

Your PDB just needs to be in a place that the debugger can find it - for local debugging same directory as the dll is usually easiest. Otherwise, put it in some place that the debugger can find it, and point the debugger to that place with the symbol path.sympath.

show/hide this revision's text 1

Yes, you can debug release code with a PDB. There are some pitfalls however with debugging optimized code, more info here and here.

Your PDB just needs to be in a place that the debugger can find it - for local debugging same directory as the dll is usually easiest. Otherwise, put it in some place that the debugger can find it, and point the debugger to that place with .sympath.