jetbrains rider - link decompiler to source

Answered
Is possible to link the actual asp dotnet source code to the decompiler if the source code can be found (ex: https://github.com/aspnet/AspNetCore).

I am using asp .net core 2.1.1

0
1 comment

Hey Daniel,

Rider supports SourceLink, which allows downloading the source code from GitHub, provided that:

Settings | Build, Execution, Deployment | Debugger

  • Enable external source debug is on
  • Ask for location of missing source files is off

Settings | Tools | External Symbols

  • Use sources from symbol files when available is on
  • Allow downloading symbols from remote locations is on
  • The corresponding symbol server is added to the list (https://msdl.microsoft.com/download/symbols in your case)

Please note that only public repos are supported so far: RIDER-16260

0

Please sign in to leave a comment.