vote up 1 vote down star

How can I specify my app to not overwrite the app.config on the client machines when the app is updated by clickonce?

flag

20% accept rate
i'm confused...do clients edit the config file on their machine after the application is deployed? if not, how do you end up with "clients...using different connectionstrings"? – whatknott Feb 6 at 14:49
yes, some of them edit the app.config – caiokf Feb 6 at 15:31

4 Answers

vote up 1 vote down

Move your settings to a different config for each environment you deploy to such as:

app.development.config
app.staging.config
app.production.config

Keep all the settings common to these in your app.config

link|flag
vote up 1 vote down

Background
I asked in the question's comments if users were manually editing the app.config file on their machine after deployment. The original poster responded that they are doing that.

Answer
It looks like the poster wants ClickOnce to deploy the app.config file initially and then not deploy it with future updates to the application. This is a bad misuse of ClickOnce. I don't think there's an easy way to do it, and even if there were I would advise against it. What if in the future you want to add a new setting to your app.config file? How will users get that new setting if the app.config is no longer being updated on their machine?

What I would do instead is store the connection strings as UserSettings. That's exactly what user settings were made for, things that vary from user to user. On top of that, I would probably provide them with a simple form to edit those settings. It would make me nervous having all my users mucking around with their installation files.

link|flag
vote up 0 vote down

Are you trying to preserve settings during an update? If so, look at the application and user settings (in the properties of your project). They are not overwritten during each update.

link|flag
not the properties settings, the app.config, with connection strings, ioc configuration, etc... – caiokf Feb 6 at 2:47
Wouldn't you want that sort of config to be updated on the client – benPearce Feb 6 at 3:35
no, because for example: clients in my network sometimes uses diferent connectionstrings, and then everytime I deploy the app it resets the app.config – caiokf Feb 6 at 12:50
In a client system I am working on now, the user configures the data source and other variable which I save in user settings. With user settings, the user's configurations are not lost with each click-once deployment. Here is an article. codeproject.com/KB/vb/… – CStick Feb 12 at 3:59
vote up 0 vote down

if i am not mistaken you need something like this

http://stackoverflow.com/questions/622764/persisting-app-config-variables-in-updates-via-click-once-deployment

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.