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?