Reputation: 1332
I want to hide app.config. There are some things like webservice address that shouldn't be visible to user. Maybe it`s some way to put this config in resources?
Thanks
Upvotes: 1
Views: 4347
Reputation: 123966
I think that encrypting app/web config would be a better option.
See this topic for more info Encrypting appSettings in web.config
Also codeproject has a plenty of articles.
Upvotes: 2
Reputation: 4992
If you are really concerned about end-users snooping into the configuration details of your program, it will be very hard to hide such information (even if it's contained in code since it can be reverse compiled using tools like Reflector). You can only make it harder by applying some encryption scheme, like obfuscation that encrypts the internal string table of your assembly. Then again, it's easy to use a packet sniffer tool to obtain the remote URI your program is communicating with.
Upvotes: 1
Reputation: 15623
Try to figure out whether the settings in your app.config
file can be applied programmatically.
The most settings in the .NET framework can be used declarative and programmatically.
Upvotes: 1