FuGetGallery
FuGetGallery copied to clipboard
[Feature request] Use sourcelink to show the source code
Currently the "Code" tab shows decompiled sources. This is pretty cool, but what would be even better would be to use source information generated by sourcelink (or a similar solution) to show the actual source code.
This would require:
- finding the PDB files (either included in the package, embedded in the assemblies (with the embedded PDB format)), or served by a symbol server
- reading the PDB to determine where the source files are stored
- fetching the source files (typically from Github)
This seems like a good build, but I think we should keep decompilation as a fallback.
In addition, it would be nice to be able to use sourcelink to provide hyperlinks to the source code so that for non-public repositories this could still be used for those who do have access.
but I think we should keep decompilation as a fallback.
Yes, of course