Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Did you know best practice using msi to deploy dotnet solution (windows services) with customized configuration file for different environment (Development, Production...).

Solution I know 1/ use placeholder in template of configuration file in order to replace them with correct value (for connectionstring, path,... for instance).And they replace value using msbuild. 2/make as many appsettings file as you have environment and write key pair value for configuration.for instance

<configuration>
 <appSettings file="production.config">
 </appSettings>
</configuration>

<configuration>
 <appSettings file="Development.config">
 </appSettings>
</configuration>

and in section

<appSettings>
 <add key="ConnectionString" value="ConnectString from Development.config" />
...
</appSettings>

Have you other solution, or is there some tools that allow to make template of configuration file inside visual studio 2010?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.