Click here to Skip to main content
15,879,239 members
Articles / Operating Systems / Windows

SCM - Visual Studio 2008 Team Foundation Server

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
30 Dec 2009CPOL8 min read 18.5K   8  
Painless versioning and automated builds with TFS.
I will appologize for the length up front, but I didn't have time to split it up into multiple articles.

Contents

Introduction

Software Configuration Management (SCM) is a concept most developers have not had to deal with working individually or within smaller development groups. SCM is a pretty nebulous concept that is often defined in multiple ways, and distributed across various groups and processes differently; however each distinct aspect of SCM is related to other aspects of SCM. SCM typically tries to manage the following aspects:

  • Requirement/Defect/Feature Identification, Tracking and Reporting
  • Architecture, Design, Construction, and Debugging Components
  • Unit, Integration, System, Regression, User Acceptance, White Box and Black Box Testing
  • Packaging Components
  • Deploying Packages

These aspects are typically managed within the following processes:

  • Issue Management
  • Process Management
  • Release Management
  • Build Management
  • Quality Assurance
  • Configuration Management
  • Change Management

Within smaller groups, changes to dependant applications are often communicated verbally and dealt with as the changes come, however, with larger development groups, these changes can be harder to communicate to everyone affected. Therefore, a good understanding of Version Control and adherence to proper setup to enable continuous integration is a basic foundation to enabling multiple projects to succeed.

Scope

The scope of this document is to walk through project setup and referencing to help alleviate hurdles with source control management or change management as it relates to .NET applications without going through elaborate build scripts, pre-build and post-build scripts, or path dependencies.

Assumptions

It is assumed:

  1. A live TFS 2008 server and Build server is setup is available.
  2. Working knowledge of checking in and checking out from TFS.
  3. Working knowledge of branching and merging in TFS.
  4. Basic knowledge of C#

Background

For this walkthrough, we will setup two solutions. One is a shared library to simulate common code that is used by multiple projects. The other is an application that will utilize the shared library.

We will also setup branching and merging to control which applications use the shared library. Often, people will just make a reference to the shared library. Visual Studio will copy the output to the build folder and it will work. The problem arises when you have to update that shared library with 5, 10, or more applications, but you are not sure what code base is used by which version of the DLL.

One of the deficiencies of Visual Studio, is that it does not automatically update the version in the Assembly before the build.

Projects

The Shared Library

  1. Create a new class library project called Library1 within a solution called LabelLibrary. Be sure to create a directory for the solution.
    clip_image002

  2. Add a second class library called Library2 to the solution.
    clip_image004

  3. Add an additional class to Library1 called Class2. The class design for these examples does not matter, but add some code to compile.
    clip_image006

  4. Build the release and debug configurations of the solution.

The Main Application

    clip_image002

  1. Create a new console application project called App1 within a solution called App1. Be sure to create a directory for the solution.
  2. Add references to the debug versions of the DLLs from Library1 and Library2 of LabelLibrary.
  3. Add some code to reference the classes created in the Libraries.
    clip_image008
  4. Build and Check in.
    clip_image010

The Build Server

CruiseControl.Net is another alternative to using TFS as a build server, although it lacks the process guidance features of TFS.

  1. Create a Build Definition for each solution.
    clip_image002
  2. Try to name it the same as the solution file.
    clip_image004
  3. Select the source control folder of the solution.
    clip_image006
    Sometimes the Build server complains that the mapping is already used. You need to log in to the build server as the build server username and password and reset the mappings in the Source Control Workspace.
  4. Be sure to set the retention policy to something reasonable.
    clip_image008
  5. Setup a share for the successful builds to be copied to. This is where testing will get the files to do quality assurance
    clip_image010
  6. Set build to build for each check in. This may or may not result in more builds.
    clip_image012

Simple Version Control

Now that the projects are setup, the application and library projects need to be modified to use the build server and its products. The application will reference the release products generated from the library.

  1. Show all files in the library projects and select Include in Project from the context menu for the Release folders under bin. This will store your built DLL's with the project. When the build kicks off, these DLL's will be updated with the label created by the build server.
  2. Check in changes. Your source control explorer may look like the following:
    clip_image002
  3. Create a folder under the application folder of App1 called Dependencies.
  4. Right click on each of the Release folders that were checked in and Branch.
    clip_image004
  5. Select Label from the Branch from version drop down, and select the last build label.
    clip_image006
  6. Browse for the Dependencies folder created earlier and type in the name of the original project. Ex: Library2
    clip_image008
  7. Repeat for the other library project.
  8. Check in the branch operation.
    clip_image010
  9. Open the application project, remove the references to the DLLs from the project folder of the libraries.
    clip_image012
  10. Re-add the references to the DLLs in the Dependencies folder instead of the ones you manually pointed to originally.
  11. Check in the project. The Build server should kick off and build the application successfully.
    clip_image018

