-
-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fixed detection of blocking references across multiple assemblies #425
Conversation
@KvanTTT: Could you test this version in your projects? |
✅ Build ConfuserEx 886 completed (commit f0c4f2cf47 by @mkaring) |
Unfortunately, another error appeared. I'm trying to figure out a reason. |
That was a pretty major change to the way the way the dependencies are resolved, because before some of the references were only "known" on one direction (the inheriting method knew about the inherited method, but not the other way around). I changed that, the tests did look good, but I am not 100% sure if that introduced some new weirdness. The problems are mainly caused if members that are called across multiple assemblies need to be renamed. This causes all sorts of strange side effects. |
It seems like there is something wrong with crossreference properties renaming:
Moreover, this property is not being renamed. But I still can not extract minimal reproducible example :( |
May be somebody else can test the assembly and check if it has errors? |
The artifact on appveyor has been removed. How to obtain a binary? |
At least it's possible to build ConfuserEx manually. |
Generally, I accept this patch. Also, I think it makes sense to merge that request: #385 since I was not able to extract another minimal sample for bug that prevents correct naming obfuscation. |
So I'm merging that for now. The effect of the change is that renaming across assemblies that require inheritance issues to be resolved are generally blocked. Meaning no renaming will happen. |
fixes #379