diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/.github/lsp.json b/src/Templates/Boilerplate/Bit.Boilerplate/.github/lsp.json index 68fb59af33..38259e22b3 100644 --- a/src/Templates/Boilerplate/Bit.Boilerplate/.github/lsp.json +++ b/src/Templates/Boilerplate/Bit.Boilerplate/.github/lsp.json @@ -1,35 +1,19 @@ { - "lspServers": { - "csharp": { - "command": "dotnet", - "args": [ - "Microsoft.CodeAnalysis.LanguageServer", - "--stdio" - ], - "fileExtensions": { - ".cs": "csharp", - ".razor": "razor" - } - }, - "typescript": { - "command": "typescript-language-server", - "args": [ - "--stdio" - ], - "fileExtensions": { - ".ts": "typescript", - ".tsx": "typescriptreact" - } - }, - "css": { - "command": "vscode-css-language-server", - "args": [ - "--stdio" - ], - "fileExtensions": { - ".css": "css", - ".scss": "scss" - } - } + "lspServers": { + "csharp": { + "command": "dotnet", + "args": [ + "dnx", + "roslyn-language-server", + "--yes", + "--prerelease", + "--", + "--stdio", + "--autoLoadProjects" + ], + "fileExtensions": { + ".cs": "csharp" + } } + } }