Skip to content

Commit a217115

Browse files
authored
Update .NET version references in CONTRIBUTING.md (#9259)
2 parents 36d7c07 + d9fff48 commit a217115

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ This section shows how to set up local Razor or Roslyn language servers for debu
7777
1. Clone the [Roslyn repository](https://github.com/dotnet/roslyn). This repository contains the Roslyn server implementation.
7878
2. Follow the build instructions provided in the repository.
7979

80-
The server DLL is typically at `$roslynRepoRoot/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net9.0/Microsoft.CodeAnalysis.LanguageServer.dll`, but this may vary based on the built configuration.
80+
The server DLL is typically at `$roslynRepoRoot/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net10.0/Microsoft.CodeAnalysis.LanguageServer.dll`, but this may vary based on the built configuration.
8181

8282
#### Razor
8383

8484
1. Clone the [Razor repository](https://github.com/dotnet/razor). This repository contains the Razor server implementation.
8585
2. Follow the build instructions provided in the repository.
8686

87-
The extension is typically at `$razorRepoRoot/artifacts/bin/Microsoft.VisualStudioCode.RazorExtension/Debug/net9.0`.
87+
The extension is typically at `$razorRepoRoot/artifacts/bin/Microsoft.VisualStudioCode.RazorExtension/Debug/net10.0`.
8888

8989
### Debugging Local Language Servers
9090

@@ -120,15 +120,15 @@ Add the following lines to your `settings.json`. Replace `<roslynRepoRoot>` with
120120

121121
```json
122122
"dotnet.server.waitForDebugger": true,
123-
"dotnet.server.path": "<roslynRepoRoot>/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net9.0/Microsoft.CodeAnalysis.LanguageServer.dll"
123+
"dotnet.server.path": "<roslynRepoRoot>/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net10.0/Microsoft.CodeAnalysis.LanguageServer.dll"
124124
```
125125

126126
---
127127

128128
**If using C# Dev Kit**, you also need to override the Roslyn DevKit component in your `settings.json`. This step is not necessary if you are not loading the Dev Kit extension.
129129
```json
130130
"dotnet.server.componentPaths": {
131-
"roslynDevKit": "<roslynRepoRoot>/artifacts/bin/Microsoft.VisualStudio.LanguageServices.DevKit/Debug/net9.0"
131+
"roslynDevKit": "<roslynRepoRoot>/artifacts/bin/Microsoft.VisualStudio.LanguageServices.DevKit/Debug/net10.0"
132132
},
133133
```
134134

@@ -147,7 +147,7 @@ Add the following lines to your `settings.json`. Replace `<razorRepoRoot>` with
147147

148148
```json
149149
"dotnet.server.componentPaths": {
150-
"razorExtension": "<razorRepoRoot>/artifacts/bin/Microsoft.VisualStudioCode.RazorExtension/Debug/net9.0"
150+
"razorExtension": "<razorRepoRoot>/artifacts/bin/Microsoft.VisualStudioCode.RazorExtension/Debug/net10.0"
151151
},
152152
```
153153

0 commit comments

Comments
 (0)