After I setup a project, there are some .config files in bin folder. I want to make them non human-readable formats.
1. I know I can use command such as asp net_ reg i i s -p e ...
, but the project is a Win Form Project, and in my config file there is no parts like Web.config. My config file formats is like below:
<...>
<add key="..." value="...." />
<add key="..." value="..." />
</...>
- I also tried to encrypt the config files, however there are so many places that call the config files. It seems too complex to do so.
So, is there some easy way to make my config files in bin folder into non human-readable formats using C#?