I have 2 assemblies A and B
B references A and uses some of it's Generics (Classes and Methods)
A is obfuscated with Public, DefaultImproved (only Overridables are false)
B is obfuscated with KeepsInheritance
Using Reflector I can see that function calls in B are:
SomeClass.SomeFunc(agrs..)
But correct call would be
0.4(args..)
(as this classes/methods are really named in A assembly)
It is understandable, that because of this I get \"MethodNotFound\" exception
Doesn’t Spices.Obfuscator renames names of Generic classes/methods referenced from another assembly?