Hi,
Purely for informational purposes, I'd like the 'About' dialog of my application to mention whether or not the build has been obfuscated.
Is there a compile flag I can test in code to see if the assembly's obfuscated? For example, at the moment, I do this:
#If DEBUG then
lblReleaseType.Text = \"Debug Build\"
#Else
lblReleaseType.Text = \"Release Build\"
#End If
I'm wondering if there's a way I can test for obfuscation too. Of course, I can set a constant and toggle it manually, but this would be neater