up vote 10 down vote favorite
7
share [g+] share [fb]

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 ?

I know this question may be similar to : Initializing user.config or app.exe.config during install, but I am not limited to VS 2008 setup project and I want to change the settings in the config files.

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.

link|improve this question

feedback

5 Answers

up vote 10 down vote accepted

We use WIX to change the application's configuration file. It works really well, you'll need to add wixUtilExtension.dll in the reference.

WIX sample:

<Component Id="ChangeConfig" Guid="[YOUR_GUID_HERE]">
   <File Id="App.config" Name="MyApplication.exe.config" Vital="yes" KeyPath="yes" Source="[Path to project dir]\app.config" />
   <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" />

</Component>

It actually depends on what you are using to create the installer, What are you using ?
Have alook at the WIX Tutorial.

link|improve this answer
Thank you. I am still daunted by the WIX features and complexity. I am bit afraif to go that route yet for something so simple :) – Tomas Pajonk Nov 14 '08 at 17:11
feedback

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.

link|improve this answer
feedback

Sorry Tomas, Here's the URL:

http://raquila.com/software/configure-app-config-application-settings-during-msi-install/

link|improve this answer
1  
Tomas, did you find the article helpful? – Jawwad Alam Jul 28 '10 at 18:06
feedback

I used NSIS with an XML plugin to do this.

link|improve this answer
feedback

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.

link|improve this answer
I was hoping for a lighter solution for medium / small projects ... :) – Tomas Pajonk Nov 14 '08 at 11:37
feedback

Your Answer

 
or
required, but never shown

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