Activity overview
Latest activity by mousehuang
It works now. Thanks for you effort. It is noticed that the new version is 6.0. When will the 6.0 be released to public? We had just bought the server license for 5.5, is that license working for 6.0? / comments
It works now. Thanks for you effort. It is noticed that the new version is 6.0. When will the 6.0 be released to public? We had just bought the server license for 5.5, is that license working for ...
Thanks for you reply. Waiting... / comments
Thanks for you reply. Waiting...
The code is before obfuscate. Since the ClassLibrary1 is merged to ClassLibrary2, the code of problem line after obfuscate should be: (if ClassLibrary1.ClassA is renamed to "CL1.CA"):
[System.ComponentModel.TypeConverter(typeof([ClassLibrary2:]CL1.CA))].
But now it is:
[System.ComponentModel.TypeConverter(typeof([ClassLibrary1:]CL1.CA))]
Do you notice the problem. The class name changes to "CL1.CA", but the referenced assembly is still ClassLibrary1. It should reference to the new ClassLibrary2, since the class is merged to it.
BTW, the TypeConvertorAttribute is used for design time support. / comments
The code is before obfuscate. Since the ClassLibrary1 is merged to ClassLibrary2, the code of problem line after obfuscate should be: (if ClassLibrary1.ClassA is renamed to "CL1.CA"):
[System.Compo...
Merge assembly wrong if its class is used in attribute.
Have one assembly ClassLibrary1:
namespace ClassLibrary1
{
public class ClassA
{
}
public class ClassB
{
}
}
And another assembly ClassLibrar...