Search found 4 matches

by a7B9k3L2m8
Thu Oct 17, 2024 11:22 am
Forum: Technical questions
Topic: How to avoid reflection errors when compiling C# assemblies using VMProtect?
Replies: 5
Views: 8069

Re: How to avoid reflection errors when compiling C# assemblies using VMProtect?

So, when applying reflection to assemblies, namespaces, classes, properties, fields, methods, etc., can we ensure that they will not be affected by renaming obfuscation by using the corresponding Obfuscation attribute provided by C#? I want to know the general rules.
by a7B9k3L2m8
Thu Oct 17, 2024 8:14 am
Forum: Technical questions
Topic: How to avoid reflection errors when compiling C# assemblies using VMProtect?
Replies: 5
Views: 8069

Re: How to avoid reflection errors when compiling C# assemblies using VMProtect?

Hello, I have put the example you requested in the attachments, please check it.
by a7B9k3L2m8
Sat Oct 12, 2024 8:55 am
Forum: Technical questions
Topic: How to avoid reflection errors when compiling C# assemblies using VMProtect?
Replies: 5
Views: 8069

Re: How to avoid reflection errors when compiling C# assemblies using VMProtect?

Hello, I am sorry for not replying to your message in time. I have been busy recently. Regarding the example you requested, I currently need some time to prepare. I will try to organize it within the next few days, but since I am also taking care of some other things, there is still a small probabil...
by a7B9k3L2m8
Fri Oct 11, 2024 10:21 am
Forum: Technical questions
Topic: How to avoid reflection errors when compiling C# assemblies using VMProtect?
Replies: 5
Views: 8069

How to avoid reflection errors when compiling C# assemblies using VMProtect?

Hi everyone, I'm having trouble protecting a C# assembly with VMProtect. The program uses some reflection techniques, and errors occur when it is run after protection. I tried adding the [global::System.Reflection.Obfuscation(Exclude=true, Feature="renaming")] attribute in some places, and...