Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / XML
Article

Build Automation Using C#, Visual Studio, Source Safe, InstallShield and NullSoft Installer

Rate me:
Please Sign up or sign in to vote.
3.42/5 (11 votes)
14 Oct 2008CPOL2 min read 75.2K   2K   64   7
Automating the Application Build Process
Sample Image - BuildMaster01.gif

Introduction

This application is written in C# using .NET Framework 1.1 and uses an XML file for configuration.

BuildMaster will do the following:

  • Gets latest source safe for the solution and each of its projects [Uses VSS Component Model].
  • Cleans the solutions if required.
  • Builds the solution using the EnvDTE objects exposed by Visual Studio.
  • Stamps each DLL and executable with the current version number.
  • Copies and moves files according to configuration settings to the target directories.
  • Applies Source Safe Label to solution using the current build number.
  • Creates the installation setup either using Installshield component object model and command line compiler or using Nullsoft command line compiler.
  • Moves the installation executable to the appropriate local or network locations according to configuration.
  • Emails all active recipients in the configuration file letting them know where to get the installation setup from.
  • In case of error, it notifies email recipients that are set up for notify on failure.
  • Email supports regular email and cell phone email or pagers.
  • Auto increment build number or manual override.
  • Provides visual feedback in list view of each action taken.
  • Writes each action to log file as designated in configuration.
  • Supports Release (actions are actually performed) or Debug (FAKE actions are not performed) mode.

Using the Code

This is intended to be used as an application on its own. You might have to make slight modifications, but the purpose is to keep it generic enough that most modifications are handled via the XML Configuration Settings.

Points of Interest

I used a delegate for the events to be sent to the form as the actions were being performed by the background threads. This keeps the UI alive and provides a nice visual feedback to the user.

You may contact me at jfranklin.pena@gmail.com.

History

  • 22nd September, 2005: BuildMaster Version 1.7.0.2100
  • 14th October, 2008: Updated the download for Visual Studio 2008

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Life is good, love writing code, designing solutions, flying, playing chess, photography, and yes riding my Susuki SV650 as fast as I can for as long as I can.

Comments and Discussions

 
GeneralExcellent! Pin
NHVirtuoso18-Oct-05 9:50
NHVirtuoso18-Oct-05 9:50 
GeneralRe: Excellent! Pin
tobiejean12-Jan-06 3:36
tobiejean12-Jan-06 3:36 
QuestionWhy? Pin
freroquanto22-Sep-05 7:21
freroquanto22-Sep-05 7:21 
AnswerRe: Why? Pin
Sergio Pereira23-Sep-05 5:31
Sergio Pereira23-Sep-05 5:31 
QuestionNAnt and CC.NET? Pin
Michael Kennedy22-Sep-05 7:13
Michael Kennedy22-Sep-05 7:13 
AnswerRe: NAnt and CC.NET? Pin
DanPetitt23-Sep-05 5:39
DanPetitt23-Sep-05 5:39 
GeneralRe: NAnt and CC.NET? Pin
Michael Kennedy23-Sep-05 6:46
Michael Kennedy23-Sep-05 6:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.