Simulate Projects Working Independently

Off the teams go. With different priorities, goals, bugfixes, requirements, or when "OLD" code gets updated, bad things are bound to happen.

  1. Open the LabelLibrary solution and rename a class name. This is a sure fire way of making dependent applications break
  2. Don't forget to check out the Release folder since it was checked in last.
  3. Rebuild both Release and Debug and Check in.
    clip_image012
  4. The Build server will automatically rebuild the application on the server and label your build of the shared library.
    clip_image014
    The build server is only verifying the code compiles, tests (not shown) are run and the result is copied to the folder specified in the build definition. Remember that the dependent projects are branched from your build in the project, not the build server's build.
  5. Queue a build for the App1 solution to see if it still works. The build server didn't rebuild this one since we didn't check it out.
    clip_image016
  6. It still works!
    clip_image018

Let's update the App1 project with the new version of the shared library.

  1. Select each folder that was branched earlier and select merge from the context menu.
    clip_image020
  2. Notice that the target branch is already populated with the path for the earlier branch!
  3. Click Next and select Label.
    clip_image022
  4. Click the elipses to find the last build of the shared library.
    clip_image024
  5. Click close and finish.
    clip_image026
  6. Check in the changes.
    clip_image028
  7. The build server will automatically detect the changes and build the application.
    clip_image030
  8. Obviously it failed because we renamed the class!
    clip_image032

Lets' Fix It

  1. Open the App1 solution and fix the references to the new class name.
  2. Check in! We should build it locally to verify that our changes work.
    clip_image008[4]
  3. The build server automatically notices changes and attempts rebuilding it.
    clip_image010[4] clip_image012[4]
  4. Success!!

    Now we can improve, enhance, refactor, and eliminate shared libraries independently of other dependent applications/

Reliable Version Control

Now, every time we release an application, our debug version of our library is referenced in our released application!! If we referenced the release version, we can't debug it easily. How can we setup our projects so it knows which build to use?

Debug And Release - How Not to Do it!

You might think we can simply...

  1. Add the Debug folder or the Release folder as well to the project and check it in.
    clip_image002
  2. Then re-branch the built DLL's to the application solution.
  3. Check in...
  4. Re-reference the debug and release versions in their respective configurations...

Even changing the default alias!! Doesn't work...

Debug And Release - The Best Way

Setup the Build Project for the Shared Libraries

  1. Open the LabelLibrary solution and add an empty project called Build. This will contain the build products of the other projects in the solution.

    I wish adding a solution folder would work.
  2. Change the build path of the both Library projects to ..\build\Debug and ..\build\Release for each configuration.
  3. Rebuild the Library projects in both configurations.
  4. Show all folders of the build project.
    clip_image010
  5. Include the Debug and Release folders in the project and check in. This will cause an automatic rebuild and label from the build server.

Reference Your Application to a Specific Build

  1. Branch the Build project folder to a sub folder called LabelLibrary of the Dependencies folder of the App1 project folder. Be sure to select the latest label.
    clip_image016
  2. Check in the branch.
  3. Open the App1 solution.
  4. Delete the references to the old libraries and add new references to the libraries in the new folder structure of the Dependencies folder.
    clip_image018
    Some might note that we could have used Reference paths for the project to pickup where the DLL's are, but note that the reference paths are only for the current user and are not checked in.

Reference Debug to Debug and Release to Release

  1. Open the project file in notepad or select Edit Project File from the Context Menu.
    clip_image020
  2. Click continue...
    clip_image022
  3. Modifiy the HintPath element to use $(ProjectDir) and $(Configuration) as noted below.
    clip_image024
  4. Save and Reload the project
    clip_image026
  5. Notice that when you change your configuration, the references also change!!

Finally!!

  1. Check in and watch it build!!!
    clip_image032

History

2009-12-30 Published on CodeProject.com

2009-08-14 Published on my blogsite http://jeremy-notes.blogspot.com

License

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


Written By
Technical Lead
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --