microsoft / vscode-mono-debug

A simple VS Code debug adapter for mono
Other
163 stars 174 forks source link

Breakpoints in files from symlinked dirs #60

Open rokups opened 4 years ago

rokups commented 4 years ago

When directory /foo/src/build is a symlink to /bar/build, we open a file /foo/src/build/file.cs and place a breakpoint there - breakpoints will hit, however IDE will reopen file from /bar/build/file.cs path. VSCode thinks it is a different file and thus placed breakpoints are not visible. Debugging works otherwise.

Could this plugin use /foo/src/build/file.cs provided it is the same file that debugging info points to?

By the way - awesome plugin! Thank you :+1: