File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1182
1182
"description" : " Sets the logging level for the language server"
1183
1183
},
1184
1184
"dotnet.server.extensionPaths" : {
1185
+ "scope" : " machine-overridable" ,
1185
1186
"type" : [
1186
1187
" array" ,
1187
1188
null
1190
1191
"type" : " string"
1191
1192
},
1192
1193
"default" : null ,
1193
- "description" : " Override for path to langauge server --extensions argument "
1194
+ "description" : " Override for path to langauge server --extension arguments. "
1194
1195
},
1195
1196
"dotnet.implementType.insertionBehavior" : {
1196
1197
"type" : " string" ,
Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ export class RoslynLanguageServer {
512
512
let args : string [ ] = [ ] ;
513
513
514
514
for ( const extensionPath of extensionPaths ) {
515
- args . push ( "--extensions " ) ; // TODO: switch to --extension naming
515
+ args . push ( "--extension " ) ;
516
516
args . push ( extensionPath ) ;
517
517
}
518
518
You can’t perform that action at this time.
0 commit comments