Visual Studio Team System (VSTS) Blog - by Neno Loje

Application Lifecycle Mangement (ALM) with Visual Studio & Team Foundation Server - since 2005

News

Recent Posts

Community

Tags

Email Notifications

VSTS Blogs

VSTS Sites

VSTS Community

My Other Blogs

German VSTS Websites

Archives

Turn off label deletion when deleting builds

By default a build label is deleted when the corresponding build gets deleted.

In TFS 2008 SP1 you can change that behavior by modifying the web.config file (on the TFS AT in folder %ProgramFiles%\Microsoft Visual Studio 2008 Team Foundation Server\Web Services) to:

<appSettings>
  <add key="PreserveLabelsOnBuildDeletion" value="true" />
</appSettings>

PreserveLabelsOnBuildDeletion

(Thanks to Buck Hodges for this tip).