You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Explain how to solve "It was not possible to find any compatible fram… (#38937)
* Explain how to solve "It was not possible to find any compatible framework version."
Occurs when DOTNET_ROOT is pointing to another install such as 5.0.23, but the dotnet-dump expects a more recent release such as 6 or 7.
* Update docs/core/diagnostics/faq-dumps.yml
Co-authored-by: Genevieve Warren <[email protected]>
---------
Co-authored-by: David Pine <[email protected]>
Co-authored-by: Genevieve Warren <[email protected]>
Copy file name to clipboardExpand all lines: docs/core/diagnostics/faq-dumps.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,3 +33,7 @@ sections:
33
33
* [Debug Linux dumps](debug-linux-dumps.md)
34
34
* [Debug a deadlock in a .NET app](debug-deadlock.md)
35
35
36
+
- question: |
37
+
How can I solve "It was not possible to find any compatible framework version"
38
+
answer: |
39
+
On Linux, the `DOTNET_ROOT` environment variable must point to the correct folder when set. When it points to another .NET version, `dotnet-dump` always produces this error. When the `DOTNET_ROOT` environment variable isn't set, a different error is produced ("You must install .NET to run this application").
0 commit comments