Skip to content

Commit 1d0fc47

Browse files
Fix file extension in debugger troubleshooting doc (#8756)
A debugger troubleshooting doc had the wrong file extension for macOS native libraries. This fixes it. This resolves #8754
1 parent 36690b2 commit 1d0fc47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can test for this condition by adding the following code to the start of you
4646
else if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.OSX))
4747
{
4848
nativeLibraryPrefix = "lib";
49-
nativeLibraryExtension = ".so";
49+
nativeLibraryExtension = ".dylib";
5050
}
5151
else
5252
{
@@ -101,4 +101,4 @@ Step 5: Start debugging. You should hopefully see debugging still fail with the
101101
### Error cause 3: Mismatched processor architecture (macOS only)
102102

103103
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
104-
](Debugging-x64-processes-on-an-arm64-computer) for more information.
104+
](Debugging-x64-processes-on-an-arm64-computer) for more information.

0 commit comments

Comments
 (0)