Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/lcostea/tfs_powershell
- Owner: lcostea
- License: mit
- Created: 2015-03-07T16:10:31.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-07T16:53:59.000Z (almost 10 years ago)
- Last Synced: 2024-11-06T10:28:43.478Z (2 months ago)
- Language: PowerShell
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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