Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From omnisharp
OmniSharp provides code intelligence for C# — diagnostics, go-to-definition, find references, hover information, symbol listing, and call hierarchy for .cs files.
npx claudepluginhub boostvolt/claude-code-lsps --plugin omnisharpThis LSP server requires OmniSharpto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"csharp": {
"command": "OmniSharp",
"extensionToLanguage": {
".cs": "csharp",
".csx": "csharp"
},
"args": [
"-lsp"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
OmniSharpstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Share bugs, ideas, or general feedback.