How to modify .NET config files during installation ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:18:09Z http://stackoverflow.com/feeds/question/289773 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/289773/how-to-modify-net-config-files-during-installation 5 How to modify .NET config files during installation ? Tomas Pajonk 2008-11-14T10:59:03Z 2008-11-14T18:22:07Z <p>I use the app.config file to store some values (path to a mapping database, data connection selections). These settings differ on the user machines and I would like the installer to set them right. Is there an installer that can work with .NET config files during setup and allow me to create some dialogs that would help me fill in these values ?</p> <p>I know this question may be similar to : <a href="http://stackoverflow.com/questions/75546/initializing-userconfig-or-appexeconfig-during-install">Initializing user.config or app.exe.config during install</a>, but I am not limited to VS 2008 setup project and I want to change the settings in the config files.</p> <p>EDIT: I see that using WIX is one option, but I feel like cracking a walnut with a sledgehammer. It may be the only solution, but I still hope for something simple.</p> http://stackoverflow.com/questions/289773/how-to-modify-net-config-files-during-installation/289802#289802 0 Answer by tgeros for How to modify .NET config files during installation ? tgeros 2008-11-14T11:10:53Z 2008-11-14T11:10:53Z <p>I've used the WIX toolset to produce an msi. The tool allows you to declaratively specify changes to XML files like app.config during installation. Problem is though there is a significant learning curve. Search sourceforge for wix. </p> http://stackoverflow.com/questions/289773/how-to-modify-net-config-files-during-installation/290374#290374 3 Answer by CheGueVerra for How to modify .NET config files during installation ? CheGueVerra 2008-11-14T15:15:56Z 2008-11-14T18:07:51Z <p>We use WIX to change the application's configuration file. It works really well, you'll need to add wixUtilExtension.dll in the reference.</p> <p>WIX sample:</p> <pre><code>&lt;Component Id="ChangeConfig" Guid="[YOUR_GUID_HERE]"&gt; &lt;File Id="App.config" Name="MyApplication.exe.config" Vital="yes" KeyPath="yes" Source="[Path to project dir]\app.config" /&gt; &lt;util:XmlFile Id="AppConfigSetConnStr" Action="setValue" Permanent="yes" File="[#App.config]" ElementPath="/configuration/connectionStrings/add[\[]@name='MyDatabaseName'[\]]" Name="connectionString" Value="Your Connection string values here" /&gt; &lt;/Component&gt; </code></pre> <p>It actually depends on what you are using to create the installer, What are you using ?<br /> Have alook at the <a href="http://www.tramontana.co.hu/wix/" rel="nofollow">WIX Tutorial</a>.</p> http://stackoverflow.com/questions/289773/how-to-modify-net-config-files-during-installation/290936#290936 0 Answer by amdfan for How to modify .NET config files during installation ? amdfan 2008-11-14T18:19:39Z 2008-11-14T18:19:39Z <p>I used NSIS with an XML plugin to do this.</p> http://stackoverflow.com/questions/289773/how-to-modify-net-config-files-during-installation/290942#290942 2 Answer by GalacticCowboy for How to modify .NET config files during installation ? GalacticCowboy 2008-11-14T18:22:07Z 2008-11-14T18:22:07Z <p>If you're using a VS setup project, have you created a custom action? I've used them for everything from poking XML values to deploying databases.</p>