I have a running C# application that got caught into some kind of deadlock and I'd like to obtain stack traces of all running threads to analyze the problem. Unfortunately this application is a Release build and I have lost the pdb
files.
When I attach a VS2013 debugger (via remote debugging), I can see the list of threads, but not any stack traces. The stack trace window just contains "External code" for each thread.
It would be of great help to see a basic stack trace - I don't care about details like line numbers.
UPDATE I've actually observed that I have the exact same issue as long I run the Release configuration (with the remote host running the exact same build as in VS, and PDBs being available). I have only ever been able to see a stack trace in Debug builds. Could this be some other issue than a lack of PDB files?