-
-
Notifications
You must be signed in to change notification settings - Fork 44
DAP support C#
In order to debug your programs, you have to compile them in debug mode as described next
This is only available if your project has a .csproj file. Compiling with the options Build and run dotnet or Build dotnet will automatically generate the necessary runtimeconfig.json file. So the only thing you have to do is to insert a breakpoint on neovim, open DAP, and select the .dll file that has been generated along with your .exe.
For more info read DAP wiki.
Create a .solution.toml file in your working directory. Then pass the -debug argument to the compiler like this
[HelloWorld]
entry_point = "/path/to/my/entry_point_file/main.cs"
output = "/path/where/the/program/will/be/written/hello_world"
arguments = "/debug"After compiling your program you will see the file <your_exe_name>.pdb beside your executable. This proves you are compiling in debug mode.
Please note that this section has nothing to do with compiler.nvim. I'm documenting this to make your life easier. To debug C# with DAP you have to:
- Install the package
netcoredbgin your system - Setup
DAPfor C# - Create the file
<your_exe_name>.runtimeconfig.jsonin your executable directory. For example if your program isProgram.exe, name itProgram.runtimeconfig.json.
{
"runtimeOptions": {
"configProperties": {
"System.GC.Server": true,
"System.GC.Concurrent": true,
"System.Threading.ThreadPool.MinThreads": 1,
"System.Threading.ThreadPool.MaxThreads": 1
},
"tfm": "netcoreapp2.1",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.9"
},
"applyPatches": true,
"rollForwardOnNoCandidateFx": 1
}
}But instead of version 7.0.9, use the Microsoft.NETCore.App version you have installed in your system. On Arch Linux you can check the directory /usr/share/dotnet/shared/Microsoft.NETCore.App/ to discover it.
Compile your program with Build solution, add a break point to your code, and then run DAP. You will see something like this.

Congratulations, now you can compile and debug C#.
- Note that mason installs the debugger for you. You don't need to install any system dependency.
- If you find any issue while configuring DAP, run
:DapSetLogLevel traceand:DapShowLogto find the reason. -
Update 11/08/2023: Programs compile in debug mode by default now. But if you are defining your own
argumentsin the.solution.tomlfile of your project, you will still have to set the/debugargument manually, as defining your own arguments will overwrite the default ones.