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: 2 months 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-07T16:53:59.000Z (over 10 years ago)
- Last Synced: 2025-02-16T19:17:50.894Z (5 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