Configure Team Foundation Build for an Incremental Build
Team System June 12th, 2008
A question I got today: “How can I configure my Team Build for an incremental build?”.
So, it’s simple.
Team Build 2005
Add the PropertyGroup definition to the end of the TFSBuild.proj file, before the closing </project> tag.
Set the following properties:
<PropertyGroup> <SkipClean>true</SkipClean> <SkipInitializeWorkspace>true</SkipInitializeWorkspace> <ForceGet>false</ForceGet> </PropertyGroup>
Team Build 2008
Set IncrementalBuild property to true. To do it, add the PropertyGroup definition to the end of the TFSBuild.proj file, before the closing </project> tag.
<PropertyGroup> <IncrementalBuild>true</IncrementalBuild> </PropertyGroup>
Source – msdn:
Team Build 2005: http://msdn.microsoft.com/en-us/library/aa833876(VS.80).aspx
Team Build 2008: http://msdn.microsoft.com/en-us/library/aa833876.aspx
Similar Posts:
- Custom Build Number In Team Build
- How To Deploy Data Dude Project Changes using Team Foundation Build
- Update Azure Service While It Is Running
- Create custom task for MSBuild – Step by Step
- Team Build and ClickOnce
Tags: MSBuild, Team Build, Team Build 2008, Team System 2008
About


This comment originally written by:
A question I got today: "How can I configure my Team Build for an incremental build?". Well, it's simple. Team Build 2005 Add the PropertyGroup definition to the end of the TFSBuild.proj file, before the closing </project> tag. Set
This comment originally written by:Team System News
Maor David on Configure Team Foundation Build For An Incremental Build Mike Azocar on Want to be famous?…Enter…