I call MiniDumpWriteDump from .NET to create a mini drive, and this works fine. However, when I load the resulting dump into VS 2010, I do not see any useful information. In particular, the Call Stack window looks something like this:

It does not contain managed frames, although I write a dump in the exception handler in managed code. In addition, it does not contain frames located in my exe.
Any idea why this is happening?
By the way, when I manually create a dump manually from the VS debugger, the dump contains managed frames as expected.
Edit:
I found a Microsoft Connect question about this. It says:
Currently, the CLR does not support managed processes, dumps.
Does anyone know if this is true?
source share