Publishing to live website

Posted by Alienfluid on Stack Overflow See other posts from Stack Overflow or by Alienfluid
Published on 2010-03-23T06:36:41Z Indexed on 2010/03/23 6:43 UTC
Read the original article Hit count: 433

Hey there,

My friend and I are collaborating on a ASP.NET powered website. To develop it locally, we use Visual Web Developer Express (good enough for our needs). Subversion (using Tortoise SVN) is our source control of choice with the repository residing on Unfuddle.com.

We run into problems when we need to update the live site - since there's no version control on it. Currently we use the "Copy to Website" feature in VWD which copies the files using FTP. Here are some problems:

  1. VWD only keeps track of files uploaded by one user, so if the other user uploads a newer version of a file to the live site, VWD on my side cannot tell whether the live version of the file is newer or mine is.
  2. There's no way to tell whether all the latest changes are available on the live site.
  3. We have to be careful not to party all over the shared web.config file since the other user's local DB settings are different from mine, and of course, the live DB settings are a whole other story!

What do you guys use to publish to a live site? Does anything out there tie into Subversion so that we can automate the process and always guarantee that the live site is synced to a change list number? Also, how do you manage the different web.config file settings?

Thanks!

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about visual-web-developer