Symbol Store and Source Link support outside Vs/Devkit #77956
-
Hi, motivated by seblyng/roslyn.nvim#116, I developed a simple symbol store and source link client that implements the The first issue that requires a code change is that the ISourceLinkService is internal. It would be nice to have a public interface. For example, the devkit implementation (https://github.com/dotnet/roslyn/blob/main/src/VisualStudio/DevKit/Impl/SourceLink/VSCodeSourceLinkService.cs) uses the Now my question: Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I'm not sure we would make ISourceLinkService public in its current form (it's mainly a private contract between us and the VS debugger). Maybe more appropriate would be If you want to be able to plug into go to definition, please file an issue so we can get broader discussion, though it is fairly unlikely we would take changes here soon.
Can you clarify the problem here? Why does the separate ALC cause issues for you? |
Beta Was this translation helpful? Give feedback.
They should be included in MEF too:
roslyn/src/LanguageServer/Microsoft.CodeAnalysis.LanguageServer/ExportProviderBuilder.cs
Line 49 in b5d7ffb