Files
serena/src
Claude Assistant aa0fb79208 Fix C# language server initialization timeout
Remove incorrect shlex.quote() usage in command construction. The ProcessLaunchInfo
expects a simple string command, not shell-quoted arguments. This was causing the
dotnet runtime to receive literal quotes around arguments, preventing proper
execution of the language server DLL.

The fix changes from:
  cmd = " ".join(shlex.quote(part) for part in cmd_parts)
to:
  cmd = " ".join(cmd_parts)

This allows the language server to initialize correctly without timeout errors.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-25 23:29:56 +01:00
..

Serena uses (modified) versions of other libraries/packages: