Skip to content

Commit 0641929

Browse files
committed
Pass DevKit extension path explicitly
1 parent c5d0e9e commit 0641929

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)
55

66
## Latest
7+
* Update Roslyn to 4.10.0-2.24081.2 (PR: [#6831](https://github.com/dotnet/vscode-csharp/pull/6831))
8+
* Load Roslyn DevKit assemblies into the default ALC (PR: [#71807](https://github.com/dotnet/roslyn/pull/71807))
9+
10+
## 2.16.24
711
* Update Roslyn to 4.10.0-1.24069.13 (PR: [#6823](https://github.com/dotnet/vscode-csharp/pull/6823))
812
* Fix request metric logging (PR: [#71734](https://github.com/dotnet/roslyn/pull/71734))
913
* Fix issue loading .NET 6.0 projects when only the 6.0 SDK is installed (PR: [#71597](https://github.com/dotnet/roslyn/pull/71597))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"defaults": {
40-
"roslyn": "4.10.0-1.24069.13",
40+
"roslyn": "4.10.0-2.24081.2",
4141
"omniSharp": "1.39.11",
4242
"razor": "7.0.0-preview.23627.2",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",

src/lsptoolshost/roslynLanguageServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ export class RoslynLanguageServer {
823823
'.roslynDevKit',
824824
'Microsoft.VisualStudio.LanguageServices.DevKit.dll'
825825
);
826-
args.push('--extension', devKitDepsPath);
826+
args.push('--devKitDependencyPath', devKitDepsPath);
827827

828828
args.push('--sessionId', getSessionId());
829829
return args;

0 commit comments

Comments
 (0)