I am giving my application to a client. The settings for the application are stored in settings.settings
, using internal
access modifier. How can I make a separate exe
to change those in the clients computer?
Example:
My project generates a foo.exe
file when building i need a foosettings.exe
file such that only i can change the settings for foo.exe.
Does anyone have a clue as how to achieve this?
Here's what I am trying to do, I need to save some variables to my application which can be changed later using another exe. I cannot use app.config as those variables in app.config can easily be edited by the user. I only want myself to be able to change those values without diving into the code.