Skip to content

Commit 495bdb9

Browse files
committed
Update the windows specific paths
1 parent 82561e4 commit 495bdb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The server DLL is typically at `$razorRepoRoot/artifacts/bin/rzls/Debug/net8.0`.
8181
This section provides instructions on how to debug locally built Roslyn and Razor language servers. You can do this by either directly editing the `settings.json` file of your workspace or through the VSCode settings interface.
8282

8383
#### Finding the `settings.json` file for your workspace
84-
- Open the Command Palette with `Ctrl+Shift+P`
84+
- Open the Command Palette with `Ctrl+Shift+P` (or `Cmd+Shift+P` on macOS)
8585
- Type "Preferences: Open Workspace Settings"
8686
- Select the option that appears.
8787
- In the Workspace Settings tab, in the upper right corner, you'll see an icon that looks like a document with an arrow, which is the "Open Settings (JSON)" button.
@@ -93,10 +93,10 @@ In your workspace `settings.json` file, add the following lines:
9393

9494
```json
9595
"dotnet.server.waitForDebugger": true,
96-
"dotnet.server.path": "$roslynRepoRoot\\artifacts\\bin\\Microsoft.CodeAnalysis.LanguageServer\\Debug\\net7.0\\Microsoft.CodeAnalysis.LanguageServer.dll"
96+
"dotnet.server.path": "<roslynRepoRoot>/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net7.0/Microsoft.CodeAnalysis.LanguageServer.dll"
9797
```
9898

99-
Replace `$roslynRepoRoot` with your actual values.
99+
Replace <roslynRepoRoot> with the actual path to your Roslyn repository.
100100

101101
Or, in VSCode settings (`Ctrl+,`):
102102

@@ -110,7 +110,7 @@ In your workspace settings.json file, add the following lines:
110110

111111
```json
112112
"razor.languageServer.debug": true,
113-
"razor.languageServer.directory": "$razorRepoRoot\\artifacts\\bin\\rzls\\Debug\\net8.0",
113+
"razor.languageServer.directory": "<razorRepoRoot>/artifacts/bin/rzls/Debug/net8.0",
114114
"razor.server.trace": "Debug"
115115
```
116116

0 commit comments

Comments
 (0)