Go to Implementations using sourcelink

How do I enable visual studio for "Go to implementation" for the library code that opens with SourceLink?

We recently started using SourceLink in our .NETcore library, trying to debug the library when using it. We included SourceLink using this project: ctaggart / SourceLink , adding the following line to our csproj:

<PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.6.0" PrivateAssets="All" />

This worked great so that I can now enter the library code using the debugger, but I cannot go on to implement / define any of this library code. Is there a way to get a visual studio for this?

+4
source share

Source: https://habr.com/ru/post/1691075/


All Articles