Open ChrisKader opened 1 year ago
I tried debugging but I would get an error while trying to debug the CLI with Visual Studio due to the program thats being decompiled having debug protection.
The names are failing here.
The valid names that are failing are ones that end in more than one capital letter such as
CheckGPDTotal
CheckRTW
CalculateGDP
GDPTotal
Describe the bug I notice that some Fields and Methods that are not used within the program being decompiled end up being removed. This is an issue as the same program is linked against when making extensions for said program. It is also then used to compile said extensions. As a result, when a program is finished being decompiled and someone loads an extension that uses one of the deleted fields or methods, it fails to compile.
I believe the
SymbolRenamer.cs
stage may be what's doing this as it happens with only that stage selected in the application (or switch set in the CLI). Any hints as to where exactly that may be would provide some help with me trying to find a fix that I could PR.