Closed GoogleCodeExporter closed 9 years ago
Data binding is done by reflection. The Visual Studio settings designer uses
the hard
coded string 'txtSettingTest' to specify the property. Obfuscation renames the
property and therefore the binding code cannot find the property at runtime.
You must configure Obfuscar to skip obfuscation for this kind of properties.
For the
GOTest example you provided the line in the Obfuscar configuration file should
look
like this:
<SkipProperty type="GOTest.Properties.Settings" name="*" />
or more general
<SkipProperty type="*.Properties.Settings" name="*" />
Original comment by webbi...@gmail.com
on 3 Dec 2009 at 4:04
Original issue reported on code.google.com by
giang...@gmail.com
on 2 Dec 2009 at 8:59Attachments: