How can I specify my app to not overwrite the app.config on the client machines when the app is updated by clickonce?
|
|
|||||
|
|
|
Move your settings to a different config for each environment you deploy to such as: app.development.config Keep all the settings common to these in your app.config |
||
|
|
|
|
Background
Answer
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. |
||
|
|
|
|
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. |
||||||||
|
|
|
if i am not mistaken you need something like this |
||
|
|
