Replies: 2 comments 1 reply
-
DId you ever figure this out? Im having the exact same issue |
Beta Was this translation helpful? Give feedback.
0 replies
-
try this if you are on windows
setting shellslash to false ensures that neovim uses the platform specific path separator i.e. backslash on windows -> which netcoredbg expects when working with paths some related issues |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm trying to setup a basic debugging experience for C# by using
nvim-dap
andnetcoredbg
.I installed
netcoredbg
via Mason, and added it to my dap config like this:The functions
dotnet_build_project
anddotnet_get_dll_path
are taken from the cookbook.When I toggle a breakpoint and then start debugging via
continue()
, I see breakpoint letters changing to R from B.I checked the logs from dap and saw that my breakpoints are not verified:
Probably I'm missing something really simple in my configuration but I couldn't find out. Any help would be really appreciated.
Beta Was this translation helpful? Give feedback.
All reactions