Comments
Sort by recent activity
Hi, Redgate. One or two people on my team posted comments here but they're not showing up. Are they stuck in a moderation bucket? / comments
Hi, Redgate. One or two people on my team posted comments here but they're not showing up. Are they stuck in a moderation bucket?
Note: The stack trace in Windows Event Viewer was actually obfuscated. I posted the decoded stack trace in my post above. / comments
Note: The stack trace in Windows Event Viewer was actually obfuscated. I posted the decoded stack trace in my post above.
We have narrowed the problem down to one of the string encoding options — UseImprovedEncoding. <StringsEncoding Compress="0" Encode="0" UseCache="0" UseImprovedEncoding="0" /> works <StringsEncoding Compress="0" Encode="1" UseCache="0" UseImprovedEncoding="0" /> works <StringsEncoding Compress="0" Encode="1" UseCache="1" UseImprovedEncoding="0" /> works <StringsEncoding Compress="0" Encode="1" UseCache="1" UseImprovedEncoding="1" /> fails <StringsEncoding Compress="1" Encode="1" UseCache="1" UseImprovedEncoding="0" /> works
This feature is presented in the SA7 UI as: > You can improve protection by dynamically binding the encoded strings to the assembly structure. This prevents modification of the assembly. > [x] I want to use strings encoding with improved protection. > This feature protects against assembly modification; you will not be able to post-process the built assembly.
Any ideas as to what we should do next, Redgate folks? We would prefer to be able to use that setting. Do we need to provide a tiny sample program, or is there enough info here already to provide some guidance? / comments
We have narrowed the problem down to one of the string encoding options — UseImprovedEncoding.<StringsEncoding Compress="0" Encode="0" UseCache="0" UseImprovedEncoding="0" /> works<StringsEncoding ...