Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lcostea/tfs_powershell

a series of powershell scripts to help you work with TFS (source control, builds, work items etc)
https://github.com/lcostea/tfs_powershell

Last synced: 18 days ago
JSON representation

a series of powershell scripts to help you work with TFS (source control, builds, work items etc)

Awesome Lists containing this project

README

        

# TFS_PowerShell
a series of PowerShell scripts to help you work with TFS (source control, builds, work items etc)

Usage of BuildCreator.ps1:

[array]$MapItems = @("Path\ToYourFirstProject","Path\YourLibrary")

[array]$SolutionItems = @("Path/ToYourFirstSln/YourProject1.sln","Path/ToYourSecondSln/YourProject2.sln")

$TeamProject = "Your-Team-Project-Name"

$BuildName = "Sample Build"

& '.\BuildCreator.ps1' -TeamProject:$TeamProject -BuildName:$BuildName -BuildType:"Individual" -Solutions:$SolutionItems -Map:$MapItems