Skip to content

Releases: dotnet/diagnostics

Diagnostics Release - v10.0.721401

28 Apr 12:36
3f576a7

Choose a tag to compare

General announcements

General fixes and improvements across diagnostic tools, SOS debugger commands, and the diagnostics client library since v9.0.661903.

dotnet-dump / SOS

  • Heap enumeration progress reporting: Commands like verifyheap and dumpheap -stat now show periodic progress output (every 10 seconds) during heap walks. On large dumps, these commands previously produced no output for several minutes, making them indistinguishable from a hang. Use -noprogress to suppress the output for scripting scenarios. (#5773)
  • !DumpStackObjects on Linux alternate signal stacks: !dso now detects when threads are on alternate signal stacks (e.g., stack overflow handlers) and scans both stacks for managed objects. Previously, when the SP pointed to the signal handler stack, the scan missed all objects on the thread's normal stack. (#5723)
  • !name2ee and !token2ee now only show modules with relevant hits: These commands have been reimplemented in managed code with reduced verbosity. Wildcard searches now only print headers for modules with matches and summarize non-matching modules at the end, cutting down on output spam. (#5719)
  • !dumpheap -stat -bycount: New -bycount flag sorts the statistics table by object count instead of total size, useful when comparing heap snapshots over time to identify growing allocation patterns. (#4665, #5722)
  • !DumpMT -all: New -all flag includes class details and method descriptors inline, reducing the need for separate !DumpClass and !DumpMD calls. The canonical Method Table line now only appears when it differs from the current MT, and class only appears for older . (#5701)
  • !threadpool -stat: New -stat flag provides an aggregated summary of work items by type with counts and total size, without listing individual items. Can be combined with -wi to get both views. (#531, #5737)
  • Non-createdump dump detection: SOS now warns when loading Linux/macOS dumps not created by the runtime's createdump tool. System dumps (e.g., from coredumpctl) may be missing memory regions required by SOS commands, the warning gives early warning to users to avoid time waste. (#5720)
  • SOS output to LLDB SBCommandReturnObject: SOS commands now write output to LLDB's result object when invoked via SBCommandInterpreter, enabling LLDB to capture SOS output instead of only printing it to console. (#5728)

SOS Bug Fixes

  • !clrstack -l ushort sign extension: Fixed a bug where ushort local values >= 0x8000 were sign-extended through a short cast, producing incorrect large values. (#5218, #5721)
  • !clrstack angle bracket trimming: Fixed issue where method names containing <> (e.g., async state machines, generic types) were truncated when DML is enabled, because angle brackets were interpreted as DML markup instead of literal text. (#5594)
  • !u on IL stubs: !u now works on IL stubs (P/Invoke marshaling stubs) instead of failing. The command detects nil metadata tokens and falls back gracefully. (#1907, #5726)
  • !DumpIL on IL stubs: !DumpIL now gives a clear message for IL stubs (whose IL is freed after JIT) instead of a cryptic "error decoding IL" message. (#5731)
  • Memory read vs. corrupt MT errors: SOS error messages now distinguish between "failed to read memory" and "object has a corrupt method table", helping users determine if the issue is with the dump file or actual heap corruption. (#5680)
  • Negative symbol lookup caching: Failed symbol lookups are now cached, preventing repeated round-trips to the symbol server for known-missing symbols. This eliminates multi-minute delays w multiple commands rely on symbols for operations or information augmentation. (#675, #5729)
  • GCInfoDecoder synchronized with runtime: Updated GCInfoDecoder and GCInfoDumper to match the current state in dotnet/runtime, ensuring !gcinfo works correctly against current runtime versions (runtime async). (#5672)

dotnet-trace

  • collect-linux improvements: The collect-linux command continues to receive usability and stability improvements:
    • Callstack capture for runtime events: .NET runtime events (exceptions, GC, etc.) now include full physical call stacks with resolved frames. Previously, these events only showed the kernel tracepoint frame (user_events_write_core) with no user-space context. (#5756)
    • Terminal robustness: Fixed crashes in no-TTY environments (e.g., CI/CD pipelines, containers) and when stdout/stdin are redirected. The progress display now probes console capabilities upfront and falls back to static messages when cursor positioning is unavailable. (#5771, #5745) Terminal cursor visibility is now reliably restored on all exit paths (normal, Ctrl+C, error) and other crashes associated with cursor visibility. (#5707, #5747)
    • Process probing robustness: Process enumeration and probing now gracefully handle races where processes exit between discovery and connection, reporting "could not be probed" instead of crashing with stack traces. (#5778, #5705)

dotnet-counters

  • --noAbbreviateValues: New option on dotnet-counters monitor to display full counter values without abbreviation. Useful when tracking small changes in large values (e.g., unix timestamps) where abbreviation like 1.7T hides incremental changes. (#4415, #5734)

Microsoft.Diagnostics.NETCore.Client

  • Cross-container diagnostic support: Diagnostic tools (dotnet-trace, dotnet-counters, dotnet-stack, dotnet-dump) can now discover and connect to .NET processes running in different PID namespaces, such as sidecar containers with pid: host. The library inspects /proc/{pid}/status for namespace PIDs and resolves diagnostic sockets across container boundaries via /proc/{pid}/root/. Also adds support for processes using a non-default TMPDIR in the same namespace. (#5735)
  • Dump paths with spaces on Windows: DiagnosticsClient.WriteDump() now correctly quotes dump paths containing spaces on Windows, fixing "pid argument no longer supported" errors. (#5593)
Packages released to NuGet
  • dotnet-counters.10.0.721401.nupkg
  • dotnet-dsrouter.10.0.721401.nupkg
  • dotnet-dump.10.0.721401.nupkg
  • dotnet-gcdump.10.0.721401.nupkg
  • dotnet-sos.10.0.721401.nupkg
  • dotnet-stack.10.0.721401.nupkg
  • dotnet-symbol.10.0.721401.nupkg
  • dotnet-trace.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.10.0.721401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.10.0.721401.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.721401.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 [Download](https://download.visualstudio.microsoft.com/download/pr/dotnet-diagnostics_20260414.1/A60C953B335054EAFB0D3AC82C2EE97D37474C696EB2B0215...
Read more

Diagnostics Release - v9.0.661903

06 Jan 18:31
d7b455b

Choose a tag to compare

General announcements

General fixes to tools.

dotnet-dump/SOS issues fixed for release

  • crashinfo now only shows as an available command forprocesses with an unhandled exception.

dotnet-trace

  • New preview command collect-linux, supporting collecting application events through kernel infrastructure. See documentation for runtime and kernel configuration requirements.
  • Breaking change: In past versions, collect supported and defualted to a profile called 'cpu-sampling'. To match the former behavior exactly, use --profile dotnet-sampled-thread-time --providers "Microsoft-Windows-DotNETRuntime:0x14C14FCCBD:4". The new default is --profile dotnet-sampled-thread-time,dotnet-common.
Packages released to NuGet
  • dotnet-counters.9.0.661903.nupkg
  • dotnet-dsrouter.9.0.661903.nupkg
  • dotnet-dump.9.0.661903.nupkg
  • dotnet-gcdump.9.0.661903.nupkg
  • dotnet-sos.9.0.661903.nupkg
  • dotnet-stack.9.0.661903.nupkg
  • dotnet-symbol.9.0.661903.nupkg
  • dotnet-trace.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.9.0.661903.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.9.0.661903.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.661903.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm Download
dotnet-dump linux-musl-arm Download
dotnet-gcdump linux-musl-arm Download
dotnet-sos linux-musl-arm Download
dotnet-stack linux-musl-arm Download
dotnet-symbol linux-musl-arm Download
dotnet-trace linux-musl-arm Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotne...
Read more

Diagnostics Release - v9.0.652701

30 Oct 07:31
240cb1c

Choose a tag to compare

General announcements

General fixes to logging, error, and help outputs from all tools.

dotnet-dump/SOS issues fixed for release

  • SOS will now automatically load in WinDBG for stowed exceptions for interop scenarios.
  • clrstack now supports printing a limitted number of frames using the -c parameter.
  • crashinfo now supports reading the a module's error buffer from Native AOT dumps.
  • Updates gcinfo dumping to support newer runtimes.
  • Improved signature parsing/dumping to support wider sets of valid IL.
  • General fixes to SOS.

dotnet-gcdump

  • Added basic support for Native AOT gcheap traces.
  • Added suport for launching dsrouter transparently for mobile scenarios.

dotnet-counters

  • Improved visualization for metrics with tags.
  • Added suport for launching dsrouter transparently for mobile scenarios.

dotnet-trace

  • Fixed parsing correlation fields from events emitted by Microsoft-Extensions-Logging.
  • Fixes default rundown option for dotnet-trace to true.

Microsoft.Diagnostics.NETCore.Client

  • Wraps most connection errors during into a ServerNotAvailableException deriving from DiagnosticsClientException for easier error attribution and abstraction.
Packages released to NuGet
  • dotnet-counters.9.0.652701.nupkg
  • dotnet-dsrouter.9.0.652701.nupkg
  • dotnet-dump.9.0.652701.nupkg
  • dotnet-gcdump.9.0.652701.nupkg
  • dotnet-sos.9.0.652701.nupkg
  • dotnet-stack.9.0.652701.nupkg
  • dotnet-symbol.9.0.652701.nupkg
  • dotnet-trace.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.9.0.652701.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.9.0.652701.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.652701.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm Download
dotnet-dump linux-musl-arm Download
dotnet-gcdump linux-musl-arm Download
dotnet-sos linux-musl-arm Download
dotnet-stack linux-musl-arm Download
dotnet-symbol linux-musl-arm Download
dotnet-trace linux-musl-arm Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 [Download](https://download.visualstudio.microsoft.com/download/pr/dotnet-d...
Read more

Diagnostics Release - v9.0.621003

12 Apr 01:18
ebd1db4

Choose a tag to compare

General announcements

  • All tools now enable InvariantGlobalization to drop any dependency on ICU.

dotnet-dump/SOS issues fixed for release

  • Thread statics are now displayed in a user-friendly format when dumping objects.
  • dotnet-dump now supports supplying a custom diagnostic port to collect dumps. Currently dotnet-dump only accepts connecting to runtime listen mode ports.
  • Fixes the maddress command for SOS under WinDBG.

dotnet-counters

  • Breaking change: Previously dotnet-counters allowed specifying a list of space separated counters prior to the -- token in collect/monitor mode. Counters must now be supplied explicitly in the --counters option as a list of comma-separated values. All tokens that are outside of regular flags/options will be assumed to be part of a subprocess to launch and monitor.

dotnet-trace

  • Adds option to launch dsrouter from dotnet-trace for mobile device scenarios.

Microsoft.Diagnostics.NETCore.Client

  • Allows adding startup hooks through EventPipe using DiagnosticsClient.ApplyStartupHook.
  • Add DiagnosticsClientConnector to support creating a DiagnosticsClient from a diagnostic port
Packages released to NuGet
  • dotnet-counters.9.0.621003.nupkg
  • dotnet-dsrouter.9.0.621003.nupkg
  • dotnet-dump.9.0.621003.nupkg
  • dotnet-gcdump.9.0.621003.nupkg
  • dotnet-sos.9.0.621003.nupkg
  • dotnet-stack.9.0.621003.nupkg
  • dotnet-symbol.9.0.621003.nupkg
  • dotnet-trace.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.9.0.621003.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.9.0.621003.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.621003.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 Download
dotnet-stack linux-x64 Download
dotnet-symbol linux-x64 Download
dotnet-trace linux-x64 Download
dotnet-counters win-arm64 Download
dotnet-dump win-arm64 Download
dotnet-gcdump win-arm64 Download
dotnet-sos win-arm64 [Download](https://dow...
Read more

Diagnostics Release - v9.0.607501

18 Feb 17:37

Choose a tag to compare

General Announcements

  • This is a security release containing fixes for CVE-2025-24043.
  • Tools no longer support Windows ARM32 environments.

dotnet-dump and SOS

  • Add SaveAllModules command.
  • Fixes lifetime bugs when hosting SOS under WinDBG.
  • Fixes validation of dynamic payloads downloaded during dump analysis when running debugger in secure mode.
Packages released to NuGet
  • dotnet-counters.9.0.607501.nupkg
  • dotnet-dsrouter.9.0.607501.nupkg
  • dotnet-dump.9.0.607501.nupkg
  • dotnet-gcdump.9.0.607501.nupkg
  • dotnet-sos.9.0.607501.nupkg
  • dotnet-stack.9.0.607501.nupkg
  • dotnet-symbol.9.0.607501.nupkg
  • dotnet-trace.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.9.0.607501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.9.0.607501.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.607501.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 Download
dotnet-stack linux-x64 Download
dotnet-symbol linux-x64 Download
dotnet-trace linux-x64 Download
dotnet-counters win-arm64 Download
dotnet-dump win-arm64 Download
dotnet-gcdump win-arm64 Download
dotnet-sos win-arm64 Download
dotnet-stack win-arm64 Download
dotnet-symbol win-arm64 Download
dotnet-trace win-arm64 Download
dotnet-counters win-x64 [Download](https://download.visualstudio.microsoft.com/download/pr/202501...
Read more

Diagnostics Release - v9.0.553101

05 Nov 23:14
5b61d34

Choose a tag to compare

.NET 9.0 Tools Release

  • SOS clean up and bug fixes
  • Hosting SOS on .NET 7.x is no longer supported. .NET 8.x or 9.x needs to be installed.
  • Updated System.Text.Json version to 8.0.5
  • Improved dotnet-stack cancellation handling
Packages released to NuGet
  • dotnet-counters.9.0.553101.nupkg
  • dotnet-dsrouter.9.0.553101.nupkg
  • dotnet-dump.9.0.553101.nupkg
  • dotnet-gcdump.9.0.553101.nupkg
  • dotnet-sos.9.0.553101.nupkg
  • dotnet-stack.9.0.553101.nupkg
  • dotnet-symbol.9.0.553101.nupkg
  • dotnet-trace.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.9.0.553101.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.9.0.553101.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.553101.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 Download
dotnet-stack linux-x64 Download
dotnet-symbol linux-x64 Download
dotnet-trace linux-x64 Download
dotnet-counters win-arm Download
dotnet-dump win-arm Download
dotnet-gcdump win-arm Download
dotnet-sos win-arm Download
dotnet-stack win-arm Download
dotnet-symbol win-arm Download
dotnet-trace win-arm Download
dotnet-counters win-arm64 [Download](https://download.visualstudio.microsoft.com/download/pr/20241031.1/FE5D73677EE8EAD4C6C453ADE0E0469BC104ECE4FE3C2776366ECB3DCBA23E0F/dotnet-counters...
Read more

Diagnostics Release - v8.0.547301

24 Sep 19:33

Choose a tag to compare

dotnet-symbol

  • Added back support for --internal-server flag. It uses interactive authenication using the brower.

dotnet-dump and SOS

  • Added back support for --internal-server flag in the !setsymbolserver command. It uses interactive authenication using the brower.
  • Fix arithmetic overflow when memory dump has too many objects - #4928
  • ARM64EC support - #4430
  • DumpIL SOS command does not properly handle DynamicMethods in .NET Core - #4850
  • Add cloud symweb support - #4848

dotnet-counters

  • Provider names support the prefix "EventCounters" to indicate that only EventCounter based counters should be shown even if there is also a Meter with the same name. By default dotnet-counters prefers a Meter over EventCounters if both have the same name. This may be especially helpful because .NET 9 introduced a System.Runtime Meter that takes precedence over the System.Runtime EventCounters that were shown by default in the past. To continue viewing the System.Runtime EventCounters you could use the command "dotnet-counters monitor -p <process_id> --counters EventCounters\System.Runtime".
  • Fixed an issue where specifying multiple Meters or Instruments with the same names but different tags passed to the constructor were incorrectly merged together during reporting. When used with the .NET 9 version of the runtime the tool can now track and report these independently using the correct tags (Issues #4843 and #4564).
  • dotnet-counters list command has been deprecated and now refers users to our documentation at https://learn.microsoft.com/dotnet/core/diagnostics/built-in-metrics. These online docs are more detailed, complete, and up-to-date than the information that was previously embedded within the tool.
  • dotnet-counters monitor no longer automatically sorts certain well-known providers to the top of the list when displaying them. All providers are sorted in alphabetical order.
Packages released to NuGet
  • dotnet-counters.8.0.547301.nupkg
  • dotnet-dsrouter.8.0.547301.nupkg
  • dotnet-dump.8.0.547301.nupkg
  • dotnet-gcdump.8.0.547301.nupkg
  • dotnet-sos.8.0.547301.nupkg
  • dotnet-stack.8.0.547301.nupkg
  • dotnet-symbol.8.0.547301.nupkg
  • dotnet-trace.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.8.0.547301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.8.0.547301.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.547301.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 Download
dotnet-stack linux-x64 [Download](https://download.visualstudio.microsoft.com/download/pr/20240923.1/A38864F56554...
Read more

Diagnostics Release - v8.0.532401

28 Jun 03:43

Choose a tag to compare

General Announcements

Microsoft.Diagnostics.NETCore.Client

  • Logging is now done through Microsoft.Extensions.Logging.Abstractions instead of any concrete implementations.

General tool improvements

  • Tools will no longer try to inspect/write to temp storage for command autocompletion. Such probing broke read-only file system scenarios common in containers.

dotnet-symbol

  • dotnet symbol is now available as a single file tool like other diagnostic tools are. For example, the windows x64 version of the tool can be found at https://aka.ms/dotnet-symbol/win-x64.
  • Drop support for internal-server flag. Users trying to reach symweb must now use --authenticated-server-path with an appropriate token.

dotnet-dump and SOS

  • Add dumprequests command to show all incoming .NET http requests.
  • Add dumphttp command to show all outgoing .NET http requests.
  • modules and runtimes command now have more diagnostic information to use in bug reports.
  • Update DIA symreader to 17.10.0-beta1.24272.1
  • Better error handling in SOS, including proactive failing on unsupported scenarios (e.g. opening macOS dumps on Windows and using older versions of SOS accross breaking runtime changes).
  • SOS can now be hosted on top of .NET 9
  • Fixes to the pathto command.
  • Support for .NET 9's exception storage format.
  • Drop support for setsymbolserver -internal. Users trying to reach symweb must now use --pat with an appropriate token and the url for the symbol server instance they desire to use.

dotnet-trace

  • Support collecting GC informational events with a new profile: gc-collect.
  • Support collecting GCSettingsEvent in gc-collect profile.
  • Add waithandle to clrevents option.
  • Validation of input options is now more aggressive an eagerly bails out on unsupported scenarios.
  • Breaking change When a provider is specified with no keywords and levels, the new default is to request keyword 0 with informational level events instead of verbose level events. Change provider defaults for dotnet-trace.
  • Fixes to defaults of dotnet-trace's rundown.

dotnet-counters

  • Improved rendering: friendlier truncation of meter attributes.
Packages released to NuGet
  • dotnet-counters.8.0.532401.nupkg
  • dotnet-dsrouter.8.0.532401.nupkg
  • dotnet-dump.8.0.532401.nupkg
  • dotnet-gcdump.8.0.532401.nupkg
  • dotnet-sos.8.0.532401.nupkg
  • dotnet-stack.8.0.532401.nupkg
  • dotnet-symbol.8.0.532401.nupkg
  • dotnet-trace.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.8.0.532401.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.8.0.532401.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.532401.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-symbol linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-symbol linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-symbol linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-symbol linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 [Download](https://download.visualstudio.microsoft.com/download/pr/20240624.1/2BCF2326CF8EA7BA504CD6888A149F99DFC0D636BF2EF2830FC460ECE1EC42...
Read more

Diagnostics Release - v8.0.510501

06 Feb 03:05
8c08c89

Choose a tag to compare

General tooling announcements

  • General bug fixes.

dotnet-counters

  • Starting .NET 8, monitoring applications using dotnet-counters will show the raw value of a counter instead of deltas. A separate deltas column can be requested by specifying the --showDeltas flag. This was not done by default to preserve horizontal space usage.

dotnet-trace

  • Added option to skip collecting rundown information when collecting traces. This is the new default when collecting top level GC metrics. All other collection profiles continue ocllecting such info by default. Rundown collection can be explicitly controlled using the --rundown flag.
Packages released to NuGet
  • dotnet-counters.8.0.510501.nupkg
  • dotnet-dsrouter.8.0.510501.nupkg
  • dotnet-dump.8.0.510501.nupkg
  • dotnet-gcdump.8.0.510501.nupkg
  • dotnet-sos.8.0.510501.nupkg
  • dotnet-stack.8.0.510501.nupkg
  • dotnet-trace.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.8.0.510501.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.8.0.510501.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.510501.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 Download
dotnet-stack linux-x64 Download
dotnet-trace linux-x64 Download
dotnet-counters win-arm Download
dotnet-dump win-arm Download
dotnet-gcdump win-arm Download
dotnet-sos win-arm Download
dotnet-stack win-arm Download
dotnet-trace win-arm Download
dotnet-counters win-arm64 Download
dotnet-dump win-arm64 Download
dotnet-gcdump win-arm64 Download
dotnet-sos win-arm64 Download
dotnet-stack win-arm64 Download
...
Read more

Diagnostics Release - v8.0.505301

04 Jan 15:35
c1546ae

Choose a tag to compare

General tooling announcements

  • Allow ` in hex strings in SOS commands.
  • Fix DumpStackObjects error.
  • [RISC-V] Implement SOS related code.
  • In dotnet-counters JSON Exporter, change time formatting to universal time formatting. Fixes #3905.
  • Make DiagnosticsClient.StartEventPipeSessionAsync public. Resolves #3727.
  • Add RequestStackwalk parameter to EventPipeSession. Issue #3696.
  • Validate that providers are > 0 to provide clear error when using Diagnostics Client.
  • Provide better error messages for IPC connect failures.
  • An additional flag to parallel stacks to include runtime stacks to pstacks command.
  • Added dump referenced objects command.
  • Add CLRMA support to SOS.
Packages released to NuGet
  • dotnet-counters.8.0.505301.nupkg
  • dotnet-dsrouter.8.0.505301.nupkg
  • dotnet-dump.8.0.505301.nupkg
  • dotnet-gcdump.8.0.505301.nupkg
  • dotnet-sos.8.0.505301.nupkg
  • dotnet-stack.8.0.505301.nupkg
  • dotnet-trace.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-arm64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-musl-x64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.linux-x64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-arm64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.osx-x64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-arm64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x64.8.0.505301.nupkg
  • Microsoft.Diagnostics.DbgShim.win-x86.8.0.505301.nupkg
  • Microsoft.Diagnostics.NETCore.Client.0.2.505301.nupkg
Global Tools - Single File Links

Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.

Tool Platform Download Link
dotnet-counters linux-arm Download
dotnet-dump linux-arm Download
dotnet-gcdump linux-arm Download
dotnet-sos linux-arm Download
dotnet-stack linux-arm Download
dotnet-trace linux-arm Download
dotnet-counters linux-arm64 Download
dotnet-dump linux-arm64 Download
dotnet-gcdump linux-arm64 Download
dotnet-sos linux-arm64 Download
dotnet-stack linux-arm64 Download
dotnet-trace linux-arm64 Download
dotnet-counters linux-musl-arm64 Download
dotnet-dump linux-musl-arm64 Download
dotnet-gcdump linux-musl-arm64 Download
dotnet-sos linux-musl-arm64 Download
dotnet-stack linux-musl-arm64 Download
dotnet-trace linux-musl-arm64 Download
dotnet-counters linux-musl-x64 Download
dotnet-dump linux-musl-x64 Download
dotnet-gcdump linux-musl-x64 Download
dotnet-sos linux-musl-x64 Download
dotnet-stack linux-musl-x64 Download
dotnet-trace linux-musl-x64 Download
dotnet-counters linux-x64 Download
dotnet-dump linux-x64 Download
dotnet-gcdump linux-x64 Download
dotnet-sos linux-x64 Download
dotnet-stack linux-x64 Download
dotnet-trace linux-x64 Download
dotnet-counters win-arm Download
dotnet-dump win-arm Download
dotnet-gcdump win-arm Download
dotnet-sos win-arm Download
dotnet-stack win-arm Download
dotnet-trace win-arm Download
dotnet-counters win-arm64 Download
dotnet-dump win-arm64 Download
dotnet-gcdump win-arm64 Download
dotnet-sos win-arm64 Download
dotnet-stack win-arm64 [Download](https://download.visualstudio.microsoft.com/download/pr/20240103.1/2ECBA00786ED414C41FAA4AF2C43D126F6D834...
Read more