Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions plugins/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ Core .NET and C# skills for coding agents.

## LSP

This plugin declares a C# LSP server that is launched through the .NET CLI.
This plugin declares a C# LSP server that is installed through the .NET CLI.
Comment thread
JoeRobich marked this conversation as resolved.
Outdated

Prerequisites:
- .NET SDK installed
- `dotnet` available on PATH
- .NET 10 SDK installed
- The `roslyn-language-server` tool installed globally. [Click here](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-tool-install#global-tools) to learn more about dotnet global tools.
```
dotnet tool install --global --prerelease roslyn-language-server
```
- `roslyn-language-server` available on PATH

## Skills

Expand Down
9 changes: 2 additions & 7 deletions plugins/dotnet/lsp.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
{
"lspServers": {
"csharp": {
"command": "dotnet",
"command": "roslyn-language-server",
"args": [
Comment thread
JoeRobich marked this conversation as resolved.
Outdated
"dnx",
"roslyn-language-server",
"--yes",
"--prerelease",
"--",
"--stdio",
"--autoLoadProjects"
],
Expand All @@ -16,4 +11,4 @@
}
}
}
}
}