diff --git a/documentation/FAQ.md b/documentation/FAQ.md index a8fa6a45cf..7d878c2451 100644 --- a/documentation/FAQ.md +++ b/documentation/FAQ.md @@ -73,7 +73,7 @@ Frequently Asked Questions If that doesn't work, try using the `setclrpath ` 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). * If you receive this error message executing a SOS command: ``` diff --git a/src/Microsoft.Diagnostics.TestHelpers/ProcessRunner.cs b/src/Microsoft.Diagnostics.TestHelpers/ProcessRunner.cs index cff4c6733d..fde12ad22a 100644 --- a/src/Microsoft.Diagnostics.TestHelpers/ProcessRunner.cs +++ b/src/Microsoft.Diagnostics.TestHelpers/ProcessRunner.cs @@ -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) {