When I am inspecting code, I often find my self reading and modifying decompiled files. Rider or Resharper decompile files automatically.
Later on, I add a bunch of Console.WriteLine()
, to better understand what the program is doing. The problem is, changes made to decompiled code are not shown in subsequent runs/ builds of the program. Therefore I cannot inspect the code, because the original never changed.
What should I do, so that the decompiled files are used instead of the original ones in the newly executed runs? Is there some checkbox that needs to be checked?