How are builds deployed into QA->Staging->Production for ASP.NET Web Applications?

Posted by CodeToGlory on Stack Overflow See other posts from Stack Overflow or by CodeToGlory
Published on 2010-04-15T19:09:07Z Indexed on 2010/04/15 19:13 UTC
Read the original article Hit count: 124

Secondary questions are

  1. How do we best utilize SCM in the build process?
  2. How are code files labed and branched?
  3. Should we the .csproj and .sln files for build? How flexible are these when deploying to several environments? I know these are msbuild files. But as we add new files, this can become a bottlenect of updating and maintaining these .csproj files in SCM.
  4. How is rollback done in case of failed builds that QA missed testing etc,etc.,
  5. Are there any good articles on the build process?

This is more a question on the process and less on the choice of automated build tools. Please share your build process. I would like to get an end-to-end view from developers checking-in to Going Live.

© Stack Overflow or respective owner

Related posts about software-engineering

Related posts about ASP.NET