Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion documentation/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Frequently Asked Questions

If that doesn't work, try using the `setclrpath <directory>` command with a directory that contains the matching version of the DAC module. This is useful for private runtimes or debug builds that haven't been published to our symbol servers.

If this is a dump, the problem could also be that the dump is missing some memory required by SOS. Try generating a "full" dump (the default with `dotnet-dump collect` without a `--type` option) or add setting the crash dump generation (createdump) environment variable `DOTNET_DbgMiniDumpType=4` (.NET 6 and below require `COMPlus_` prefix instead of `DOTNET_`). For more details on crash dump generation see [here](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dumps#collecting-dumps-on-crash).
If this is a dump, the problem could also be that the dump is missing some memory required by SOS. Try generating a "full" dump (the default with `dotnet-dump collect` without a `--type` option) or add setting the crash dump generation (createdump) environment variable `DOTNET_DbgMiniDumpType=4`. For more details on crash dump generation see [here](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dumps#collecting-dumps-on-crash).
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sentence is grammatically incorrect: "or add setting" should be rephrased (e.g., "or by setting" / "or set") to improve readability of the troubleshooting guidance.

Copilot uses AI. Check for mistakes.

* If you receive this error message executing a SOS command:
```
Expand Down
4 changes: 1 addition & 3 deletions src/Microsoft.Diagnostics.TestHelpers/ProcessRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,8 @@ public ProcessRunner RemoveEnvironmentVariable(string key)
return this;
}

// Remove COMPlus_ fallback once minimum supported runtime is .NET 8
public ProcessRunner WithRuntimeConfiguration(string key, string value) =>
WithEnvironmentVariable($"DOTNET_{key}", value)
.WithEnvironmentVariable($"COMPlus_{key}", value);
WithEnvironmentVariable($"DOTNET_{key}", value);

public ProcessRunner WithEnvironmentVariable(string key, string value)
{
Expand Down
Loading