In my C# project, I have a setting file. When I build the project, I have .config that contains severals config string.
<applicationSettings>
<MyProject.Properties.Settings>
<setting name="SettingKey" serializeAs="String">
<value>This is setting </value>
</setting>
</MyProject.Properties.Settings>
</applicationSettings>
I tried to change the value of SettingKey manually but no luck. I think that the value is compiled to binary and put in dll file.
So what can I do to allow editing setting value manually?
Sorry for my English.