Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.Net configuration file -> Connection strings for multiple developers and deployment servers

I have a team of three developers, two of whom use a standard local test database, one of whom uses his own database and there is also a server environment with a production database and a testing database.

This amounts to multiple connection strings required.

The web.config file periodically gets updated and keeps having to be changed by each developer when a source control update is performed, as well as the fact that sometimes a developer accidentally checks in his personal web.config file change with his connection string, which temporarily interrupts us after running a subsequent update from source control.

What can I change so that the web.config file can be committed/updated as often as is necessary and not result in broken connection strings for other developers or require modifications before it can be uploaded to the testing or production environments?

like image 287
Nathan Ridley Avatar asked Aug 03 '09 10:08

Nathan Ridley


1 Answers

You might want to look at replacing the ConnectionStrings section of the Web.Config with a Config Source file, commit the LIVE set of connection strings into source control, but not include them in the actual solution.

Information on using the configSource attribute can be found in the section "Using External Configuration Files" in the document:

Connection Strings and Configuration Files

This has the advantage that developers could have their own settings that don't get checked into the main Web.Config. The potential downside is that it's yet another file that you have to worry about, and depending on how you're getting the latest version out of source control might not help (i.e. if you go to your SC client and say "Get latest" that would overwrite the file, whereas if you are in Visual Studio, right click on the solution/project and select "Get Latest" that will only get files in the projects).

like image 155
Zhaph - Ben Duguid Avatar answered Oct 20 '22 07:10

Zhaph - Ben Duguid