From 7230d145a42dd48f411cf88aa84d0cf629a3684a Mon Sep 17 00:00:00 2001 From: Gregg Miskelly Date: Fri, 7 Nov 2025 10:25:43 -0800 Subject: [PATCH] Fix file extension in debugger troubleshooting doc A debugger troubleshooting doc had the wrong file extension for macOS native libraries. This fixes it. --- docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md b/docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md index 09abadffc7..983b47f962 100644 --- a/docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md +++ b/docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md @@ -46,7 +46,7 @@ You can test for this condition by adding the following code to the start of you else if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.OSX)) { nativeLibraryPrefix = "lib"; - nativeLibraryExtension = ".so"; + nativeLibraryExtension = ".dylib"; } else { @@ -101,4 +101,4 @@ Step 5: Start debugging. You should hopefully see debugging still fail with the ### Error cause 3: Mismatched processor architecture (macOS only) On ARM64 macOS, this error can be caused if the processor architecture of the debugger is different from the processor architecture of the target process. See [Debugging x64 processes on an arm64 computer -](Debugging-x64-processes-on-an-arm64-computer) for more information. \ No newline at end of file +](Debugging-x64-processes-on-an-arm64-computer) for more information.