Do not overwrite the app.config when deploying with clickonce - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T08:29:04Zhttp://stackoverflow.com/feeds/question/518834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/518834/do-not-overwrite-the-app-config-when-deploying-with-clickonce1Do not overwrite the app.config when deploying with clickoncecaiokf2009-02-06T02:03:16Z2009-05-23T11:00:01Z
<p>How can I specify my app to not overwrite the app.config on the client machines when the app is updated by clickonce?</p>
http://stackoverflow.com/questions/518834/do-not-overwrite-the-app-config-when-deploying-with-clickonce/518906#5189060Answer by CStick for Do not overwrite the app.config when deploying with clickonceCStick2009-02-06T02:44:11Z2009-02-06T02:44:11Z<p>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.</p>
http://stackoverflow.com/questions/518834/do-not-overwrite-the-app-config-when-deploying-with-clickonce/518915#5189151Answer by Chris Ballance for Do not overwrite the app.config when deploying with clickonceChris Ballance2009-02-06T02:51:32Z2009-02-06T02:51:32Z<p>Move your settings to a <strong>different config</strong> for each environment you deploy to such as:</p>
<p><em>app.development.config<br>
app.staging.config<br>
app.production.config</em><br></p>
<p>Keep all the settings <strong>common</strong> to these in your app.config</p>
http://stackoverflow.com/questions/518834/do-not-overwrite-the-app-config-when-deploying-with-clickonce/521390#5213901Answer by whatknott for Do not overwrite the app.config when deploying with clickoncewhatknott2009-02-06T17:54:58Z2009-02-06T17:54:58Z<p><strong>Background</strong>
<br/>
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.</p>
<p><strong>Answer</strong>
<br/>
It looks like the poster wants ClickOnce to deploy the app.config file initially and then <em>not</em> 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?</p>
<p>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.</p>
http://stackoverflow.com/questions/518834/do-not-overwrite-the-app-config-when-deploying-with-clickonce/660357#6603570Answer by strakastroukas for Do not overwrite the app.config when deploying with clickoncestrakastroukas2009-03-18T22:29:58Z2009-03-18T22:29:58Z<p>if i am not mistaken you need something like this</p>
<p><a href="http://stackoverflow.com/questions/622764/persisting-app-config-variables-in-updates-via-click-once-deployment">http://stackoverflow.com/questions/622764/persisting-app-config-variables-in-updates-via-click-once-deployment</a></p>