From e89a569556ed9ae7903220d13612b7878415840e Mon Sep 17 00:00:00 2001 From: David Barbet Date: Wed, 10 Sep 2025 13:50:09 -0700 Subject: [PATCH] Clarify full dump creation in comments --- .../dotnetRuntime/dotnetRuntimeExtensionResolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionResolver.ts b/src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionResolver.ts index 24962673c3..d8dddd17f0 100644 --- a/src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionResolver.ts +++ b/src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionResolver.ts @@ -98,7 +98,7 @@ export class DotnetRuntimeExtensionResolver implements IHostExecutableResolver { if (languageServerOptions.crashDumpPath) { // Enable dump collection env.DOTNET_DbgEnableMiniDump = '1'; - // Collect heap dump + // Create a full dump with as much info as possible (all memory including module images) env.DOTNET_DbgMiniDumpType = '4'; // Collect crashreport.json with additional thread and stack frame information. env.DOTNET_EnableCrashReport = '1';