I have a c# solution with three projects in it. Lets call them 1,2,3.
Their dependency hierarchy is 1 depends on 2 and 2 depends on 3.
Project 1 is a Windows application so it has an executable output. The others (2&3) are class library projects with DLL outputs.
I have obfuscated all the outputs (the exe from project 1 and the other two DLLs from 2&3) using Confuser.
The problem is when I run the confused exe allong with the other Confused DLLs, the exe can't get the methods from the DLLs.
I get an exception of kind : "Bad Storage property: '_memberName' on member '2.User.memberName'"
Any solution?