.NET Obfuscator Community Edition Problem.
-
Hi, I have created two projects, One is an EXE and other one is DLL. The DLL is referanced by EXE Project. The Exe & Dll Are working fine. I Need to hide code of dll. So I use .NET Obfuscator Community edition (Which comes with VS 2005) to Obfuscat dll. It was done successfully. The problem is Now when I am executing Exe it generate errors about missing Classes (Those classes are Withing DLL) What can I do for this scenario ? Is it the nature of Community Edition ? Please help me to solve this problem. Thanks Dinesh
-
Hi, I have created two projects, One is an EXE and other one is DLL. The DLL is referanced by EXE Project. The Exe & Dll Are working fine. I Need to hide code of dll. So I use .NET Obfuscator Community edition (Which comes with VS 2005) to Obfuscat dll. It was done successfully. The problem is Now when I am executing Exe it generate errors about missing Classes (Those classes are Withing DLL) What can I do for this scenario ? Is it the nature of Community Edition ? Please help me to solve this problem. Thanks Dinesh
Are you using reflection to load those classes? I don't think the community edition is any good for this type of situation.
Deja View - the feeling that you've seen this post before.
-
Are you using reflection to load those classes? I don't think the community edition is any good for this type of situation.
Deja View - the feeling that you've seen this post before.
Hi, Thats correct. I use reflector to see the binary. Then What can I Use for this ? Thanks Dinesh
-
Hi, Thats correct. I use reflector to see the binary. Then What can I Use for this ? Thanks Dinesh
Take a look at the
ObfuscationAttribute
in theSystem.Reflection
namespace.Deja View - the feeling that you've seen this post before.