I'm in the process of moving SQL server to a separate machine. Currently we are running our web server and sql server on the same box. So we have a production server with IIS and SQLServer and then a separate development server that mirrors this setup.
When it comes to our asp.net control's app.config and web site's web.config, this has worked good because we could use "Initial Catalog=MyDB;..." and it worked because the DB name was the same on both machines.
Now I'm looking at running both DB's on the same box (MyDB, MyDB-Dev). Is there an easy way to do this without needing to edit the web.config and app.config each time we deploy or compile? Is this something Visual Source Safe could handle?