I have two assemblies in the same project.
Assembly A contains base classes.
Assembly B contains classes that inherit the base classes in assembly A.
Both assemblies have been obfuscated. When the class in assembly B is created, an error message is received stating it can not find the class in assembly A. (the inherited class is a generic collection)
If I turn off obfuscation for assembly A's class, I get an error stating it cannot access the private variable in class A.
It appears that the cross-obfuscation is not working. Class B does not know where to find the class in A.