DumpDetective.Core 3.3.1

dotnet add package DumpDetective.Core --version 3.3.1
                    
NuGet\Install-Package DumpDetective.Core -Version 3.3.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DumpDetective.Core" Version="3.3.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DumpDetective.Core" Version="3.3.1" />
                    
Directory.Packages.props
<PackageReference Include="DumpDetective.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DumpDetective.Core --version 3.3.1
                    
#r "nuget: DumpDetective.Core, 3.3.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DumpDetective.Core@3.3.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DumpDetective.Core&version=3.3.1
                    
Install as a Cake Addin
#tool nuget:?package=DumpDetective.Core&version=3.3.1
                    
Install as a Cake Tool

DumpDetective.Core

The plugin API surface for DumpDetective — a .NET 10 CLI tool for analysing Windows memory dumps (.dmp / .mdmp) and EventPipe / ETW trace files (.nettrace / .etl).

Reference this package from your plugin project to implement ICommand, ITracePlugin, and IPluginManifest without shipping any DumpDetective assemblies alongside your plugin DLL.

Quick start


<ItemGroup>
  
  <PackageReference Include="DumpDetective.Core" Version="3.3.1" ExcludeAssets="runtime" />
</ItemGroup>
// Manifest.cs
public sealed class Manifest : IPluginManifest
{
    public string  PluginName => "MyPlugin.DumpDetective";
    public string? Version    => "1.0.0";

    public IEnumerable<ICommand> RegisterCommands()
    {
        yield return new MyDumpCommand();
        yield return new MyTraceCommand();   // optionally also implements ITracePlugin
    }
}

Key interfaces

Interface Purpose
IPluginManifest Entry point — RegisterCommands() called once at startup
ICommand Memory or trace command; Run(args) for CLI, Render(ctx, sink) for analyze --full
ITracePlugin Lightweight trace sub-analyzer; participates in trace-analyze --with-plugins
IRenderSink Format-agnostic output (HTML, Markdown, JSON, plain text, console)

Plugin installation

Drop the output folder next to the host executable or in the user-profile plugins directory:

<exe dir>/plugins/MyPlugin.DumpDetective/MyPlugin.DumpDetective.dll
%USERPROFILE%\.dumpdetective\plugins\MyPlugin.DumpDetective\MyPlugin.DumpDetective.dll

Only your plugin DLL is needed — all transitive host assemblies are resolved at runtime.

More information

Full plugin authoring guide: Docs/Plugins.md

Example plugin with four commands (memory + trace): Docs/PluginExample/Example.DumpDetective/

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.3.1 88 5/25/2026
3.3.0 95 5/25/2026
3.1.0 89 5/16/2026