We have a development database and a production database. What I am trying to prevent is having to change:
connectionString="Data Source=server;Initial Catalog=test;
connectionString="Data Source=server;Initial Catalog=live;
We have two places we deploy the site. One for testing and one is live.
Is there an easy way to prevent us from having to change the connection string every time we want to upload to test or live?
We use team foundation server, I have no idea how to set up a build server or build definitions so looking for something simple if there is anything.