Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion plugins/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Core .NET and C# skills for coding agents.
This plugin declares a C# LSP server that is launched through the .NET CLI.
Comment thread
JoeRobich marked this conversation as resolved.

Prerequisites:
- .NET SDK installed
- .NET 10 SDK installed
- `dotnet` available on PATH
Comment thread
JoeRobich marked this conversation as resolved.
Comment thread
JoeRobich marked this conversation as resolved.

## Skills
Expand Down
7 changes: 7 additions & 0 deletions plugins/dotnet/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "10.0.100",
"rollForward": "latestMajor",
"allowPrerelease": true
Comment thread
JoeRobich marked this conversation as resolved.
Outdated
}
}
Comment thread
JoeRobich marked this conversation as resolved.
Comment thread
JoeRobich marked this conversation as resolved.
13 changes: 8 additions & 5 deletions plugins/dotnet/lsp.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
{
"lspServers": {
"csharp": {
"command": "dotnet",
"command": "dnx",
"args": [
"dnx",
"roslyn-language-server",
"--yes",
"--prerelease",
Comment thread
JoeRobich marked this conversation as resolved.
Comment thread
JoeRobich marked this conversation as resolved.
Comment thread
JoeRobich marked this conversation as resolved.
"--",
"--stdio",
"--autoLoadProjects"
],
"cwd": "${PLUGIN_ROOT}",
Comment thread
JoeRobich marked this conversation as resolved.
"fileExtensions": {
".cs": "csharp"
}
".cs": "csharp",
".razor": "aspnetcorerazor",
".cshtml": "aspnetcorerazor"
},
"warmupTimeoutMs": 120000
}
}
}
}