-
Our debug interfaces uses COM interfaces.
To properly support these on all platforms it would be ideal to have the underlying wrappers supported.
/cc @AaronRobinsonMSFT @jkoritzinsky
-
The "blocking objects" feature was a poor idea to add to ClrMD. As I remember it, there's nothing unique this surface area provides. It's something that should be implemented by a consumer of ClrMD …
-
Trying to import the dump with the most recent version of ClrMD and getting IOException.
```
// Example
var dataTarget = DataTarget.LoadDump(fileName);
var count = dataTarget.ClrVersions.Lengt…
-
SOS throw System.DllNotFoundException in latest build as the below:
Using .NET Core runtime to host the managed SOS code
Host runtime path: /root/dotnethello
(lldb) target create "dotnethello/dot…
-
```
Microsoft.Diagnostics.NETCore.Client.ServerNotAvailableException : Process 28900 not running compatible .NET Core runtime.
at Microsoft.Diagnostics.NETCore.Client.IpcClient.GetTransport(Int32…
-
Getting the PEImage of some assemblies inside of a Linux memory dump fail, even though the PE header should be valid (at least I believe so).
As a simple repro, I create a console application with …
-
Hello, I am trying to understand how to create a custom debugger allowing the user to make some very basic investigation.
* Running or attaching some .NET Core code on Linux (pdb is available)
* Set…
-
With CoreFx moving to 5.0 branding, we have an opportunity to unify our various versioning schemes. Meaning that `ProductVersion`, `FileVersion`, `AssemblyVersion`, and `PackageVersion`s can likely al…
-
There are many things that can prevent successful unload of AssemblyLoadContext, like threads running in the context, GC handles holding references to objects of types loaded into the context, other e…
-
Hey,
I try to found a way to list all available threads and stracktraces in .NET. Right now I use Microsoft.Diagnostics.Runtime library, but library supports only Windows. For diagnostic purpose it…