Skip to content

Commit 4c82bc2

Browse files
committed
Merged PR 473154: Pass --sharedDependencies command line switch
Pass --sharedDependencies command line switch
2 parents 63b7515 + 9c563fa commit 4c82bc2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
},
3737
"defaults": {
38-
"roslyn": "4.7.0-2.23272.9",
38+
"roslyn": "4.7.0-2.23276.6",
3939
"omniSharp": "1.39.6",
4040
"razor": "7.0.0-preview.23275.2"
4141
},

src/lsptoolshost/roslynLanguageServer.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,9 @@ export class RoslynLanguageServer {
524524

525525
let args: string[] = [];
526526

527+
args.push("--sharedDependencies");
528+
args.push(exports.components['@microsoft/visualstudio-server-shared']);
529+
527530
for (const extensionPath of extensionPaths) {
528531
args.push("--extension");
529532
args.push(extensionPath);

0 commit comments

Comments
 (0)