2016-05-11

TFS has been using the GlobalList.xml file to store builds since 2010. This Global List is used in several workitems as the suggested list of values. For example, in the Bug there are two fields that use this Found In and Integrated In. These drop down fields present a list of builds that comes from the GlobalList.

Although it's not the great solution and I hear it's changing. It's what we have had for 6 years so we have used it. I have many clients that rely on these work item fields and therefore the list of builds.

However, when you delete a build it cleans up a lot of stuff, including the label, Drop Folder, Symbols and Test Results. But not the entry in the GlobalList. L

Ours was getting out of hand. So I built a Powershell script that I could run that would clean up the Global List by checking to see if the build had been deleted from TFS. If it was removed it removes the build from the list. Because this list is implemented as a Suggested list in the work items removing them has no effect on the old workitems referring to this build. They will still have their value. It just means the cleaned up build will not be in the list to be selected anymore.

[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Client")

[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Build.Client")

[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Build.Common")

[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.VersionControl.Client")

[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.VersionControl.Client.VersionSpec")

cls

#Add the Entry to the Global List

[string]
$GlobalListFileName
=
"GlobalList.xml"

[string]
$NewGlobalListFileName
=
"NewGlobalList.xml"

[string]
$RemovedBuilds
=
"RemovedBuilds.xml"

[String]
$GlobalListName
=
"Builds - MyProject"

[string]
$tfsServer
=
"http://TFSServer:8080/tfs/Collection"

[string]
$witadmin
=
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\witadmin.exe"

#Export GlobalList

$arguments
=
'exportGloballist /collection:"'
+
$tfsServer
+
'" /f:"'
+
$GlobalListFileName
+
'"'

write-host
$witadmin
$arguments

start-process
-FilePath
$witadmin
-Argumentlist
$arguments
-wait
-WindowStyle
Hidden

#Connect to TFS and get the Build Server

$server
=
new-object
Microsoft.TeamFoundation.Client.TfsTeamProjectCollection(New-Object
Uri($tfsServer))

$buildServer
=
$server.GetService([Microsoft.TeamFoundation.Build.Client.IBuildServer])

#Load the contents of GlobalList.xml

[xml]$doc =
Get-Content($GlobalListFileName)

$root
=
$doc.DocumentElement

$node
=
$root.SelectSingleNode("GLOBALLIST[@name='Builds - MyProject']")

#Create a list of builds that are no longer in TFS

foreach ($child
in
$node.ChildNodes)

{

[array]$items =
$child.value.Split("/")

$buildDetail
=
$buildServer.QueryBuilds("MyProject",
$items[0]) |
? { $_.BuildNumber -eq $items[1] }

if ($buildDetail)

{

write-host
"$($items[1]) is Valid"
-ForegroundColor
yellow

}

else

{

add-content
-path
$RemovedBuilds
-value
" <LISTITEM value=""$($child.value)"" />"

write-host
"$($items[1]) was Removed"
-ForegroundColor
Red

}

}

#Compare the list of removed builds with the original list spit out the difference into a New GlobalList

(compare-object (get-content
$GlobalListFileName) (Get-Content($RemovedBuilds))).inputObject |
set-content
$NewGlobalListFileName

#Import the new GlobalList

$arguments
=
'importgloballist /collection:"'
+
$tfsServer
+
'" /f:"'
+
$NewGlobalListFileName
+
'"'

write-host
$witadmin
$arguments

start-process
-FilePat
$witadmin
-Argumentlist
$arguments
-wait
-WindowStyle
Hidden

Show more