A debugger for .NET C# #40119
ccidral
started this conversation in
Extensions and Themes
Replies: 2 comments 2 replies
-
@ccidral you can use the debugger with c#, you just need to use |
Beta Was this translation helpful? Give feedback.
2 replies
-
downloaded netcoredbg.exe x64 zip.
settings.json {
"dap": {
"netcoredbg": {
"binary": "C:/Users/MyUser/.netcoredbg/netcoredbg.exe",
"args": ["--interpreter=vscode"]
}
}
} The tasks works when run directly through Zed. tasks.json [
{
"label": "build",
"command": "dotnet",
"show_command": true,
"args": ["build"],
"cwd": "$ZED_WORKTREE_ROOT"
}
] debug.json [
{
"adapter": "netcoredbg",
"label": "DotnetHelloWorld - Debug",
"request": "launch",
"program": "$ZED_WORKTREE_ROOT/bin/Debug/net9.0/DotnetHelloWorld.dll",
"args": [],
"stopOnEntry": false,
"cwd": "$ZED_WORKTREE_ROOT"
}
] But doesn't show when I press F5 to start debug. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I couldn't find a C# debugger for Zed, maybe I missed something so before I open a issue I think it's better to open a discussion first.
Ever since I migrated from vscode to nvim the only missing piece for me is a decent C# debugger in nvim. Yes there is debugging support for that in nvim but it's kind of clunky, so whenever I need to use a debugger I have to open vscode. And since I've been trying to migrate from nvim to Zed, a debugger is also an important piece that's missing. How hard would it be to implement a debugger for .NET/C# in Zed?
Beta Was this translation helpful? Give feedback.
All reactions