Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

4,198

Downloads of v 2.1.4:

75

Last Update:

30 Nov 2021

Package Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

Tags:

tfscmdlets tfs vsts powershell azure azuredevops devops alm teamfoundationserver

TfsCmdlets

This is not the latest version of TfsCmdlets available.

  • 1
  • 2
  • 3

2.1.4 | Updated: 30 Nov 2021

Downloads:

4,198

Downloads of v 2.1.4:

75

Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

TfsCmdlets 2.1.4

This is not the latest version of TfsCmdlets available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install TfsCmdlets, run the following command from the command line or from PowerShell:

>

To upgrade TfsCmdlets, run the following command from the command line or from PowerShell:

>

To uninstall TfsCmdlets, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade tfscmdlets -y --source="'INTERNAL REPO URL'" --version="'2.1.4'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade tfscmdlets -y --source="'INTERNAL REPO URL'" --version="'2.1.4'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install tfscmdlets
  win_chocolatey:
    name: tfscmdlets
    version: '2.1.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'tfscmdlets' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.1.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller tfscmdlets
{
    Name     = "tfscmdlets"
    Version  = "2.1.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'tfscmdlets':
  ensure   => '2.1.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator TheCakeIsNaOH on 18 Dec 2021.

Description

PowerShell Cmdlets for Azure DevOps and Team Foundation Server


tools\LICENSE.txt
The MIT License (MIT)

Copyright (c) 2014 Igor Abade de Vasconcellos Leite

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\TfsCmdlets\ACKNOWLEDGEMENTS.md
# Acknowledgments

* HelpGenerator.ps1
  * Portions by Akira Sugiura ([email protected]) - [https://gist.githubusercontent.com/urasandesu/51e7d31b9fa3e53489a7/raw/ceafe2b144a6394fa82bf9863f0f42eee29752b4/Get-HelpByMarkdown.ps1]
* ObjectHelper\_InvokeGenericMethod.ps1
  * Portions by David Wyatt - (Invoke Generic Methods from PowerShell)[https://gallery.technet.microsoft.com/scriptcenter/Invoke-Generic-Methods-bf7675af]
* BuildDoc.ps1
  * Portions by Kier Dugan - [https://github.com/DuFace/PoShDoc/blob/master/BuildDoc.ps1]
tools\TfsCmdlets\chocolateyInstall.ps1
$InstallPath = Join-Path $($env:ChocolateyInstall) 'lib\\TfsCmdlets'
$ToolsDir = Join-Path $InstallPath 'Tools'

if ($env:PSModulePath -notlike "*$ToolsDir*")
{
    Write-Output "TfsCmdlets: Adding installation directory to PSModulePath environment variable"
    SETX @('PSModulePath', "$env:PSModulePath;$ToolsDir", '/M')
}

$ShortcutTargetDir = "$Env:ProgramData\\Microsoft\\Windows\\Start Menu\\Programs"
$ShortcutName = 'Azure DevOps Shell'
$ShortcutFilePath = "$ShortcutTargetDir\\$ShortcutName.lnk"
$ShortcutExecutable = "$Env:SystemRoot\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
$ShortcutArguments = '-noexit -command "Import-Module TfsCmdlets; Enter-TfsShell"'
$ShortcutIconLocation = "$ToolsDir\\TfsCmdlets\\TfsCmdletsShell.ico"

if (-not (Test-Path $ShortcutFilePath))
{
    Write-Output "TfsCmdlets: Adding Start Menu shortcut file"
	Install-ChocolateyShortcut -ShortcutFilePath $ShortcutFilePath -TargetPath $ShortcutExecutable -Arguments $ShortcutArguments -IconLocation $ShortcutIconLocation
}
tools\TfsCmdlets\chocolateyUninstall.ps1
$InstallPath = Join-Path $($env:ChocolateyInstall) 'lib\\TfsCmdlets'
$ToolsDir = Join-Path $InstallPath 'Tools'

if ($env:PSModulePath -like "*$ToolsDir*")
{
    Write-Output "TfsCmdlets: Removing installation directory from PSModulePath environment variable"
    $NewModulePath = $Env:PSModulePath.Replace($ToolsDir, '').Replace(';;', ';')
    SETX @('PSModulePath', $NewModulePath, '/M')
}

$ShortcutTargetDir = "$Env:ProgramData\\Microsoft\\Windows\\Start Menu\\Programs"
$ShortcutName = 'Azure DevOps Shell'
$ShortcutFilePath = "$ShortcutTargetDir\\$ShortcutName.lnk"

if (Test-Path $ShortcutFilePath)
{
    Write-Output "TfsCmdlets: Removing Start Menu shortcut file"
    Remove-Item $ShortcutFilePath
}
tools\TfsCmdlets\CODE_OF_CONDUCT.md
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
tools\TfsCmdlets\CONTRIBUTING.md
# Contributing to TfsCmdlets

We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:

- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer

## We Develop with Github

We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.

## We Use [Github Flow](https://guides.github.com/introduction/flow/index.html), So All Code Changes Happen Through Pull Requests

Pull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests:

1. Fork the repo and create your branch from `master`.
2. If you've added code that should be tested, add tests.
3. If you've changed cmdlets, update the documentation.
4. Ensure the test suite passes.
5. Make sure your code lints.
6. Issue that pull request!

## Any contributions you make will be under the MIT Software License

In short, when you submit code changes, your submissions are understood to be under the same [MIT License](http://choosealicense.com/licenses/mit/) that covers the project. Feel free to contact the maintainers if that's a concern.

## Report bugs using Github's [issues](https://github.com/igoravl/TfsCmdlets/issues)

We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/igoravl/TfsCmdlets/issues/new); it's that easy!

## Write bug reports with detail, background, and sample code

**Great Bug Reports** tend to have:

- A quick summary and/or background
- Steps to reproduce
  - Be specific!
  - Give sample code if you can.
- What you expected would happen
- What actually happens
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)

People *love* thorough bug reports. I'm not even kidding.

## License

By contributing, you agree that your contributions will be licensed under its MIT License.

## References

This document was adapted from the [Gist](https://gist.github.com/briandk/3d2e8b3ec8daf5a27a62#file-contributing-md) contributed by [Brian A. Danielak](https://github.com/briandk), who in turn adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/a9316a723f9e918afde44dea68b5f9f39b7d9b00/CONTRIBUTING.md)
tools\TfsCmdlets\Lib\Core\Ben.Demystifier.dll
md5: D6E307032DD0A91A609FA328E8F3EDFD | sha1: 606949ADBC183A2450C8C76A59D2F513F9D501BD | sha256: E34379F2A5609B8190A820F5425D9779CA30206529A70ABBB8AA07337D2AB586 | sha512: A5CC0BD3EFE5BB87A66AF6A6057D57AF8AF571A65B573A678EDF9A067B4C801436D900ED5B536EEC689E47F484CF43F438C98084E62AA5F840F1974E0EB04FB3
tools\TfsCmdlets\Lib\Core\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 7977AD8ECC6BB29D4B35EA465CEE5AD8 | sha1: 58136E093F8A74DC3D9BE7380D41061274FF002E | sha256: CEC6293426DCE7ADF265CB4D61CE939F688BA7AD7EE8C8820C3E530B37FACA9C | sha512: 5E778D1AFD18A23FCCA3AAAF8CC152D1372D0C6E923AC708AC9A906FDD5176E48BA950587972578B4865233472A26B32454F70946B0BCBF084F0ECB67A1DBE60
tools\TfsCmdlets\Lib\Core\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 53B5C25C7B339B64A9739BD977D98AE3 | sha1: C63D222B686FD33974AE00E73626E71B4B1191AC | sha256: CC302DEE8DF2C0F481B8573490C9FC40E99327D5250FB5ED352C2F321B306008 | sha512: 3F49DC9B2C522438805549D0A55B77B294A5AFA9B242F4D6DB5BEABBB999CFB2BB24307C56E98D6A8F9369C363AEDB22CCC0254188139250EA5CF1CDEDC25FFC
tools\TfsCmdlets\Lib\Core\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 53C71BE582EF4F3AAD432072D0AAD237 | sha1: B4EB7AB0AC02233910090105697B4D0C2BEF9959 | sha256: 9C00DB1FF28022FA1CB155B03A225FA16EC737EBB5E1AD9C78365F8F0B6082C7 | sha512: 3D1539E6D73204FE0C4F70DE7A2F28BB4933739C99A8A97701787D0354E80DA13D1FA3E204B0C97A5A23F02EF2A3442BA0F4A81EE130CFF99A8D81FCCA26DB6A
tools\TfsCmdlets\Lib\Core\HtmlAgilityPack.dll
md5: 643291E379175304213167B8F0660E8C | sha1: C2F04DD71AE3C1782354B33C45A03AA03D5EAD5B | sha256: 32F024CDD195614DD499C10A4622A44CB0F9FBB41CEA71EAB455CC3C083144C9 | sha512: 55FA42C1219912BE5EAE033A4499127DF099BE0EF7057C09B3A605D5897749F75D2315A73EA7E0A53909064B591124A830553141BF05C47F4747C908FC0EB9B6
tools\TfsCmdlets\Lib\Core\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: AEB08B707B0C0EE782E96B34FEA4918F | sha1: EE2C70CD4282C7E5A3409FACB45C1787C9FFDCB5 | sha256: 33F9E014320F43E340D69F8056AA979D3DD08ADC1325FBF19EEA923612EB29EC | sha512: 89FA7384761CF0E91A47603FFD06BB7274DD69F1675B4B04F7BC1108BF983F6B1B1D3F90F431A9C5A1F7EA68594DFA887955A91E3CD39FFE750BBC37689FFAF7
tools\TfsCmdlets\Lib\Core\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 64BE57EFDCC037ECC0CF4C169B5CD4E0 | sha1: 3B653B7A2677ACA9495424A182F6D0709AD87B92 | sha256: 17DB1CB72A9BF9B2335973720482F902AA191C0AAF04D675D233E2C340CDFD6F | sha512: B2716C9767499D09C02BB9CB5402A00E3EF45CC24B7F279585A98D47EA8A4AA77F3A29F59A3D9690665663825BF1A6CCE595B9D00FF0B5D703A47CFC316ECFF5
tools\TfsCmdlets\Lib\Core\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 789D27F465FFF02F9155537BD1955FB5 | sha1: 27B65D79520723794DFE74C2AF2646AAC5DB0AAD | sha256: 2EA5045CE347CA323A62DEFCE0C6186CA66787BD8C948A6E02732EEDDAB7ADA6 | sha512: 7104C31E8A4D0C11836CD586714B2E39513893CBBE6F9FF24FE4AA4DFFBE4DECEF370E4D0091D89418E7DEAAF44FC69C47549907C411A9BF0EDE771A8DDB5707
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 28A02101A3595DBD9A574716E677D7EC | sha1: 0CDC0264D1AEB62050E02DB5290AEA0CCCEDE29A | sha256: 12F2C50B6DA90498B471320FB39D9D3063C8888BA34DD8878C1E8CAFB240F36F | sha512: C647F109B332E34842010212A54A3A797B7D87AD675CEDCDB6B466BF8D9F020F8F86E8AE1C2468EA952603DB85E5A4DB673480E6CA06B7C1A94F5AA04B0F201D
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll
md5: 488D85C7FABD151DD189447D8680206C | sha1: 1045BA9D0E24F7B7D3299AB5C3E4F054C419706D | sha256: F3F278CCC3AF807C6184051DE533E8A1F81594849612CC83751F2CD65C10AD17 | sha512: 28D9894524F72C895E13555455FB53335E0F7F45058BFB4DD7792266C1F957B7501AB8B0B257DB98F2628FE672505BE4EFA23E5C951856EE86C03F6C3D475839
tools\TfsCmdlets\Lib\Core\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
md5: 59E9D385DBD4B7DF8821B0EBAC0D0941 | sha1: 7AF9EA88E34FCE4A6BD568CF043B00624793F313 | sha256: B9CB7C841E53890F3650B727A7094BFD9AE14E775319CB0DCA170021EDF22FFA | sha512: 106674E8807C6E470ADEBD94129B65CBDFC2477CECCDC5CC94A6439A24F8BA2FE425B516901D321B6816E5BE4DE0B4DAC1D7378ED8DEBC43C85CFEDFE4E3ABE4
tools\TfsCmdlets\Lib\Core\Microsoft.IdentityModel.JsonWebTokens.dll
md5: 627B852A21FE33F452DFAD41E0B422F7 | sha1: 9F2C57648740A89666A9FA7EDC3FF50DD3B8A8E9 | sha256: 4B9E70BE0440F3D619A66C6E3D258B0ECD95BAF002805D78009F447E02192696 | sha512: 0870C30E4CC9AAF894EB0FF550BEE173CC22E9D8AAC79F67ABBA205D321F80E65EDA8780BC4DB44D513300216FCB300A6715D39B711B6D20EF3C22670491DA6E
tools\TfsCmdlets\Lib\Core\Microsoft.IdentityModel.Logging.dll
md5: 58CA6BADE440D2181F2EE8CA602E6A6C | sha1: D28A11CF993578C54AC1652FEF3E34FA8FE57509 | sha256: 5805DBEF5DC49F8A30810182F1D1E6DE3D12F6D4A00292F492017EB9641FC159 | sha512: 84B60EE0DB72233C45F1B9945C90B64B2D20E1415F95C68C008F650B498A819D9723FD7FD41D72A0B4C889FBEE4CB039E554F57EBF5AD06E3CC9D2BA8512AE2C
tools\TfsCmdlets\Lib\Core\Microsoft.IdentityModel.Tokens.dll
md5: 4ED422E1D4B93851A08B340DE68FCCF5 | sha1: 0A2D0CA5F6AB2849DA70B1CABE779E579C831CA3 | sha256: CB0DA06C03F5628272465D035792F079544FBB3225C3279BBAFBF9B590434F7E | sha512: 5E42C7F5252550DDA3E405D0B5AE2825D9283F817741839588D2E6F181B4C862696DC0D9F70A7061A7D43C649B1B88C3BBD26C4540F6020F22E59CC3722CD7ED
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: 34005B090B0A04D9C6A747F1CE92CDCE | sha1: 5F2E785DD36E97C48A1F3FA82E6A1B1443DAFE63 | sha256: 810F8027336CAFE7171ED94D4D1A3C7B0E9ADE302A5444F996C062DE28B679A0 | sha512: 939ADDA8B7FE2E69155DDEA71DAD46886AB7745B7436CF428CAE1C9120A65BD49B61634A75609459D7F767C1A78258E2B01704E223E22F141DAD42A515C324E0
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Common.dll
md5: 3B363A994DA8C46F26E666F6A5E7BEAE | sha1: 2221D4ADED52211F8C11B7CFB9D8DCEDFBB4A015 | sha256: 0B4C08200E0F358D097EE867D076FA77C29F47C63CB414099967B0754AEBCB43 | sha512: 0135E0D446E1117B239667AF01F79AE213F7B1ECB81EB748323E079B919C55232AF74912CF872A246888ABC7808F99F55B5882B7C12DCE7A02DA552820C32F5B
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 522CA7891575DC61FA1CC58019FC1F1F | sha1: FE74BEF2C0F67256EFB9EE33C6907F42FBE6634F | sha256: 6A4346FDB8828C8CE56D448F03E2D6F6BFB97763B83B35E690E403C77E9C9E4F | sha512: 33465C6D4D5FDADFD76AE05F87C507BFB7A202C8EE7EC61FA66769A5FD48D5D6C6D770155F4E47A6D51A0711D04B5D662FE4E2BE6F49618F1E1668242DD0EEFA
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 1D1F97ED1D2DF3F4E8F35A6F3012014D | sha1: EFC350D31BE09F4CA810B8D2E3637873794AEF60 | sha256: 5D243329494DD2D79F1485B557BEBAEEF2F2DC90DF4A8621255D29EA532A45B9 | sha512: 6FACCBFC3C54D365BD9531403244CA502F44D984C078E0CAD037C98C70B9F797D3AC83DB31682EA818280F3B61AEA6CB7C0BC62223D12EB2BA35E7262414B171
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: E2629FBE4E6EF2375BD5FCC958BE43A9 | sha1: 468BB7FB75E0C62A60027E2D3F3FA0C04FBCFCA5 | sha256: B3F25C14780FF72C89AC7D6B60C3799B7ED7A944AC2DA3CD2E38CDD4D5D42D76 | sha512: 2964BF98C98274765BEB299175ABB092785AE68356C00034D0CF5EE82F273C68D93DE7C9C9ADD9CE2DC853638224FC88690F567200CB2C19E3AEE541AA64981A
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 6C692B4ED9CB4E8AF67F9F878240916A | sha1: 1DC0F38A5E56CF00707265611AE63AF687E3B5CA | sha256: ED2BF37826EBCFBECA01E914BF4DDB5092C3FAE095E60BDDE332F8625BFEFA2D | sha512: FF8D7839D22AD21147E900A781F432B709D14AAB25B98988F76FFCC635BAF0B2F900103FC0389E26DF778FCA746ABCB51744A5E9B2CB4B14BFAA608EABDB7879
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 4A4D9328FA5EB26C3D11A51BBEEFE1D2 | sha1: EFA8EB4F003231B6F3A91B52CC552CB58704127C | sha256: 1F38F1B3AB080F78376025BC59647C5237C3B36A8ED3FF2AA96C503EA90401E6 | sha512: 693A88E38A9FD950FDABA28C86367821E5EAFF35CC6FB67DCE2C725DB73962D6B78394001D4D215274810CC5C6D4871196649F7C007F8292A3C9F8B16734A6F9
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll
md5: B0588D14A6E6A0EDF4F8DF8FD222DB21 | sha1: 06DCE3A0048826813CAF690F25059F7AA9815878 | sha256: C25A7EEA587DAC8DBFF6C5677385BC35C5E118B82620CA903DC1D8D57D33FF89 | sha512: 8F9229026243F83AEC244C636273210AB269C41A8B01107F1DE4F1824E6B37118B545B547438F3FA1B2230D028C7CEE1BBB4C00084C742395AA4505CA070E490
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 817F8E192CEF3E8D0FE83CAC3B8BA24E | sha1: C82CCCB2AAECBF3851BDE664BFD3097DEB516F6D | sha256: E2E68BA11E8AB3E48AF32B91530BC53D9884D1514E585559A1DF5D8661CC875B | sha512: D30A496E8ED92C91D012ECBB4774080C11FDB4E703AA77C42351B23EDC77765CB48F58A11FB29270037782D86B01664769F78AE7FFB798820D5676EED633A849
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 9C108503D2A81CAAF70FFC7C3163C736 | sha1: DE48068FE29D5E7B524F711CCF4E9CAE09992446 | sha256: 437BC7455CB2FFABC7CB517BE9CF5E480A095F9192F8E689004362617B61DE2F | sha512: 4DAB48BC788D7372CFD6BA909EF91792D1BCBC8D78CC5E90EEF87D86664A21E864313535693955E4D86B664A4669C9A02934E752363E01E990B8D56C3A3C7352
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll
md5: E3A01A08BE418FE72A057C36DDE27D4B | sha1: C8FF01DF0D4F5BC0533237774CB08CE708B42252 | sha256: 1C91AFBE7AEA3DBA6F54135D7E321437B7B449B3BC4A7597C8FFD9862F8325A2 | sha512: 5465297A3043D41009071CD0380F7D0B1601B13827664D724AB1A53DAFA899614B273A111B3ABB39BBFC59E8ACE7520F49526B4933247BA524D09AECD38AE9A2
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 8FE7985A1AF6ACE97FCE5A57684E30D6 | sha1: A7E8C1FA131F19DD46EE4B00AC26B63C8AE9A32D | sha256: 8C1AE80DDD6E3989E1FDF7C18429AC46E5A8C5A34802EBC1878F13DB74F8E921 | sha512: F4475D83B37017A33C1E3B1E530AEA70280653FD085B8A722B3FAA79811BF12E3968F49158E05B30F8FC51D7EB084007626EE2EF63D2E824C02CB82E1D2B3427
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: 009E1920C40B2B5C7B82F210C73BB80D | sha1: 41BE2EA6E5CB0A1AB39B3F24DC015D46FB00BB29 | sha256: 2EFCF500E8011C7FCDEA728AED193521807AF20FE07B38AA46F91925D59E5F7A | sha512: 00D5D0F9E00F8DBC035E5D4EC8D506A11A55135DFA223F03A558DCA4AED5433B22BF2680A058B78A51EBF1B9FE6E666C2746AE5C8B44D3DBFD3B0B73D498FBE8
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: 1A524F64CB57FDAABAEFDB9A879479C2 | sha1: 8491FBDD0689A8B4326731AC76F484F560D3BA47 | sha256: C9F9992AA5ADD4B3F364BE13B9D1A3A722F14B7667628ABC6E396ED6E7DCB82A | sha512: FA0BF92608A0B9B3B225D8EF1433D14849AC0DD7FB090F2E608097A4ED7178C727A3C53DC03A23FA82334081BB9FD6DB6655BB8876764AFB92731B69295F0D29
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Common.dll
md5: 531425DBBDDB2EA4E664B2975D546D63 | sha1: BC72DE429CDD56643166DDCBDADB6A5A9EF7D584 | sha256: AD54A777BFA36B8F6C17C4A3E16B05171D6354988348C8B948309150E4D47ED2 | sha512: 262D0B48D4A6586B6334878659A675E58A61DA99771E5899DDCE83BAC33B9498C6EEF15091BC79D1E2A3C29A8F55EA9559198B53162F9A6DD1347725D2E5061E
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 76E061CBCCA837831BFAFEA0A5F82CBB | sha1: CD2A4CBFB71E6F05C07B001F364237D1BD2DF22D | sha256: 7AAC47E120E930335089AE2A378D1E8E1BB66A2D4DB24523A70B8CB1AE59164C | sha512: BD9E7EC3F9FF3F9EBABD117DCDE63B75385867EE174593680E2D60AC5302DE8E0A6B27CC8A01B5C795CC69EA889177B5D091A895378FA13B539A189FCA69BF3C
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: B887F1C484F0FB1DC637A29CFEE7E8B0 | sha1: 287483B37698B434A1F35E4A642D396AA62B9713 | sha256: 5CD261757BA31BB271568F43BA7F6FB53CB63FB321C24A7D24A0A72116575432 | sha512: 1EF7CA21B7447C85B7B94A4F9BC93AD5F484248A1F9C71F9025CB809EFC658293BA156476E98D045A8D35F2ABC759F5C0BA3E7FAB0675F1CFC295F20B1AA4162
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 99D4E211536DF84962F4A40DED069A12 | sha1: 8B27965958E167327C0097546F8CB9BC41E01E0A | sha256: 925626F9A1B53938D2ED97144C157105999EE8C19276D8C14B28EC37AAE00E40 | sha512: 072F5A16DB7440630C61C2A4649C47047B036CB041396C39A6E5DF8126799737589992C7B5B4862499BE23A3A349A656F7A369C62D001C84804906756981008E
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: C1130499E8932EC12983BFDE3EBFB1D3 | sha1: 753911C9AA86163EDF9460D3B7EB6148487F9F0A | sha256: B904B26CF2B3297F39792B4655C272B4EFD2B3E607753280C428E4D7DDB11A02 | sha512: EBEA0B219B5E327B88711661AE35512A76DA40DD5F480E81B2492B7879E8C25572EC158A67DAB9DB9FE3DF82E0BDB3D384736AE94E01C9ABD69D84335D70236E
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: B5C79F8FB9351F16605D675BD187ED7F | sha1: C04CDC204F32DFFF3AF146BC1D1E6FF6B5972675 | sha256: C3F262B0DBE67ECFCF8E6729EBA6ADB2A69984C05C7EAADC4398B4C75C44CB8F | sha512: 6240A185EB5210EEF81126BC21D1956098760CCFE04930585FA6112679A349F1622CD5FCE715015CDEC0CB7B4CC4869E5AD3C05AF32B26437F651D91C6027C10
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: E98FF2ED15D5FA56EA8ED1C633D3B2AE | sha1: AFECC4B08E01566E2A19BC03D4DDEB2767163756 | sha256: 6F7780F90CAB88A05FEE4A999469C0040B1530D9E172A54A54F0ED9CA6D0950E | sha512: 43571E773FEEF24B5E891758492CCDE5B77E0F53FCF0B2A441B0B2212C53EA6CDD7E606EB5A72A3713304D12A321A360C19FDA5480223893BC531640359D96A7
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 06D168E63ACA950EDA9952E7E9686E20 | sha1: 9B33257A931DECAC401ED388F0B57DA7B5FE9C4F | sha256: 3C7E164862C27B50483671A2E376C6FB06A10167375B01E9BBFC5448231F1F9B | sha512: 9D51244354EC0DBC45AC5B2615AE772B3A82C1EFA747723A0D078F5EDFCF3FE14F7CE7AE2749629A86CFF817FCE77447CD091AA854A8D4558FDCEF8FCF3EDF68
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll
md5: B73228632CA8B89543D3BFC0C08E7A3C | sha1: ACAE02377BA808D20EF15E7990AB48EEE0C15A95 | sha256: CF3330C14AFA4DBE89E0E7472122576E760557ED8285C05807D0F4DAA2A15F3D | sha512: 237E40A70AABB3C1802F5642E1FF6D6AA6DB3A00CAC1CF9725F5A6211BE2EAAF1019245EDFEAAF034E88090866E748FB3D3C39047FCA8F8194D5447681CE4BCD
tools\TfsCmdlets\Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll
md5: 56F7546D71C5308A6BB00ABBAB333C29 | sha1: 1AB255ED67F418634DA1F5C64C9A61EDCF6827FE | sha256: 498DDEF7732ABE5B1FEF1A24D32B0801BE611DFBB93D5A55529207718BF13D2C | sha512: 057E25B952E7BAAA302FED3B06C6F1B1ADCCF1812B8CAA68ED5F1475FC0DAA99E1B8A5FF13286F9F720A2FCA76AC4B8C49C04BA3DA6AA3CF4B18B8C29732DA89
tools\TfsCmdlets\Lib\Core\Newtonsoft.Json.Bson.dll
md5: DABFB21C631B4032B75A4050A2FF36B2 | sha1: 4CE7600707262F761F441AA5C9711B647AFC35B5 | sha256: B606E5DD77A6242CA1F1DF717EB53D9505AE56904330B975C08D4F2DBE8C3319 | sha512: 739CCFCC6420AEDBF4CE7D9499BB3852C0A2ADEE2D1F9E913E2B30B0B2BFA4BEA573E2FF11F59D6D889A52A44069D449C78D1BF06BACDCF25890029B26454E73
tools\TfsCmdlets\Lib\Core\Newtonsoft.Json.dll
md5: 9454AE6EB0C6AD77E93A95074BA29266 | sha1: DF83FCB3639596AD42D5BE8314EF9D672079198B | sha256: 99177A4CBE03625768D64A3D73392310372888F74C3EB271CF775E93057A38E6 | sha512: 8D1D2BEDDE2D5F33179560E1A4F72206EE1984B3F5EB96E93F94329C4C4A8044DD74D62F9E708293132DE8C8F351F0E7FED74A450A251A8ADE205702B29D9DE1
tools\TfsCmdlets\Lib\Core\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 318B963F8495870E3FDABD277479504E | sha1: D7684FBC3FA6AA969ABA9357F303DA8816BCE4E7 | sha256: BCFB1B8654509340B728CC5D68EA10685FFFCC22635A6AE3CF075BBE8E4037BF | sha512: FC17E7D14DC5291A0DA27D8E1F47F22D56387CDED173741392DF3410B072FD7DA90BBD792B01C62241B9C0AB75DF3A1385236FB1E23E6B4E671478AFA558118E
tools\TfsCmdlets\Lib\Core\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
md5: 8F5107F61056ED86F410B8ACF88EC6C0 | sha1: 9FEE5097582BCBB87E6A923BFD37FD0E2EA6AE18 | sha256: EEC579A865371394AD8D8D82EC453C268343D90262DA76AC84D51564AF40CCBC | sha512: 9686173C97DF6D36682493CF6BC6846BCC9967D9DCD520BB45B145B58D097B1C116826158D1196001FA9373FDE6AAAE24A3A13A90F5926764EA5D2417021648F
tools\TfsCmdlets\Lib\Core\runtimes\win-arm64\native\sni.dll
md5: 167136D7A81BCC85ACF4930AA7AC835F | sha1: 1E70240CC820796E78D77B1219291EEE2FB6DBE0 | sha256: EF18458C4DCB93F6B4EAC07E1589CF3450BF878F2DD623F5D34F6A0F1B16E57A | sha512: 2C084142E09AE1B850F8550A55142FBBF996F3DFB122BBCAD4FFFC11A6FDC5417D623683F383C4AC4A35E46EA0D441D82588231093F179FF4601CC598A1C8896
tools\TfsCmdlets\Lib\Core\runtimes\win-x64\native\sni.dll
md5: 7F1799B65B98450A19E4D049E9D3E70D | sha1: EC80C5A33374423A9E986C383A36A97DA70A3584 | sha256: 68705C4EF9AB818F2956A78E05F3FEFCE501A1448793B073B46110BEB49B47D6 | sha512: 8D67297C5CDED487C88FCAAD5A36E80926DAD8F1863E38F397751056F51258AC7B5A9E5C09C01BBA7A224F38FB2EE719586FAF0BA81516E05A19649EB09E7B78
tools\TfsCmdlets\Lib\Core\runtimes\win-x86\native\sni.dll
md5: C62A83F20BC23AEFACE70EC13003C4C5 | sha1: 35553CFCDCBECCDC49710E68AEC495C16880F0BD | sha256: 1446D6B26DA49A5A9F366972F89F4E236F916955F31DDC38EBB96217C1CACE9C | sha512: 4DDA44FD5B538F5DA9E8CB46A3AB1BDC14B43425B9A61249ECCC925D986AF7B8B3548DB9490238F14807909ECF479415117141DDB344119438A59F97E894EA37
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
md5: A8B8C130324DA3E7FAB5CB7F3001EBE8 | sha1: 82379C4C9A81D404369B2B89D74498F1CCE26102 | sha256: 0CBF6D2F6BF55A901D4C5E3971725DA1165599A8ED2E6F134F8292FED43E0DCD | sha512: 4AB0EDFAE0DA0F287EEEA99678A8E9381BE871B8F3166F0E22039874E6016B37D8AB3F1E055B61D0C21987CDD735B12DEEBA4EF7826B8923802C8C79B0A00F7F
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
md5: 91B5141F40E650DF9F24959E002E6C66 | sha1: AC8675F91A4879042ED660C1D800058185552A57 | sha256: 1C73A1B016CFC8D497106EEC08AF07616F2F4C07E4DDC807C9F120CEACD0A53A | sha512: 6E1F88FC7C1ED560C4CA6168FAE9275583C7D664AF1A70F2A0A97A717D4B7E1D40A33F06B2782BB4ADB47AFC8B30B136DC28C0487A9DAEE183D8156DE5E5161B
tools\TfsCmdlets\Lib\Core\System.Configuration.ConfigurationManager.dll
md5: 00999FB817F7FDC8FB8FC30FEEFE82F3 | sha1: 275A2FD10D8463935B1F5ECE7A78A5639C504A3E | sha256: BAC1ACE21A5DE56ED50BEE8CA22FC41BC9DD3328DA777DFC03AA92C3D05DF104 | sha512: 022095FF34F8F30A2848647C0D68F461086A529384F8CD58B7FDA65DF6F1208BC3ECCF71798F0E05D24051993E6B2369B298D64E7E2EDD4E54E2DBF5DA09BD34
tools\TfsCmdlets\Lib\Core\System.Data.SqlClient.dll
md5: 450B029703D4B740F6E0A2930660ABD4 | sha1: 0EA7A1968CB1C639CC767496A6E20B8D3E6F08D7 | sha256: 1A14BFB3D4CDAD50FF71869ACCFAC5A08283A7CB03C03D8BB2D00A728035056C | sha512: 38E8D86A183AAC8F070617D5EA4BB109C79742ADBC8551343F385983446201AAEDFF059926933DBB4E76AE747EC5FC786363DAD80D589BECFB3A766107A8DC4E
tools\TfsCmdlets\Lib\Core\System.IdentityModel.Tokens.Jwt.dll
md5: BEB053CED12524CD30929C39FE042C47 | sha1: 921E59D904D6C8E2BAD5FEB738C01798A83ACD6F | sha256: 64ECBB6C584D9B3394CE519EE75ADEE80D4AB54FFEBAAA8423A08F105B34C9EE | sha512: 739AE832BB78F84BAFDC15AC6F7DE9CBEBE30FCC73F4FDB8829AFDDCD18ED3959FA7665FAEA8160FB75BB4574DE299EB7E0A2D794278C7C121C208CE334E01EB
tools\TfsCmdlets\Lib\Core\System.Net.Http.Formatting.dll
md5: 02E47079A1B45F4FD8142752C91970E3 | sha1: E8016192D0A6738CD075F837109845376B270F14 | sha256: EF32858203F7263AA5767BAE4E94567FA1B3CDEDE214BA87603009C1C17B264F | sha512: 72DD2AED377786C0823DC4DE58A4D6A9E484E766F570E14D5C700003026E834EDA53628E7DAD2AD9DBFCE6706C52C2320900EE4CEEB062BE97A255FB46440918
tools\TfsCmdlets\Lib\Core\System.Security.Cryptography.ProtectedData.dll
md5: D3AD09FBF202167B7E6B5F0E1296380B | sha1: 2C099DB9745C21754B03A4C9AF55213A1A4444F5 | sha256: 81A0385CF1FED22F3153789D4AE1FEE75719F23E72CD543EDBA1AF48926FBF24 | sha512: 0B660A4ACB24D382BBD7058E2A3D21CDD741E7ED0A9D60672B0B667A75E145E229A594D302C78AECB5A729830092BA0117187665F8043A6590F8829D86991395
tools\TfsCmdlets\Lib\Core\System.Xml.XPath.XmlDocument.dll
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
tools\TfsCmdlets\Lib\Core\TfsCmdlets.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "TfsCmdlets/2.1.4.2594": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.194.0-preview",
          "PowerShellStandard.Library": "7.0.0-preview.1",
          "System.IO.Compression.ZipFile": "4.3.0"
        },
        "runtime": {
          "TfsCmdlets.dll": {}
        }
      },
      "Ben.Demystifier/0.1.2": {
        "dependencies": {
          "System.Reflection.Metadata": "1.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/Ben.Demystifier.dll": {
            "assemblyVersion": "0.1.0.0",
            "fileVersion": "0.1.2.14"
          }
        }
      },
      "HtmlAgilityPack/1.6.5": {
        "dependencies": {
          "System.Net.Http": "4.3.4",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XPath.XmlDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/HtmlAgilityPack.dll": {
            "assemblyVersion": "1.6.5.0",
            "fileVersion": "1.6.5.0"
          }
        }
      },
      "Microsoft.AspNet.WebApi.Client/5.2.7": {
        "dependencies": {
          "Newtonsoft.Json": "12.0.3",
          "Newtonsoft.Json.Bson": "1.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
            "assemblyVersion": "5.2.7.0",
            "fileVersion": "5.2.61128.0"
          }
        }
      },
      "Microsoft.CSharp/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
        "dependencies": {
          "Microsoft.CSharp": "4.3.0",
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Private.Uri": "4.3.2",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Json": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
            "assemblyVersion": "5.2.6.0",
            "fileVersion": "5.2.6.0"
          }
        }
      },
      "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Logging/5.6.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Tokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Logging": "5.6.0",
          "Newtonsoft.Json": "12.0.3",
          "System.Security.Cryptography.Cng": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.NETCore.Platforms/2.0.0": {},
      "Microsoft.NETCore.Targets/1.1.3": {},
      "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.194.0-preview": {
        "dependencies": {
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          }
        }
      },
      "Microsoft.TeamFoundationServer.Client/16.194.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview",
          "Newtonsoft.Json": "12.0.3",
          "System.ComponentModel.Annotations": "4.4.1"
        },
        "runtime": {
          "lib/netstandard2.0/MS.TF.Pipelines.WebApi.NetStandard.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.Pipelines.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Client/16.194.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Newtonsoft.Json": "12.0.3",
          "System.Configuration.ConfigurationManager": "4.4.1",
          "System.Data.SqlClient": "4.4.2",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.ProtectedData": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1",
          "System.Xml.XPath.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.InteractiveClient/16.194.0-preview": {
        "dependencies": {
          "Ben.Demystifier": "0.1.2",
          "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview",
          "Newtonsoft.Json": "12.0.3",
          "System.IdentityModel.Tokens.Jwt": "5.6.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Client.Interactive.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.194.31924.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Release.Client/16.194.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Search.Client/16.194.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          }
        },
        "resources": {
          "lib/netstandard2.0/de/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "de"
          },
          "lib/netstandard2.0/es/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "es"
          },
          "lib/netstandard2.0/fr/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "fr"
          },
          "lib/netstandard2.0/it/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "it"
          },
          "lib/netstandard2.0/ja/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "ja"
          },
          "lib/netstandard2.0/ko/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "ko"
          },
          "lib/netstandard2.0/ru/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "ru"
          },
          "lib/netstandard2.0/tr/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "tr"
          },
          "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "zh-Hans"
          },
          "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "zh-Hant"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.194.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.194.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.194.0-preview": {
        "dependencies": {
          "HtmlAgilityPack": "1.6.5",
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.194.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.194.31924.1"
          }
        }
      },
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Security.AccessControl": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1"
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Sockets": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "Newtonsoft.Json.Bson/1.0.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.1.20722"
          }
        }
      },
      "PowerShellStandard.Library/7.0.0-preview.1": {},
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "dependencies": {
          "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
        }
      },
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-arm64/native/sni.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-x64/native/sni.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-x86/native/sni.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Collections.NonGeneric/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections.Specialized/4.3.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.ComponentModel/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.Annotations/4.4.1": {},
      "System.ComponentModel.Primitives/4.3.0": {
        "dependencies": {
          "System.ComponentModel": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.TypeConverter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Configuration.ConfigurationManager/4.4.1": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.25921.2"
          }
        }
      },
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Data.SqlClient/4.4.2": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1",
          "System.Text.Encoding.CodePages": "4.4.0",
          "runtime.native.System.Data.SqlClient.sni": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Data.SqlClient.dll": {
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        },
        "runtimeTargets": {
          "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          },
          "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        }
      },
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Dynamic.Runtime/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IdentityModel.Tokens.Jwt/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Linq.Expressions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Net.Http/4.3.4": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Net.Sockets/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.ObjectModel/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Private.DataContractSerialization/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        }
      },
      "System.Private.Uri/4.3.2": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Metadata/1.5.0": {},
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Runtime.Numerics/4.3.0": {
        "dependencies": {
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Formatters/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Json/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Private.DataContractSerialization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Primitives/4.3.0": {
        "dependencies": {
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Security.AccessControl/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Security.Principal.Windows": "4.4.1"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.Cng/4.5.0": {},
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Security.Cryptography.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.OpenSsl/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.4.0": {
        "runtime": {
          "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        }
      },
      "System.Security.Cryptography.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Principal.Windows/4.4.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Security.SecureString/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Xml.ReaderWriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlSerializer/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        }
      },
      "System.Xml.XPath/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XPath.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      }
    }
  },
  "libraries": {
    "TfsCmdlets/2.1.4.2594": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Ben.Demystifier/0.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-72yB6sCgTKX6Wv3pZnbkANJrC4JzxPnss4LuaUpIeRiiIrfWKJw6/DNaFUYAckx6EluP3YydHreIvJT9tnljJA==",
      "path": "ben.demystifier/0.1.2",
      "hashPath": "ben.demystifier.0.1.2.nupkg.sha512"
    },
    "HtmlAgilityPack/1.6.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uBXgK1zsIin+X2BYCy8KPDwafRet+Ja9yUJWdnc5ATlQBHrK4goe6DTAOaEE41IceaAH1OYTHgSpyvXqhX66rQ==",
      "path": "htmlagilitypack/1.6.5",
      "hashPath": "htmlagilitypack.1.6.5.nupkg.sha512"
    },
    "Microsoft.AspNet.WebApi.Client/5.2.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==",
      "path": "microsoft.aspnet.webapi.client/5.2.7",
      "hashPath": "microsoft.aspnet.webapi.client.5.2.7.nupkg.sha512"
    },
    "Microsoft.CSharp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
      "path": "microsoft.csharp/4.3.0",
      "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z+RMsrkkaEYR+obg9G8Nr2C9HZZAcmzCMqvBAmY94DhCJCW5KxAHyTZjlYBM6fx5tC7blFtYRDogvb0EtTwJMQ==",
      "path": "microsoft.identitymodel.clients.activedirectory/5.2.6",
      "hashPath": "microsoft.identitymodel.clients.activedirectory.5.2.6.nupkg.sha512"
    },
    "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
      "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
      "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Logging/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
      "path": "microsoft.identitymodel.logging/5.6.0",
      "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Tokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
      "path": "microsoft.identitymodel.tokens/5.6.0",
      "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
      "path": "microsoft.netcore.platforms/2.0.0",
      "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
      "path": "microsoft.netcore.targets/1.1.3",
      "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
    },
    "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hzG27AYYJMr5wGJN1SscfSNIA5kJ6RSYl1jevuzZ+5uzqwz/6b/AiL9924w/YC4ntErEWPaH/YTH2ZPH8KyBPw==",
      "path": "microsoft.teamfoundation.distributedtask.common.contracts/16.194.0-preview",
      "hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.TeamFoundationServer.Client/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7Rpw5OIuh9Cqfbwdv+aTNTHoIY39P2IxPb5GqrECNqf0wW/vgCA1Iv4F0/VM8N99vlnL3ElZovchj/c8FePHZA==",
      "path": "microsoft.teamfoundationserver.client/16.194.0-preview",
      "hashPath": "microsoft.teamfoundationserver.client.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Client/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/xurr7QpTOPdi0oKJWxiqgkycIKL0/vfboaTXs+uPOcydisglhdwASXzA63c9ic8bg2pnsNvBYvsDNN14APAkQ==",
      "path": "microsoft.visualstudio.services.client/16.194.0-preview",
      "hashPath": "microsoft.visualstudio.services.client.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.InteractiveClient/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WuLCb91DO/nslxZtwbHQm+oy4sxW33mqh2FDatJTaWi5AeVwnsKYWKvw8Kj2rJR52qoPDTmHEKpivefouQBHzQ==",
      "path": "microsoft.visualstudio.services.interactiveclient/16.194.0-preview",
      "hashPath": "microsoft.visualstudio.services.interactiveclient.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Release.Client/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t+4ezztUo7lZYQB+RqPudJeFt0aEmhwOIS2edhW6EhgeM+FFLyMp6WVQVQYnkSwZ+WdkLT8KN4fkduHcjQJzDQ==",
      "path": "microsoft.visualstudio.services.release.client/16.194.0-preview",
      "hashPath": "microsoft.visualstudio.services.release.client.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Search.Client/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YqrjTi8aw0UD3mGIhedL6cptvbjND3QarXRBt6x/usQDhlovs1n1Je4fxDZMkQqwGvPpCcXXjbImhiFR50xTEg==",
      "path": "microsoft.visualstudio.services.search.client/16.194.0-preview",
      "hashPath": "microsoft.visualstudio.services.search.client.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xFAKOCXRdWGDH8EVb9xOlIrE+TCG5EneY31TttI7S7iBPYwKLAf/60pjl3K5W4KCoOFcg9ZYin7wQiZDqsDDKw==",
      "path": "microsoft.visualstudio.services.serviceendpoints.webapi/16.194.0-preview",
      "hashPath": "microsoft.visualstudio.services.serviceendpoints.webapi.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.194.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JDP4nlWs5sHCqq8rmLQSoEcy8YcTDViwHTFA+PSuTfcBj9IjHGfCLrjD22tQVwHn04/wHNFurOwyOWKqcjKRmg==",
      "path": "microsoft.visualstudio.services.servicehooks.webapi/16.194.0-preview",
      "hashPath": "microsoft.visualstudio.services.servicehooks.webapi.16.194.0-preview.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
      "path": "microsoft.win32.registry/4.4.0",
      "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
    },
    "NETStandard.Library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
    },
    "Newtonsoft.Json/12.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
      "path": "newtonsoft.json/12.0.3",
      "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
    },
    "Newtonsoft.Json.Bson/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
      "path": "newtonsoft.json.bson/1.0.1",
      "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
    },
    "PowerShellStandard.Library/7.0.0-preview.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vd2iKiQjgB/Lh3270aMgdq/NdVq/qNHsLM8P7k/oD3hALG1UOzePa62TOSK6RlQClfXW1xI9Y1e+haHlUkF3PA==",
      "path": "powershellstandard.library/7.0.0-preview.1",
      "hashPath": "powershellstandard.library.7.0.0-preview.1.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.native.System/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
      "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
      "path": "runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Net.Http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
      "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
      "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
      "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.Concurrent/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "System.Collections.NonGeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
      "path": "system.collections.nongeneric/4.3.0",
      "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
    },
    "System.Collections.Specialized/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
      "path": "system.collections.specialized/4.3.0",
      "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
      "path": "system.componentmodel/4.3.0",
      "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.Annotations/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ToiYqSCioqhtspq2O/jYKtyTC/T0uwWHBTYlzCi6PRbSSHArN1IaRWeHffDamvms5sye5FDUWCfNZgubQpNRsA==",
      "path": "system.componentmodel.annotations/4.4.1",
      "hashPath": "system.componentmodel.annotations.4.4.1.nupkg.sha512"
    },
    "System.ComponentModel.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
      "path": "system.componentmodel.primitives/4.3.0",
      "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.TypeConverter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
      "path": "system.componentmodel.typeconverter/4.3.0",
      "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
      "path": "system.configuration.configurationmanager/4.4.1",
      "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
    },
    "System.Console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
      "path": "system.console/4.3.0",
      "hashPath": "system.console.4.3.0.nupkg.sha512"
    },
    "System.Data.SqlClient/4.4.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Bv5J2EBAdP7FSgehKYN4O6iw1AaZrw4rFFqwt9vZSjRvC70FpwP2d9UG4aTaI2wh3vfrBKK+tjewowGM2Y6c1w==",
      "path": "system.data.sqlclient/4.4.2",
      "hashPath": "system.data.sqlclient.4.4.2.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
      "path": "system.diagnostics.diagnosticsource/4.3.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
      "path": "system.diagnostics.tools/4.3.0",
      "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
      "path": "system.diagnostics.tracing/4.3.0",
      "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "System.Dynamic.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
      "path": "system.dynamic.runtime/4.3.0",
      "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
      "path": "system.globalization.calendars/4.3.0",
      "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
      "path": "system.globalization.extensions/4.3.0",
      "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
    },
    "System.IdentityModel.Tokens.Jwt/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
      "path": "system.identitymodel.tokens.jwt/5.6.0",
      "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
      "path": "system.io.compression/4.3.0",
      "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression.ZipFile/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
      "path": "system.io.compression.zipfile/4.3.0",
      "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Linq.Expressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
      "path": "system.linq.expressions/4.3.0",
      "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
    },
    "System.Net.Http/4.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
      "path": "system.net.http/4.3.4",
      "hashPath": "system.net.http.4.3.4.nupkg.sha512"
    },
    "System.Net.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
      "path": "system.net.primitives/4.3.0",
      "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
    },
    "System.Net.Sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
      "path": "system.net.sockets/4.3.0",
      "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
    },
    "System.ObjectModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
      "path": "system.objectmodel/4.3.0",
      "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
    },
    "System.Private.DataContractSerialization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
      "path": "system.private.datacontractserialization/4.3.0",
      "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
    },
    "System.Private.Uri/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
      "path": "system.private.uri/4.3.2",
      "hashPath": "system.private.uri.4.3.2.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.Lightweight/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
      "path": "system.reflection.emit.lightweight/4.3.0",
      "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Metadata/1.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
      "path": "system.reflection.metadata/1.5.0",
      "hashPath": "system.reflection.metadata.1.5.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
      "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
      "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Numerics/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Formatters/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
      "path": "system.runtime.serialization.formatters/4.3.0",
      "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Json/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
      "path": "system.runtime.serialization.json/4.3.0",
      "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
      "path": "system.runtime.serialization.primitives/4.3.0",
      "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.AccessControl/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
      "path": "system.security.accesscontrol/4.4.0",
      "hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Algorithms/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
      "path": "system.security.cryptography.algorithms/4.3.0",
      "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
      "path": "system.security.cryptography.cng/4.5.0",
      "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Csp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
      "path": "system.security.cryptography.csp/4.3.0",
      "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
      "path": "system.security.cryptography.encoding/4.3.0",
      "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.OpenSsl/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-is11qLXIHKIvbTipyB1an8FT1ZKavmgf/qJUSIz7ZP830ALRRhPSt5NhplW0/wMk0tNDQWQLluVap6HsQN4HMg==",
      "path": "system.security.cryptography.openssl/4.4.0",
      "hashPath": "system.security.cryptography.openssl.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
      "path": "system.security.cryptography.protecteddata/4.4.0",
      "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.X509Certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-h3ah5DRH1dD0WbtLVZrLAUkkMYL9N3gQ/qrJuc65GzyR4hsaPD0YjEwmpu5+2tNT8BQktW5xw7KlgoY83jqd7w==",
      "path": "system.security.principal.windows/4.4.1",
      "hashPath": "system.security.principal.windows.4.4.1.nupkg.sha512"
    },
    "System.Security.SecureString/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
      "path": "system.security.securestring/4.3.0",
      "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
      "path": "system.text.encoding.codepages/4.4.0",
      "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "System.Xml.ReaderWriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "System.Xml.XDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlSerializer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
      "path": "system.xml.xmlserializer/4.3.0",
      "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
      "path": "system.xml.xpath/4.3.0",
      "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
      "path": "system.xml.xpath.xmldocument/4.3.0",
      "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
    }
  }
}
tools\TfsCmdlets\Lib\Core\TfsCmdlets.dll
md5: 8D7F3443DAEA8A85D09702DD0C700A2C | sha1: 9F9CCA8980694B9D270022C6A2BCDD3346DC7702 | sha256: FE16CC78F2E5687D91FBCC270F5DA590BA5570E0363BD9889667FEFED661DF3D | sha512: 289730F29226649AEC07CC873B790F5A616CE17CF3B2A4DA594153CE7B6C806738506F44708C1BBE5A48623E2BAB505D1F2B0148A3D22C8AE701EFD67C66AB2F
tools\TfsCmdlets\Lib\Core\TfsCmdlets.pdb
 
tools\TfsCmdlets\Lib\Core\TfsCmdlets.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>TfsCmdlets</name>
    </assembly>
    <members>
        <member name="T:TfsCmdlets.AssemblyResolver">
            <summary>
            This class is used to resolve TfsCmdlets assemblies in runtime.
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
            <summary>
            Mantains a list of all assemblies stored in the /Lib folder of this module to support 
            on-demand assembly resolving and loading
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.Register">
            <summary>
            Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and 
            loads the list of private assemblies to the Assemblies dictionary
            </summary>
        </member>
        <member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
            <summary>
            Represents a private assembly
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
            <summary>
            Creates an instance from an assembly name and its file path
            </summary>
            <param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
            <param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
            <summary>
             Assembly name
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
            <summary>
            Full path to assembly file
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
            <summary>
            Indicates whether this assembly has already been loaded by the Assembly Resolver
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
            <summary>
            The actual assembly represented by this instance. If the assembly wasn't previously
            loaded, it will be read from disk and returned to the caller
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection">
            <summary>
            Detaches a team project collection database from a Team Foundation Server installation.
            </summary>
            <remarks>
            Before you move a collection, you must first detach it from the deployment of TFS on which 
            it is running. It's very important that you do not skip this step. When you detach a collection, 
            all jobs and services are stopped, and then the collection database is stopped. In addition, 
            the detach process copies over the collection-specific data from the configuration database 
            and saves it as part of the team project collection database. This configuration data is what 
            allows the collection database to be attached to a different deployment of TFS. If that data is 
            not present, you cannot attach the collection to any deployment of TFS except the one from which 
            it originated. If detachment succeeds, this cmdlets returns the original database connection string. 
            It is required to re-attach the collection to TFS.
            </remarks>
            <example>
              <code>Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</code>
              <para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</para>
            </example>
            <related>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</related>
            <notes>
            Detaching a collection prevents users from accessing any projects in that collection.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Collection">
            <summary>
            Specifies the collection to detach.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Reason">
            <summary>
            Speficies a Servicing Message (optional), to provide a message for users who might try 
            to connect to projects in this collection while it is offline.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the detach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection">
            <summary>
            Attaches a team project collection database to a Team Foundation Server installation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Collection">
            <summary>
            Specifies the name of the collection to attach. It can be different from the original 
            name - in that case, it is attached under a new name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Description">
            <summary>
            Specifies a new description for the collection. When omitted, it retains the original description.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseServer">
            <summary>
            Specifies the name of the SQL Server instance where the database is stored.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseName">
            <summary>
            Specifies the name of the collection database.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.ConnectionString">
            <summary>
            Specifies the connection string of the collection database.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.InitialState">
            <summary>
            Specifies whether the collection will be started ou stopped after being attached. 
            When omitted, the collection is automatically started and goes online after being attached.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Clone">
            <summary>
            Changes the internal collection IDs upon attaching to that a "clone" of the original 
            collection can be attached to the same server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.PollingInterval">
            <summary>
            Specifies the polling interval (in seconds) to get an updated status from the server. 
            When omitted, defaults to 5 seconds.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the attach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection">
            <summary>
            Starts an offline team project collection and make it online.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection">
            <summary>
            Stops a team project collection and make it offline.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection">
            <summary>
            Gets one or more Team Project Collection addresses registered in the current computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
            <summary>
            Returns the team project collection specified in the last call to 
            Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.ComputerName">
            <summary>
            Specifies the name of a Team Foundation Server application tier from which to 
            retrieve the connection string.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
            <summary>
              Gets the installation path of a given Team Foundation Server component.
            </summary>
            <remarks>
             Many times a Team Foundation Server admin needs to retrieve the location where 
             TFS is actually installed. That can be useful, for instance, to locate tools like 
             TfsSecurity or TfsServiceControl. That information is recorded at setup time, 
             in a well-known location in the Windows Registry of the server where TFS is installed.
            </remarks>
            <example>
              <code>Get-TfsInstallationPath -Version 2017</code>
              <para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
            </example>
            <example>
              <code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
              <para>Gets the location where the SharePoint Extensions have been installed in the remote 
                    server SPTFSSRV, prompting for admin credentials to be used for establishing a 
                    PS Remoting session to the server</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
            <summary>
            Indicates the TFS component whose installation path is being searched for. 
            For the main TFS installation directory, use BaseInstallation. When omitted, 
            defaults to BaseInstallation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer and also 
            the permission to access the Windows Registry.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
            <summary>
              Gets the version information about Team Foundation / Azure DevOps servers and 
              Azure DevOps Services organizations.
            </summary>
            <remarks>
            The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. 
            When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
            <summary>
              Gets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. 
            
              Registry entries can be scoped to the server, to a collection or to a specific user. 
            </remarks>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
            <summary>
              Sets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the 
              value specified in the command.
            </remarks>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
            <summary>
            Specifies the new value of the Registry key. To remove an existing value, 
            set it to $null
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.StartIdentitySync">
            <summary>
              Triggers an Identity Sync server job.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Wait">
            <summary>
            Waits until the job finishes running. If omitted, the identity sync job will run asynchronously.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.CmdletBase">
            <summary>
            Abstract class from which all TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.Provider">
            <summary>
            The service provider injected in this cmdlet instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.CommandName">
            <summary>
            Returns the PowerShell command name of this cmdlet
            </summary>
            <value>The name of the this, as defined by the [Cmdlet] attribute. If the attribute is missing, returns the class name.</value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.BeginProcessing">
            <summary>
            Performs initialization of the command execution, logs the supplied parameters and check whether the current 
            this is tagged as "Windows-only". If so, throws an exception
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ProcessRecord">
            <summary>
            Performs execution of the command. 
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="variables">Variables passed to the script</param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript``1(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <typeparam name="T">The expected type of the objects outputted by the script</typeparam>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetServer(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "server" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsConfigurationServer (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollection(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "collection" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsTeamProjectCollection (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionAndProject(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connection and a TeamProject objects, built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object) and an instance of TeamProject</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionProjectAndTeam(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connectionn, a TeamProject and a WebApiTeam objects, built from the arguments 
            currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object), an instance of TeamProject and an instance of WebApiTeam</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetClient``1(TfsCmdlets.ClientScope,TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns an API Client from the underlying connection
            </summary>
            <param name="scope">The scope from which to retrieve the client. Supported scopes are Server, Collection</param>
            <param name="overridingParameters">If specified, the values in this parameter will override the values originally supplied to the cmdlet</param>
            <typeparam name="T">The type of the API client</typeparam>
            <returns>An instance of the requested API client</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetService``1">
            <summary>
            Returns an instance of the specified service
            </summary>
            <typeparam name="T">The type of the requested service.static Must derive from IService</typeparam>
            <returns>An instance of T, as provided by the current service provider</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItem``1(System.Object)">
            <summary>
            Gets one item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.TestItem``1(System.Object)">
            <summary>
            Checks if specified item exists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItems``1(System.Object)">
            <summary>
            Gets one or more items of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.NewItem``1(System.Object)">
            <summary>
            Creates a new item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RemoveItem``1(System.Object)">
            <summary>
            Removes an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RenameItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.SetItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCurrentDirectory">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ResolvePath(System.String,System.String)">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.WriteItems``1(System.Object)">
            <summary>
            Outputs items to PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.Log(System.String,System.String,System.Boolean)">
            <summary>
            Log a message
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.LogParameters">
            <summary>
            Log the parameters passed to the cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckWindowsOnly">
            <summary>
            Check whether the currently executing environment is Windows PowerShell
            </summary>
            <throws>For cmdlets which are "Windows-only", a call to this method will throw a 
                NotSupportedException when running on PowerShell Core.</throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckRequiredVersion">
            <summary>
            Check whether the currently connected server is of a minimum version
            </summary>
            <throws>
            For cmdlets which require a certain version of TFS, a call to 
            this method will throw a NotSupportedException when connected to 
            an older server.
            </throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.Boolean@,System.Boolean@,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.DoProcessRecord">
            <summary>
            Performs execution of the command. Must be overriden in derived classes.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer">
            <summary>
              Gets information about a configuration server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Current">
            <summary>
            Returns the configuration server specified in the last call to Connect-TfsConfigurationServer 
            (i.e. the "current" configuration server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer">
            <summary>
            Gets one or more Team Foundation Server addresses registered in the current computer.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.Server">
            <summary>
            Specifies the name of a registered server. Wildcards are supported. 
            When omitted, all registered servers are returned. 
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer">
            <summary>
             Connects to a configuration server.
            </summary>
            <remarks>
             A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, 
             it is represented by the Tfs_Configuration database. Operations that should be performed on a server level 
             (such as setting server-level permissions) require a connection to a TFS configuration server. 
             Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. 
             NOTE: Currently it is only supported in Windows PowerShell.
            </remarks>
            <example>
              <code>Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</code>
              <para>Connects to the TFS server specified by the URL in the Server argument</para>
            </example>
            <example>
              <code>Connect-TfsConfigurationServer -Server vsalm</code>
              <para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</para>
            </example>
            <para type="input">Microsoft.TeamFoundation.Client.TfsConfigurationServer</para>
            <para type="input">System.String</para>
            <para type="input">System.Uri</para>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Server">
            <summary>
              Specifies either a URL/name of the Team Foundation Server to connect to, or a previously 
              initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. 
              To connect to a Team Foundation Server instance by using its name, it must have been 
              previously registered.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Team">
            <summary>
              Specifies the name of the Team, its ID (a GUID), or a 
              Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, 
              see the Get-TfsTeam cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Project">
            <summary>
            Specifies the name of the Team Project, its ID (a GUID), or a 
            Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection">
            <summary>
            Connects to a TFS team project collection or Azure DevOps organization. 
            </summary>
            <remarks>
            The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or 
            Azure DevOps organization.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsTeamProjectCollection.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsTeamProjectCollection as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsTeamProjectCollection by default.
            </notes>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Collection">
            <summary>
             Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organizations by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer">
            <summary>
            Disconnects from the currently connected configuration server.
            </summary>
            <remarks>
            The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its 
            counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" 
            as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, 
            unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeam">
            <summary>
            Disconnects from the currently connected team.
            </summary>
            <remarks>
            The Disconnect-TfsTeam cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" 
            as provided by "Get-TfsTeam -Current" will no longer work after a call to 
            this cmdlet, unless their -Team argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject">
            <summary>
            Disconnects from the currently connected team project.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" 
            as provided by "Get-TfsTeamProject -Current" will no longer work after a call to 
            this cmdlet, unless their -Project argument is provided or a new call to 
            Connect-TfsTeamProject is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection">
            <summary>
            Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" 
            as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.NewCredential">
            <summary>
            Provides credentials to use when you connect to a Team Foundation Server 
            or Azure DevOps organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.NewCredential.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
            <summary>
            Gets information from one or more branches in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            When omitted, all branches are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
            <summary>
            Returns the default branch in the given repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.DisableGitRepository">
            <summary>
            Disables one or more Git repositories.
            </summary>
            <remarks>
            Disables access to the repository. When a repository is disabled it cannot be 
            accessed (including clones, pulls, pushes, builds, pull requests etc) 
            but remains discoverable, with a warning message stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.DisableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.EnableGitRepository">
            <summary>
            Enables one or more Git repositories.
            </summary>
            <remarks>
            This cmdlets re-enables access to a repository. When a repository is 
            disabled it cannot be accessed (including clones, pulls, pushes, builds, 
            pull requests etc) but remains discoverable, with a warning message 
            stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.EnableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            When omitted, all Git repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.GitRepositoryDataService.DoNewItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
            <summary>
            Creates a new Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
            <summary>
            Specifies the name of the new repository
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
            <summary>
            Gets the Git branch policy configuration of the given Git branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
            <summary>
            Specifies the policy type of the branch policy to return. Wildcards are supported. 
            When omitted, all branch policies defined for the given branch are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
            <summary>
            Specifies the name of the branch to query for branch policies. When omitted, 
            the default branch in the given repository is queried.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
            <summary>
            Gets one or more Git branch policies supported by the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
            <summary>
            Specifies the display name or ID of the policy type. Wildcards are supported.
            When omitted, all policy types supported by the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
            <summary>
            Specifies the repository to be deleted. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
            <summary>
            Renames a Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
            <summary>
            Specifies the repository to be renamed. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList">
            <summary>
            Exports the contents of one or more Global Lists to XML.
            </summary>
            <remarks>
            This cmdlets generates an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist"
            </remarks>
            <example>
              <code>Export-TfsGlobalList | Out-File "gl.xml"</code>
              <para>Exports all global lists in the current project collection to a file called gl.xml.</para>
            </example>
            <example>
              <code>Export-TfsGlobalList -Name "Builds - *"</code>
              <para>Exports all build-related global lists (with names starting with "Build - ") and
                return the resulting XML document.</para>
            </example>
            <notes>
            To export or list global lists, you must be a member of the Project Collection Valid Users 
            group or have your View collection-level information permission set to Allow.
            </notes>
            <input>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</input>
            <input>System.String</input>
            <input>System.Uri</input>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be exported. Wildcards are supported. 
            When omitted, it defaults to all global lists in the supplied team project collection. 
            When using wilcards, a single XML document will be producer containing all matching 
            global lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList">
            <summary>
            Gets the contents of one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list. Wildcards are supported. 
            When omitted, defaults to all global lists in the supplied team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList">
            <summary>
            Imports one or more Global Lists from an XML document
            </summary>
            <remarks>
            This cmdletsimports an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist"
            </remarks>
            <example>
              <code>Get-Content gl.xml | Import-GlobalList</code>
              <para>Imports the contents of an XML document called gl.xml to the current project collection</para>
            </example>
            <notes>
            To import global lists, you must be a member of the Project Collection Administrators security group.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.InputObject">
            <summary>
            XML document object containing one or more global list definitions.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite a global list that already exists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList">
            <summary>
            Creates a new Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.GlobalList">
            <summary>
            Specifies the name of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Items">
            <summary>
            Specifies the contents (items) of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite an existing global list.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList">
            <summary>
            Deletes one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.GlobalList">
            <summary>
            Specifies the name of global list to be deleted. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList">
            <summary>
            Changes either the name or the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.GlobalList">
            <summary>
            Specifies the name of the global lsit to be renamed.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList">
            <summary>
            Changes the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be changed.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Add">
            <summary>
            Specifies a list of items to be added to the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Remove">
            <summary>
            Specifies a list of items to be removed from the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Force">
            <summary>
            Creates a new list if the specified one does not exist.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
            <summary>
            Gets one or more identities that represents either users or groups in Azure DevOps.
            This cmdlet resolves legacy identity information for use with older APIs such as the Security APIs.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Identity">
            <summary>
            Specifies the user or group to be retrieved. Supported values are: 
            User/group name, email, or ID
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.QueryMembership">
            <summary>
            Specifies how group membership information should be processed  
            when the returned identity is a group. "Direct" fetches direct members (both users 
            and groups) of the group. "Expanded" expands contained groups recursively and returns 
            their contained users. "None" is the fastest option as it fetches no membership 
            information. When omitted, defaults to Direct.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Current">
            <summary>
            Returns an identity representing the user currently logged in to
            the Azure DevOps / TFS instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Collection">
            <summary>
            HELP_PARAM_Collection
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.GetIdentity.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
            <summary>
            Adds group members to an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
            <summary>
            Specifies the group to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
            <summary>
            Gets the members of a Azure DevOps group
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
            <summary>
            Specifies the group fom which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given group. Wildcards are supported.
            When omitted, all group members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
            <summary>
            Removes a member from an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
            <summary>
            Specifies the group from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.NewCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.NewCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all build/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder">
            <summary>
            Creates a new build/pipeline definition folder
            </summary>
            <remarks>
            Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of 
            the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
            child folders.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the new pipeline/build folder, including its name, 
            separated by backslashes (\).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the pipeline/build folder to delete, including its name, 
            separated by backslashes (\). Wildcards are supperted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing build/pipelines definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
            <summary>
            Creates a new release definition folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the path of the release folder to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing release definitions definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild">
            <summary>
            Queues a XAML Build.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
            <summary>
            Exports a XML-based process template definition to disk.
            </summary>
            <remarks>
            This cmdlet offers a functional replacement to the "Export Process Template" feature found 
            in Team Explorer. All files pertaining to the specified process template (work item defininitons, 
            reports, saved queries, process configuration and so on) are downloaded from the given 
            Team Project Collection and saved in a local directory, preserving the directory structure 
            required to later re-import it. This is specially handy to do small changes to a process template 
            or to create a new process template based on an existing one.
            </remarks>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
            </example>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be exported. Wildcards are supported. 
            When omitted, all process templates in the given project collection are exported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
            <summary>
            Path to the target directory where the exported process template (and related files) will be saved. 
            A folder with the process template name will be created under this path. When omitted, templates  
            are exported in the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
            <summary>
            Saves the exported process template with a new name. Useful when exporting a base template 
            which will be used as a basis for a new process template. When omitted, the original name is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
            <summary>
            Saves the exported process template with a new description. Useful when exporting a base template 
            which will be used as a basis for a new process template.  When omitted, the original description is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be returned. Wildcards are supported. 
            When omitted, all process templates in the given project collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Default">
            <summary>
            Returns the default process template in the given orgnization / project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
            <summary>
            Imports a process template definition from disk.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
            <summary>
            Specifies the folder containing the process template to be imported. This folder must contain 
            the file ProcessTemplate.xml
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
            <summary>
            Specifies the state of the template after it is imported. When set to Invisible, the process template
            will not be listed in the server UI.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
            <summary>
            Creates a new inherited process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process to create.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
            <summary>
            Specifies the description of the new process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
            <summary>
            Specifies the reference name of the new process. When omitted, a random name 
            will be automatically generated and assigned by the server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
            <summary>
            Specifies the name of the parent process from which the new process will inherit.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing process.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RemoveCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RenameCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RenameCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
            <summary>
            Gets an Azure DevOps HTTP Client object instance.
            </summary>
            <remarks>
            Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, 
            Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to 
            many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient 
            that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication 
            information supplied by their parent connection object and can be used as a more convenient mechanism 
            to issue API calls.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
            <summary>
            Specifies the full type name (optionally including its assembly name) of the HTTP Client 
            class to return.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.GetRestClient.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
            <summary>
            Invoke an Azure DevOps REST API.
            </summary>
            <remarks>
            Invoke-TfsRestApi can automatically parse an example URL from 
            https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens 
            (such as {organization}, {project} and {team}) as long as collection / project / team 
            information are available via either the their respective arguments in this command or the 
            corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted 
            from the supplied example, when available.
            </remarks>
            <example>
              <code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
              <para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
              <para>Calls the API described by an example extracted from the docs.microsoft.com web site. 
                HTTP method, host name and API version are all set based on the supplied values; 
                Tokens {organization}, {project} and {team} are properly replaced with the corresponding 
                values provided by the current connection context (via previous calls to 
                Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
            <summary>
            Specifies the path of the REST API to call. Tipically it is the portion of the URL after 
            the name of the collection/organization, i.e. in the URL 
            https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is 
            "/_apis/projects".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
            <summary>
            Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
            <summary>
            Specifies the request body to send to the API endpoint. Tipically contains the JSON payload 
            required by the API.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
            <summary>
             Specifies the request body content type to send to the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
            <summary>
             Specifies the response body content type returned by the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
            <summary>
            Specifies a hashtable with additional HTTP headers to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
            <summary>
            Specifies a hashtable with additional query parameters to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
            <summary>
            Specifies the desired API version. When omitted, defaults to "4.1".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com", 
            e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.NoAutoUnwrap">
            <summary>
            Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
            <summary>
            Returns the API response as an unparsed string. If omitted, JSON responses will be 
            parsed, converted and returned as objects (via ConvertFrom-Json).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
            <summary>
            Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. 
            The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
            <summary>
             HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
            <summary>
             HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
            <summary>
            Gets one or more service hook consumers.
            </summary>
            <remarks>
            Service hook consumers are the services that can consume (receive) notifications triggered by 
            Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, 
            Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to return. Wildcards are supported. 
            When omitted, all service hook consumers registered in the given project collection/organization 
            are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
            <summary>
            Gets the notification history for a given service hook subscription
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
            <summary>
            Specifies the subscription to get the notification history from.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
            <summary>
            Specifies the beginning of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
            <summary>
            Specifies the end of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
            <summary>
            Specifies the notification status to filter on.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
            <summary>
            Gets one or more service hook publishers.
            </summary>
            <remarks>
            Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by 
            event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to return. Wildcards are supported. 
            When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / 
            TFS collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
            <summary>
            Gets one or more service hook subscriptions
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
            <summary>
            Specifies the name ("action description") of the subscription. Wildcards are supported. 
            When omitted, returns all service hook subscriptions in the given 
            team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to filter subscriptions by.
            When omitted, returns all subscriptions regardless of their publishers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their consumers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
            <summary>
            Specifies the event type to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their event types.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.SetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.SetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
            <summary>
            Activates the Azure DevOps Shell
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
            <summary>
            Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
            <summary>
            Do not clear the host screen when activating the Azure DevOps Shell. When set, the
            prompt is enabled without clearing the screen.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
            <summary>
            Do not show the version banner when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.EnterShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.ExitShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
            <summary>
            Gets information about one or more team projects.
            </summary>
            <remarks>
            The Get-TfsTeamProject cmdlets gets one or more Team Project objects 
            (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied 
            Team Project Collection.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
            <summary>
            Specifies the name of a Team Project. Wildcards are supported. 
            When omitted, all team projects in the supplied collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
            <summary>
            Lists deleted team projects present in the "recycle bin"
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
            <summary>
            Returns the team project specified in the last call to Connect-TfsTeamProject 
            (i.e. the "current" team project)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
            <summary>
            Creates a new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
            <summary>
             Specifies the name of the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
            <summary>
            Specifies a description for the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
            <summary>
            Specifies the source control type to be provisioned initially with the team project. 
            Supported types are "Git" and "Tfvc".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
            <summary>
            Specifies the process template on which the new team project is based. 
            Supported values are the process name or an instance of the
            Microsoft.TeamFoundation.Core.WebApi.Process class.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
            <summary>
            Deletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
            <summary>
            Deletes the team project permanently. When omitted, the team project is moved to a 
            "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
            <summary>
            Renames a team project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
            <summary>
            Forces the renaming of the team project. When omitted, the command prompts for 
            confirmation prior to renaming the team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject">
            <summary>
            Changes the details of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Project">
            <summary>
            Specifies the name of the Team Project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.AvatarImage">
            <summary>
            Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). 
            To remove a previously set image, pass $null to this argument.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
            <summary>
            Undeletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
            <summary>
            Specifies the name of the Team Project to undelete.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
            <summary>
            Gets information about one or more backlog levels of a given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
            <summary>
            Specifies one or more backlog level configurations to be returned. Valid values 
            are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the 
            backlog level to return. Wilcards are supported. When omitted, returns all backlogs 
            levels of the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
            <summary>
            Gets one or more team boards.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns all boards in 
            the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
            <summary>
            Gets one or more team board card rules.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
            <summary>
            Specifies the rule name. Wildcards are supported. 
            When omitted, returns all card rules in the given board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
            <summary>
            Specifies the kind of rule to return. When omitted, returns 
            both rule types (card color and tag color).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
            <summary>
            Set the card rule settings of the specified backlog board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns card rules 
            for all boards in the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
            <summary>
            Gets information about one or more teams.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
            <summary>
            Specifies the team to return. Accepted values are its name, its ID, or a
            Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
            When omitted, all teams in the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.QueryMembership">
            <summary>
            Get team members (fills the Members property with a list of
            Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
            When omitted, only basic team information (such as name, description and ID) are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
            <summary>
            Gets the team's backlog settings (fills the Settings property with a
            Microsoft.TeamFoundation.Work.WebApi.TeamSetting object)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
            <summary>
            Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
            <summary>
            Returns the default team in the given team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.GetTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRemoveItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRenameItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
            <summary>
            Creates a new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
            <summary>
            Specifies the name of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board. When omitted,
            an area path may still be associated to this team depending on whether NoAutomaticAreaPath
            is set
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
            <summary>
            Do not associate an area path automatically to the new team. When omitted, an area path 
            is created (if needed) and then is set as the default area path / team field
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
            <summary>
            Do not associate an iteration path automatically to the new team. When omitted, 
            an iteration path is created (if needed) and then is set as the default 
            backlog iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
            <summary>
            Specifies a description of the new team.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
            <summary>
            Deletes a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
            <summary>
            Renames a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
            <summary>
            Changes the details of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
            <summary>
            Sets the specified team as the default team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
            <summary>
            Specifies a new description
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
            <summary>
            Specifies the backlog area paths that are associated with this team. Provide a list 
            of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all
            child area path will be included recursively. Otherwise, only the area itself (without 
            its children) will be included.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days. When omitted, defaults to Monday thru Friday
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
            <summary>
            Specifies how bugs should behave when added to a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
            <summary>
            Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
            <summary>
            Adds a new administrator to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
            <summary>
            Specifies the administrator to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
            <summary>
            Gets the administrators of a team.
            </summary>    
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
            <summary>
            Specifies the administrator to get from the given team. Wildcards are supported.
            When omitted, all administrators are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
            <summary>
            Removes an administrator from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
            <summary>
            Specifies the administrator to remove from the team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.TeamAdmin">
            <summary>
            Represents a Team Adminstrator
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
            <summary>
            Adds new members to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
            <summary>
            Specifies the team to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
            <summary>
            Gets the members of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
            <summary>
            Specifies the team from which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given team. Wildcards are supported.
            When omitted, all team members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
            <summary>
            Removes a member from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
            <summary>
            Specifies the team from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
            <summary>
            Clone a test plan and, optionally, its test suites and test cases.
            </summary>
            <remarks>
              <para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
              <para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
              <para>  * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
              <para>  * Shared steps referenced by cloned test cases;</para>
              <para>  * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
              <para>  * Action Recordings linked from a cloned test case;</para>
              <para>  * Links and Attachments;</para>
              <para>  * Test configuration.</para>
              <para>The items below are only copied when using -CloneRequirements:</para>
              <para>  * Requirements-based suites;</para>
              <para>  * Requirements work items (product backlog items or user stories);</para>
              <para>  * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
            </remarks>
            <example>
            <code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
            <summary>
            Specifies the name of the test plan to clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
            <summary>
            Specifies the name of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
            <summary>
            Specifies the name of the team project where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same team project of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
            <summary>
            Specifies the area path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same area path of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
            <summary>
            Specifies the iteration path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same iteration path of 
            the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
            <summary>
            Clones all the referenced test cases. When omitted, only the test plan is 
            cloned; the original test cases are only referenced in the new plan, not duplicated.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
            <summary>
            Clone all test suites recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
            <summary>
            Copies ancestor hierarchy.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
            <summary>
            Clones requirements referenced by the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
            <summary>
            Specifies the name of the workitem type of the clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
            <summary>
            Clones only the specified suites.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
            <summary>
            Specifies the comment of the Related link that is created ato point 
            to the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
            <summary>
            Gets the contents of one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
            <summary>
            Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
            <summary>
            Gets only the plans owned by the specified user.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
            <summary>
            Get only basic properties of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
            <summary>
            Get only the active plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
            <summary>
            Creates a new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
            <summary>
            Specifies the start date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
            <summary>
            Specifies the end date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
            <summary>
            Deletes one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
            <summary>
            Specifies one or more test plans to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
            <summary>
            Forces the deletion of test plans with test suites and/or test cases. 
            When omitted, only empty test plans can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
            <summary>
            Renames a test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
            <summary>
            Gets information from one or more Wiki repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
            <summary>
            Specifies the name or ID of a Wiki repository. Wildcards are supported. 
            When omitted, all Wiki repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
            <summary>
            Returns only provisioned ("project") Wikis. When omitted, returns all Wikis 
            (both Project wikis and Code wikis).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
            <summary>
            Creates a new Wiki repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
            <summary>
            Specifies the name of the new Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
            <summary>
            Specifies the name or ID of the Git repository to publish as a Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
            <summary>
            Creates a provisioned ("project") Wiki in the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
            <summary>
            Specifies the Wiki to be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
            <summary>
            Deletes the provisioned ("project") Wiki of the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsArea</code>
              <para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsArea '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode">
            <summary>
            Base implementation for Get-Area and Get-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\\**\\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode">
            <summary>
            Base implementation for Move-Area and Move-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
            <summary>
            Creates a new Work Item Area in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
            <summary>
            Specifies the path of the new Area. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the area name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
            <summary>
            Creates a new Iteration in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
            <summary>
            Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the iteration name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StartDate">
            <summary>
            Specifies the start date of the iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode">
            <summary>
            Base implementation for New-Area and New-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
            <summary>
            Deletes one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
            <summary>
            Deletes one or more Iterations from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode">
            <summary>
            Base implementation for Remove-Area and Remove-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode">
            <summary>
            Renames a Work Area.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode">
            <summary>
            Renames a Iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode">
            <summary>
            Base implementation for Rename-Area and Rename-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
            <summary>
            Modifies the dates of an iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
            <summary>
            Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode">
            <summary>
            Base implementation for Set-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
            <summary>
            Determines whether the specified Work Area exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
            <summary>
            Determines whether the specified Iteration exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode">
            <summary>
            Base implementation for Test-Area and Test-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem">
            <summary>
            Creates a copy of a work item, optionally changing its type.
            </summary>
            <remarks>
            Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) 
            that is of the specified work item type.
            <br/>
            By default, the copy retains the same type of the original work item, 
            unless the Type argument is specified
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.NewType">
            <summary>
            Specifies the type of the new work item. When omitted, the type of the original 
            work item is preserved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeAttachments">
            <summary>
            Creates a duplicate of all attachments present in the source work item and 
            adds them to the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeLinks">
            <summary>
            Creates a copy of all links present in the source work item and adds them to the new work item.
            Only the links are copied; linked artifacts themselves are not copied. 
            In other words, both the original and the copy work items point to the same linked
            artifacts.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DestinationProject">
            <summary>
            Specifies the team project where the work item will be copied into. When omitted, 
            the copy will be created in the same team project of the source work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Project">
            <summary>
            Specifies the source team project from where the work item will be copied. 
            When omitted, it defaults to the team project of the piped work item (if any),
            or to the connection set by Connect-TfsTeamProject.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Passthru">
            <summary>
            Returns the results of the command. It takes one of the following values: 
            Original (returns the original work item), Copy (returns the newly created work item copy) 
            or None.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
            <summary>
            Specifies the title to look up for in a work item. Wildcards are supported. 
            When a wildcard is used, matches a portion of the title 
            (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field 
            with the operator "=", unless -Ever is also specified. In that case, uses the operator 
            "was ever".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
            <summary>
            Specifies the description to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
            <summary>
            Specifies the area path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
            <summary>
            Specifies the work item type to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
            <summary>
            Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
            <summary>
            Specifies the board column to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
            <summary>
            Specifies the name or email of the user that created the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
            <summary>
             Specifies the date when the work item was created.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
            <summary>
            Specifies the name or email of the user that did the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
            <summary>
            Specifies the date of the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
            <summary>
            Specifies the date of the most recent change to the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
            <summary>
            Specifies the tags to look up for in a work item. When multiple tags are supplied, 
            they are combined with an OR operator - in other works, returns  work items that 
            contain ANY ofthe supplied tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
            <summary>
            Switches the query to historical query mode, by changing operators to 
            "WAS EVER" where possible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
            <summary>
            Specifies a work item revision number to retrieve. When omitted, returns
            the latest revision of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
            <summary>
            Returns the field values as they were defined in the work item revision that
            was the latest revision by the date specified.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Query">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
            <summary>
            Specifies which fields should be retrieved. When omitted, defaults to a set of
            standard fields that include Id, Title, Description, some state-related fields and more.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
            <summary>
            Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
            <summary>
            Fetches work items in "time-precision mode": search criteria in WIQL queries 
            take into account time information as well, not only dates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
            <summary>
            Opens the specified work item in the default web browser.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
            <summary>
            Gets deleted work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IncludeLinks">
            <summary>
            Gets information about all links and attachments in the work item. When omitted, only fields are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment">
            <summary>
            Downloads one or more attachments from work items
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Attachment">
            <summary>
            Specifies the attachment to download. Wildcards are supported. 
            When omitted, all attachments in the specified work item are downloaded.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Destination">
            <summary>
            Specifies the directory to save the attachment to. When omitted, defaults to the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
            <summary>
            Gets the links in a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.LinkType">
            <summary>
            Returns only the specified link types. When omitted, returns all link types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.IncludeAttachments">
            <summary>
            Includes attachment information alongside links. When omitted, only links are retrieved.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
            <summary>
            Moves a work item to a different team project in the same collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
            <summary>
            Specifies the team project where the work item will be moved to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
            <summary>
            Specifies the area path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root area path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
            <summary>
            Specifies the iteration path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root iteration path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
            <summary>
            Specifies a new state for the work item in the destination project. 
            When omitted, it retains the current state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
            <summary>
            Specifies a comment to be added to the history
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
            <summary>
            Creates a new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
            <summary>
            Specifies the type of the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
            <summary>
            Exports a saved work item query to XML.
            </summary>
            <remarks>
            Work item queries can be exported to XML files (.WIQ extension) in order to be shared 
            and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use 
            this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to export. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
            <summary>
            Specifies the path to the folder where exported queries are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
            <summary>
            Flattens the query folder structure. When omitted, the original query 
            folder structure is recreated in the destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for Get-WorkItemQuery and Get-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for New-WorkItemQuery and New-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Force">
            <summary>
            Allow the cmdlet to overwrite an existing item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
            <summary>
            Deletes a work item from a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
            <summary>
            Specifies the work item to remove.
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
            <summary>
            Permanently deletes the work item, without sending it to the recycle bin.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
            <related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
            <summary>
            Specifies the text to search for. Supports the Quick Filter syntax described in 
            https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
            <summary>
            Specifies the maximum quantity of results. Supports between 1 and 1000 results. 
            When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
            <summary>
            Sets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
             <summary>
             Specifies the reason (field 'System.Reason') of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
             <summary>
             Specifies the Value Area of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
             <summary>
             Specifies the board column of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to returns. Wildcards are supported. 
            When omitted, returns all existing tags in the given project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
            <summary>
            Includes tags not associated to any work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
            <summary>
            Creates a new work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
            <summary>
            Specifies the name of the new tag.
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
            <summary>
            Deletes one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
            <summary>
            Renames a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
            <summary>
            Specifies the name of the work item tag to rename.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
            <summary>
            Specifies one or more work item types to export. Wildcards are supported. 
            When omitted, all work item types in the given project are exported
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
            <summary>
            Exports the definitions of referenced global lists. 
            When omitted, global list definitions are not included in the exported XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
            <summary>
            Specifies the path to the folder where exported types are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
            <summary>
            Gets one or more Work Item Type definitions from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
            <summary>
            Specifies one or more work item type names to return. Wildcards are supported. 
            When omitted, returns all work item types in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
            <summary>
            Speficies a work item whose corresponding type should be returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
            <summary>
            Imports a work item type definition into a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ParameterDictionary">
            <summary>
            Represents a collection of cmdlet arguments
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object,System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection, optionally overriding its values.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor">
            <summary>
            Creates an empty dictionary
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object,System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object and merging it
            with another. 
            </summary>
            <see cref="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})"/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.Get``1(System.String,``0)">
            <summary>
            Returns the value of a property. When the property is missing, returns an
            optionally supplied default value.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Overrides this instance with another one. Existing properties are overwritten.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.MergeWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Merges this instance with another one. Existing properties are skipped.
            </summary>
        </member>
        <member name="T:TfsCmdlets.TfsComponent">
            <summary>
            Indicates a TFS component
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.BaseInstallation">
            <summary>
            The root folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.ApplicationTier">
            <summary>
            The "ApplicationTier" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.SharePointExtensions">
            <summary>
            The "SharePointExtensions" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.TeamBuild">
            <summary>
            The "TeamBuild" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.Tools">
            <summary>
            The "Tools" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.VersionControlProxy">
            <summary>
            The "VersionControlProxy" folder of a TFS installation
            </summary>
        </member>
        <member name="T:TfsCmdlets.ClientScope">
            <summary>
            Client scope for Invoke-RestApi
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Server">
            <summary>
            Server-level scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Collection">
            <summary>
            Collection-level scope
            </summary>
        </member>
        <member name="T:TfsCmdlets.CardRuleType">
            <summary>
            Board card rule
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.CardColor">
            <summary>
            Card color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.TagColor">
            <summary>
            Tag color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.All">
            <summary>
            All card rules (card and tag color)
            </summary>
        </member>
        <member name="T:TfsCmdlets.RegistryScope">
            <summary>
            TFS Registry scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.User">
            <summary>
            User
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Collection">
            <summary>
            Collection
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Server">
            <summary>
            Server
            </summary>
        </member>
        <member name="T:TfsCmdlets.WorkItemLinkType">
            <summary>
            Work Item Link Type
            </summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.All">
            <summary>All</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Parent">
            <summary>Parent</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Child">
            <summary>Child</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Related">
            <summary>Related</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Predecessor">
            <summary>Predecessor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Successor">
            <summary>Successor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Duplicate">
            <summary>Duplicate</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.DuplicateOf">
            <summary>Duplicate Of</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Tests">
            <summary>Tests</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.TestedBy">
            <summary>Tested By</summary>
        </member>
        <member name="T:TfsCmdlets.Extensions.DocumentExtensions">
            <summary>
            Linq to XML extension methods
            </summary>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXmlDocument(System.Xml.Linq.XDocument)">
            <summary>
            Converts a LINQ-based XDocument to a "legacy" XmlDocument
            </summary>
            <param name="xDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXDocument(System.Xml.XmlDocument)">
            <summary>
            Converts a "legacy" XmlDocument to a LINQ-based XDocument
            </summary>
            <param name="xmlDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GenericHttpClient">
            <summary>
            Generic HTTP Client, used by the Invoke-TfsRestApi cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.GenericHttpClient.Uri">
            <summary>
            Gets the API URL
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get``1(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API, converted to the model type T</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post``2(System.String,``0,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API parameter (content) object</typeparam>
            <typeparam name="TResult">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="value">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post(System.String,System.Net.Http.HttpContent,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="content">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync``1(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.PostForm``1(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GitExtendedHttpClient">
            <summary>
            Custom HTTP Client to handle extended Git repository management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.Guid,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.String,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdminHttpClient">
            <summary>
            Custom HTTP Client to handle team administrator management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmins">
            <summary>
            Represents a collection of team administrators
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmins.Admins">
            <summary>
            Collection of team administrators
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmin">
            <summary>
            Represents a team administrator
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IdentityType">
            <summary>
            Identity Type
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.FriendlyDisplayName">
            <summary>
            Friendly Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.DisplayName">
            <summary>
            Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.SubHeader">
            <summary>
            Sub-header
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.TeamFoundationId">
            <summary>
            Team Foundation Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.EntityId">
            <summary>
            Entity Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Errors">
            <summary>
            List of Errors
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Warnings">
            <summary>
            List of Warnings
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Domain">
            <summary>
            User Domain
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.AccountName">
            <summary>
            User Account Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IsWindowsUser">
            <summary>
            Is Windows User
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.MailAddress">
            <summary>
            Email Address
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdmin.ToString">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.HttpClient.AddTeamAdminRequestData">
            <summary>
            The request body to submit to the "Add Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.Team">
            <summary>
            TeamId
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.NewUsers">
            <summary>
            List of New Users
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.ExistingUsers">
            <summary>
            List of Existing Users
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.RemoveTeamAdminResult">
            <summary>
            The request body to submit to the "Remove Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.RemoveTeamAdminResult.Success">
            <summary>
            Indicates the success of the operation
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.BacklogLevelConfiguration">
            <summary>
            Encapsulates the backlog level configuration object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Board">
            <summary>
            Encapsulates the team board object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.CardRule">
            <summary>
            Azure Boards card rule
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.CardRule.#ctor(Microsoft.TeamFoundation.Work.WebApi.Rule,Microsoft.TeamFoundation.Work.WebApi.Board)">
            <summary>
            Creates a new instance from the given object
            </summary>
            <param name="original">The original object to copy settings from</param>
            <param name="board">The board to apply this rule to</param>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.Board">
            <summary>
            The board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.BoardName">
            <summary>
            The name of the board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.RuleType">
            <summary>
            The type of the rule
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.ClassificationNode">
            <summary>
            Encapsulates the area/iteration node object
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.ClassificationNode.RelativePath">
            <summary>
            Get a node's relative path
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.ClassificationNode.FixNodePath">
            <summary>
            Fill a missing node path. Older versions of the REST API don't populate the Path property.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Connection">
            <summary>
            Encapsulates the platform-specific connection object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(TfsCmdlets.Models.Connection)~Microsoft.VisualStudio.Services.WebApi.VssConnection">
            <summary>Converts Connection to VssConnection</summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(Microsoft.VisualStudio.Services.WebApi.VssConnection)~TfsCmdlets.Models.Connection">
            <summary>Converts VssConnection to Connection</summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.GetClientFromType(System.Type)">
            <summary>
            Returns a client object given its type.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalList">
            <summary>
            Represents a Team Foundation Server global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(TfsCmdlets.Models.GlobalList)~System.Xml.Linq.XElement">
            <summary>
            Converts a GlobalList to an XElement
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(System.Xml.Linq.XElement)~TfsCmdlets.Models.GlobalList">
            <summary>
            Converts an XElement to a GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor">
            <summary>
            Creates an empty instance of GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new instance from the given name and items
            </summary>
            <param name="name">The name of the global list</param>
            <param name="items">The items (content) of the global list</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.Xml.Linq.XElement)">
            <summary>
            Creates an instance of GlobalList from an XElement containing a &lt;GLOBALLIST&gt; element
            </summary>
            <param name="el">An XML element containing a global list definition</param>
            <returns>An instance of GlobalList</returns>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Name">
            <summary>
            Gets the name of the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Items">
            <summary>
            Gets the contents (items) of the global list.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToString">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToXml">
            <summary>
            Returns this global list in its original XML representation
            </summary>
            <returns>A XElement object representing a &lt;GLOBALLIST&gt; element</returns>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Represents a collection of global lists.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(TfsCmdlets.Models.GlobalListCollection)~System.Xml.Linq.XDocument">
            <summary>
            Converts a collection of global lists to a well-formed &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(System.Xml.Linq.XDocument)~TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Converts a well-formed &lt;gl:GLOBALLISTS&gt; document to a collection of global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor">
            <summary>
            Creates an empty collection
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Collections.Generic.IEnumerable{TfsCmdlets.Models.GlobalList})">
            <summary>
            Creates a collection and adds the given global lists to it
            </summary>
            <param name="items">Collection of global lists to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(TfsCmdlets.Models.GlobalList)">
            <summary>
            Creates a collection and adds the given global list to it
            </summary>
            <param name="item">A single global list to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.String)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="xml">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Xml.Linq.XDocument)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="doc">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToString">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToXml">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document, as a XDocument object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Identity">
            <summary>
            Encapsulates the platform-specific identity object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Team">
            <summary>
            Encapsulates a WebApiTeam object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(TfsCmdlets.Models.Team)~Microsoft.TeamFoundation.Core.WebApi.WebApiTeam">
            <summary>
            Converts to WebApiTeam
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(Microsoft.TeamFoundation.Core.WebApi.WebApiTeam)~TfsCmdlets.Models.Team">
            <summary>
            Converts from WebApiTeam
            </summary>
        </member>
        <member name="T:TfsCmdlets.ModuleInitializer">
            <summary>
            PowerShell module initializer
            </summary>
        </member>
        <member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
            <summary>
            Method called automatically by PowerShell upon module load/start
            </summary>
        </member>
        <member name="T:TfsCmdlets.Util.LazyProperty">
            <summary>
            Supports the creation of lazy-loaded ScriptProperty properties
            </summary>
        </member>
        <member name="M:TfsCmdlets.Util.LazyProperty.Get(System.Management.Automation.PSObject,System.String,System.Management.Automation.ScriptBlock)">
            <summary>
            Gets the value of the specified lazy-loaded property
            </summary>
            <param name="obj">The source PSObject that owns the property</param>
            <param name="property">The property name</param>
            <param name="sb">The scriptblock that is evaluated when the property 
                needs to be loaded. It must return the value to be assigned to the property.</param>
            <returns>The value of the property</returns>
        </member>
        <member name="T:TfsCmdlets.Util.ServerVersion">
            <summary>
            Represents the version of a Team Foundation / Azure DevOps Server installation, and/or 
            the currently deployed version of Azure DevOps in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Version">
            <summary>
            Gets the "four-part" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.LongVersion">
            <summary>
            Gets the "long" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.FriendlyVersion">
            <summary>
            Gets the "friendly" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.IsHosted">
            <summary>
            Indicates whether it's a "hosted" (Azure DevOps Services) deployment or not 
            (TFS/Azure DevOps Server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Update">
            <summary>
            Gets the version number of the Update installed on a server, or number of the sprint 
            currently deployed in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.YearVersion">
            <summary>
            Gets the version of the server as its corresponding year (e.g. 2019 for version 17.*)
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Core\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 4483DFFB5C510A01AD9B3BAF162E3AA5 | sha1: 3C09E4F38DB5F0FB992646ABB66523D7EC0AE3D0 | sha256: 5CEFA5B10941AE0BB88A833D5117A7FEFE70E7FB671A1C8BE39C183670A8B291 | sha512: C9AD45ECDF9E2C73D7B2718C79FF4C3C469CFB20D4698CE1F31211837FC5828296E05F2F56BA0F620F7277CDE304D12F71312D07AB89A89D945F7EBBFA6021FC
tools\TfsCmdlets\Lib\Core\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 406207DF172FACD1D0B3784CC01F966B | sha1: 370E4BDAA0F410E568AD0CE158448DEF65A2CF52 | sha256: A7CAE2CB58246C40E3679D5496D25332C45139BBACB2658954A04EFD33F40D3E | sha512: 111DC027AADDDE1EAB035B3CC49905010C1518441B3F8409688F2B26BB3D8BD7E2E5F6F69784B33E3B821DEEB87158971751E9EE13721B0F566841D4FE1E41B3
tools\TfsCmdlets\Lib\Core\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: D736171881EC422010B470F55A06C6E9 | sha1: 1BAC6C17BE54352F1E57F8FB06029CFDEAA5254D | sha256: 4793D39E08FBD560CF3B5F4998039163FF4B813E0C94EBBD06634E12D4726104 | sha512: FE228E8078903B917E6C591AA48CFB905B71FE148EF4EE3CC30073AFD34C4DECE628F2739F08D3FDE1F7B640D38552EF0C4A40858D375527DCF36365D40E0FBE
tools\TfsCmdlets\Lib\Desktop\Ben.Demystifier.dll
md5: 0AC4514EB31193623CD4E33AAF47097C | sha1: 8179A4C1C2B33464C51CD0A0C658D86210990537 | sha256: B8F5F79BA34DCD8896E77596F9697FCBAE9693CA867A616A26478B83AB24C595 | sha512: 4F42DD9353BD2045412F24A961363EE5829DFA1B4EC9D6EDBECA8C8E3FC19D6461EF7E299A0F6C7BB6A7781863A39094F912204F22FBF9DE93DBB8C747F52664
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 235FAB307EDB4C30FA590609FF51D88F | sha1: C837BEBEC079C82C5828E17ACBE03DDB4B3541C2 | sha256: ECEA9A2908242D2C42B952C96036CF4FE3C7EBFC2DD3CAC191691E4BFCE86405 | sha512: 08907901BB1F890B6A358E3D1A5D2A2AFF66766F4C8A54FE9B0F8659548316E31B1A1F465EC289DC85E2B44ADA10BE7764B902217EA5DBB7876F3EF5E58FFA64
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: E63500DCF5B69714C11DA14614B509C3 | sha1: E8B0F0CA6F6EBFDEAA37CFE6184D5B8B1B776577 | sha256: CF2C0FA920E3BC58240BAEF1516829DD477749976E0480108D7FBF7BB4315AB8 | sha512: 6F818A4BC3CD0828E9CC7F9F878EE0FFDA4AB83C6328D581E9B1FE66288C28C46A9416D250BCBE4F5B1DCD89D72588C99BAB82D82F1F379AB881C7A11D7BE0E3
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Client.resources.dll
md5: 1EE82B7430B7A759E550E2D865EF28A8 | sha1: 384DD62F98964EB78C4FDCC07FE6EC622CA6D4C1 | sha256: 8D6E076EA351F9A48B22A2F471BDC1BF5B908FAA86729CEC9BE79F03EA1A76C8 | sha512: 37451E4435B10CCF0C3D3BD2C0DF7B113D6FEC287878FBC6B203E231EF38B31B3804F42A972DFB99784A02B97C10E126F100069175A81C00C105BB6F20293D0C
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Common.resources.dll
md5: 0B8FF55FC6E07BD6E7D07D369B38C83F | sha1: 44A6DAAADE9093401FB44D1E26DE98C9DDBE15F5 | sha256: 54B0BC590C273CED123CAD942A86C09A6CB6EA6C813AECD379B68E1FE25D6248 | sha512: 9798C13125CF3C05D24D16B161A928909BB89F281E72FF3A554CE41F7237E7B23B18F5491E4A99781ECB51D83322BB7D7F01E00D3446AECC889675088143A938
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 735AEE1A256F43B1CCABD67DB42C2E40 | sha1: 493DC8AE51AA4A5E9A2F8E15689323B916765458 | sha256: 5EFB2FDD226521131D3D97B5C336CDB7D245FB3D1FDFB722E04E6698F1E07EE3 | sha512: 18A3B9A4B0A7EEB98C3B251992D888DABD303701AC73858B8C3972E93821D8B81C55FC5046BE8B219E34287CDE0FEF1A6FF41D97D1B497E576CDD1A62488D7C4
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 58B82176F7DE161622A6A4258FF94AD2 | sha1: C0EF7CFF033FFB7AD897F607F3AC7FA27B966151 | sha256: 40E38BCEB950D6C07130D24F88E84C1FCB9272E6C5FDB1279F1D7B159A12C1DF | sha512: D9FD33D15ABFDDFC159F95E54C83B93BC0658F9915083560EA101094B9CB21D2A61094486D9B7888AC7ADBB4B6A67852080BC728E35BB24F4FE775134C45D978
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 8F9BE0D9D77B51237B73E200EC62010B | sha1: A3F2F6E22A4D2CEAF8631072524BA61249F569B9 | sha256: C8D2FA76EA42F872153DE705B8938937786F873329774C2B8698877B78EF4108 | sha512: 2A8DE9CEE8E6384C2FD4CBA0320CA6EBE3BED09E4A9B23939FF485D0CC1AFF33D2AC8AE0816550EB1B4A957C286060CB4B38A0C494104CFC11C9CBA34DF00EDC
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 719F0A975942064E69ECDE403094A0D1 | sha1: 44E7D2C358F35A438F29FFE7AF1339F35055BE52 | sha256: 70EF07AB91A30676DCFA9157B0F2FE0027A20D3C9B8BB1F0727267370A010A03 | sha512: 7D1B8393E67472C780003095179C8E3F1D3A88EBC17C61E3972B092AADA66CBB25AF05674A8966150E27BBEAAE1F34C8E0659624D3393E06CC957208F0D669D7
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 3F0F03FA568849EEA19E01AC9DD3E730 | sha1: 083A21CFF9E5E673108BCC0895A0AE0FD196110B | sha256: CD0410697E2281B526796DC1AAC89F50CFE3FA68D00E04576AF3BE936E2FB723 | sha512: 415D843BBBFD478D0EAACD5B1E89A1268DD96F60C3994455417BFC5C65E069A80FBB78B07AFCF8F80F872E17FF251BADE4D4B733832AD00CBE8282667169092C
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: DCB2FB0AA9241D2F977DFDBFDE3AD71B | sha1: 461FDFFDD1A67B9E40B57713A3366A3112919680 | sha256: C9B0B81C3EC05B62FA31FE40432E1072E41A9C9714A4642099B33BF10FFC5CC7 | sha512: 4FBCBD1C13EFFFD58F6486E48DB03ED1FF799EA294E57CE3DA4D23D7FBD5876C9FFE5D50DE0BA68D1C72446C10884519A56542FE44B91D622601CE23E8F98ACA
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: C50ADE0DA76769F3515427C1BC9A24A1 | sha1: 3A15251B1BD63FECE60F8A2B50094635A4378F97 | sha256: ED53E6AEB45D68140761102ACE51660C8CEB3085DE602AD4298CD8C397947471 | sha512: 4EFF69A97115DDDEF1DC412E752C4E0E5653CCF2800F484E2391D6470F2FF736DCC3A58AB42BE6D847D8270B1BA32D5B691FECB5115B913E7A796F28EACF8851
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 3D78BDB2B985B560084DA17CFDB8FE8D | sha1: 5F9E9FC2767A7E5C02DA33E9565B8F3124929BD5 | sha256: D59E092F0FF4F1096E75A1B04BD7708D38702742D51948E3E102D0AAB2ABA628 | sha512: 9C724335B5A889E53426BA5EE28E506D4B6F5BFCE6F53A0468E420527D45F3F39439C77EFCE2FB7E9F47C666CE9740911BB1C4EDF539DAC0BDF0CCC594348EF4
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7706EDB6E4024715A17DCE4C7493F0A8 | sha1: EF0FC05CA668F152048605D9564F05766F8C9B51 | sha256: 6AFE9BDFE30ACF435F7D1621107DB044999A404E7D74D78DE1A08E48BCD67DF2 | sha512: 96971BD30A0ECC3520C24D5E58D48B9710C100CB7C63F09B386B4584F79BCD6CFA471ADD47DB0D4386B4FF6332CA3784FEDA11617B66C6CB0BE92341F4E3CAD2
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 54AD0353BDD85A628FB9C00F14B69077 | sha1: FFDA237EB3D39A642DA2E1060218001FC3D7A196 | sha256: F823F4E327E4CE98D3BA52696CB6EB6E0CA3C8A80D207EDB381FF3B7D20DBBAE | sha512: 764953E7A809CA8F34C681F5D3CB1D0E9EDF3181EDA86D0F1C5BD6F5B0D9B7628CEB3F68EB6E4C7043B56F8CEA72FD61F63BC51A9A56BAB58C134CCE89836C89
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: E04E00D827162255DFB8EF77B7BE9D52 | sha1: B1BD8022D87506929C5BD3F007F4684C7C741468 | sha256: E95E7837FD75AA64F258DB548AB01879E9937340B427EA4633A7587538F3F0AD | sha512: D79D1850FA5322FDEFDB1C80EC79D08A4288F0064DEE7A0EF7F54C7126275EBE1025A5E745B0DFCA35DBC481CCE0ED728DEF9388C09CD96A920F0F0DF01DC146
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 3E68A606058404D9182A549311261D74 | sha1: 0A5D57A7F3279213F2CA32F79A567F21C81A447A | sha256: 0A3B98E4D0F1AFF6E8C95FAACC9885421C23A6D9FEB2E159E7AD06FC350215CE | sha512: FBCDAEF78E422D6B24DA572A9DC671D63269A347FD0CA254E3178839A0487945105B73B7C930481E5841CB5EB6B4902C6F23757264DDA305E64C602A38676B0A
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 79CBFB56F6F60B4601B8068CADBC560C | sha1: 395F36DB87ABE901D8308CFAD9E90696EEE0D7B2 | sha256: 7D0A28ADC4D65C0679A17514BEDA708E27C1F4C340D8B60AF2AEF013D08AE8B3 | sha512: 6814D29068DDDCD3964594094D7E151DD6E09E15D9A69DFEC7233EC0A415C04D2EF0A8FBBE786F1D1BA23CD1EC0C496A843C6ECFAB9BD13C4EE92AD18F70B599
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: E8EC11935276EC04A6EA06D9920F6C5D | sha1: 5DEFAE0DE5DCF146466F26927D39060B617F9EC6 | sha256: D3BD6FCD76E64FBB6B7F9B445EB180FAB42DB79AEE783A4E49531625B96ED787 | sha512: 02ED3D73EDC8CD79F8E068E51742826CA4475D98C1866DC90ED1C0C7E44CD8C93FFBA173C6BA20BE6770A045748E9E189F03FCC6AFA157CFC9485A77849AD76E
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: BD10220F330D4CB60BD408674433D56F | sha1: 886196C1DF68953194819E54031DDE223D3AE80E | sha256: FE58D5F00F302B9DA294500F3748ADDA99F594D5DD36B6C5B4CA23D2EF56C19A | sha512: D6FBFF8D280913C3B37509E182865E3EA3460A4030783F0FF1EAE61B67D8E7E017C1385DFB2D5A19CE94F006A40B70A711DA541BFCFD10F6B6FD24946101ED32
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 2741CEBB625F523CA6C2BAFD9632A108 | sha1: D94B2694DFDE861A494D4CD5B5BA371F47E3A156 | sha256: 6615F7C1C234351544B430F5A0FDC164D89A95F6B3CC930621FE9A4D74A45A96 | sha512: D5E654ECD6E5808073BDE7D6452B55817DECC18107E30D06A54E6B138CE6466167573AAAF69D364AFD51365A6A8D4F943AB465140FA5FB84B96B168AF71F8A8D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 210B1F917BE5AD655DD843BC85DC95F5 | sha1: 202E2F1003EC674E0738F65383C83B6130EEC973 | sha256: 60A1A5C09D1FE6ADE9BA117F85D04D1D9804D662DB5C7259BC17B5FB4E77EDFB | sha512: AD749F9ABF3E7DEE3A64F211F2F5345AD4ACC9A57A6B7A87272A80EE8ED39549619269AC129D6CB585F476042627E5C2711485F1F4E6854D1E25E0BF21AB3F65
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: FAB37C70301B329183F27099A846C421 | sha1: 245D808C897F908FA7E6D6D9940E20D5874C2548 | sha256: 46B3CF31C02E928B96A97B22BC8CB5E41887460B600B04EF00056D8A114BB258 | sha512: D06361941CA7B6B89C4C49ECDD4B2DC05E7BED63D4CD85D357B908BE640F9502E6D2321A6AAAAC2ED887803707F59AE3DC3716E44EB01AF18174179A054A9F35
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: D3C32B041DF50D6D45E1F7096EA76890 | sha1: 1BFE7ED8F73E703E766426921B1EFDB6298C7793 | sha256: A9FFD615CE4E7FAB255330A840892C66AEEE76009D8848668B0FDD3246C97BC5 | sha512: 2AAC8FD0A89100F9866CED492B6F5FB87A2740454C6A2BBF21ED39C3A3E470570D8D9DB535AB14CC9D85E1A1CA436987147E3605D6369C25C521E96E278B5990
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 6FDBAD7A60F0660977452F18D17A3BDC | sha1: 49135C9DE83FDFBF1989CA21AAE0724C0509FB2A | sha256: 67FA95BF488FF44C1A55A68AE21EDBC8988EBA213DA3665DBD020997F1FD6F9B | sha512: A86875D7822F30BD3160D3BE608EA6A5FF53CC6EFB90E9F3B0CA4FCBC99373061615AB14CCBDC4C902CF947A851CFF27C9C4D056959DAD8F069B5844DD633B96
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Client.resources.dll
md5: 89E8D3FD32C0FD520685E50913D3E42A | sha1: C2DDCC04BB9752424FB68178FB880B5610394DDC | sha256: CAA4C266EA1B13D80B2A81028099BE0B5B2B297BD27D27CC405FF5B7077F4A5D | sha512: A436DA5BB3354C0C48920A98B44F551EE9A84B7938A306FE93835BBC27F4B1D30CA6FD5102EF466D90D2B485AAA99F1DA457FFBE0EAC6E6BAC150EFF54430B6B
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Common.resources.dll
md5: B0D1B0D15F51A178EB51FB5FEE4098D0 | sha1: 3876FF0A3147F8F38C01497461EDBB4694447ED8 | sha256: CE540A967582027C3795EF841FCE492804DAAD599B3C2ECFB1DE6866B2B971E3 | sha512: 697D3D4FB12AF6349B5E9374DDE90EA5C42324976067B9BD4CAEA004DC0D5816B79FCA043CEAECCD6E0FD6EAC7829D9EA615AF206D5E41ED152A5B849ED85ECE
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: B9C7D77D8E0C1F33533EEC22845D511C | sha1: 5C1DEF2441361131D11C5B3761965EFB0B036AD3 | sha256: 2F5A654D614082263E821145B4B5976A21994D3F0AED87B8E5B98DEB2FF6A737 | sha512: 9A1A331F5EDFC17CF1FAB6428F04FEF662462E6C6D8952BB8E12EB61381690B856DFDB15775CB08AAF638FB07374AB5C347BFBF97E1A8C5A7C1FB436B84EAFE5
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 8170912D2A861BDDA212D53608D0D860 | sha1: B4DD0713BB012E2F0EDADE7A286C6F89419302B5 | sha256: F8AD3FE48B2D9E5910749934FCD07F13058F1BF6E6C8CE757B665CB4DCE6362F | sha512: 766732A14657E5906D8473ED574D6622BBD3B89402C7CCEEB9FC3281B29D25655BA997F81275F1B6E9C011E125287F40E2B8BABCD0504EE18E51555D79BC4F91
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 0978A708A872D84A4ED3E87B7A8D869B | sha1: 34B886C97D5CB718756CECD0A43DA6B9CD9E29AA | sha256: D9488867B1C0319FA78BBE9173A88213211A624DA923F2D34CBA9F51F8A14D90 | sha512: 1FE3D1B5088F498073F3D73C359E21F31207191ADB1137BCB3E08E182F497A081AFD939CA90A3F60D1727A2F0E4DF2B9D01158F27763F824E333935FC2262204
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 2E737F159993E85CE3870CEC01662358 | sha1: 09CBDA66BB8C2D671206BE7D79D3158E2B83AE35 | sha256: 40943E5BA0B156070C0A906298F6DD196D0993C5842845E7426B838DA98AA7E3 | sha512: 251CD25631D0F9F3BD79172093661AEAF787848A503292843EE4EA78FE9479C2F2ABD238EB1F28CE5FF92FC0B05D95B6E3CA921AA792E8333F4B737D918836F8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 283BC13A7F75FAF695A94A43EE8C37DD | sha1: E79FEBE98DC751300B1D44A7AE20A9703303C88B | sha256: 0601066ED30E4F514D9B9A53A7947263BACCC96FE053F7210D84EDC840CAF48B | sha512: 78B45CDF351643B7AF3622D23936F5EA351A37E152CF1550F6971C3117EA4DE5B70DC36A79386453843F3F3BF11681AB09E76A70A3A3369695BC9AA4789F1F50
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 27C3CB5D3E87281FC9C239A97776E0B2 | sha1: 29B5EFA5BB0EF7ACFB773D263E5A03B53DDD2A9C | sha256: 6F2C00444FDC6A671DB4E83482173C6A6D46B93F1E7DD113E93C041E58D51C73 | sha512: 72BED245384EAF7F264E69992C520280C66CD032971BCBCAF87E081FC6F4844D599D9A4B9ECAD6A987D97EC9927EF4863ABA4EC9C6FF307C605CDE4F5C26326E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: AC6D2D9AE2AC9A72E9B59DDF4682BBF5 | sha1: AAE216976F76689D36734467BF1AA05696611B40 | sha256: B86351FB6BB9D0A176F6FD61A2E2E1C9468663C6F6595EC0A0B91754054C92A1 | sha512: A74B8D3DA980D12DB3A4AD97052B7B5C89EDEF2EA34B46472D6DCC412B37BA3695B3B54B94EC987100B47CFA1AD37A805CF188F3267B438378DB6384E901DA76
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: EFEA96E7929E2212C55F41FA5A4B57DC | sha1: CF7CA27B2CB47BF97A2226A6DF7CEB161F8234A2 | sha256: 8483B06C060BB9AE916C7A93D5889152ACE67D06DDD3CB9797939D8E3DCDEA7A | sha512: CF8D51393D46610291454872E0BB573A49A6A013C28AEBE40CD3A61212A8AABCA99575A2B3F2A97785B2DF109EDA1670512B523A48B1D25CC2946EC514CD0012
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 49EF2857C3C2CFEB8200266137901A2D | sha1: 8325E31E878977FD50A2FE147F777A8276D81137 | sha256: B6B5B3DEC2390661F0F3E82D5BA47783E7207555FFCCF645D285E3925F54AEA5 | sha512: 80863D332A17DC0ABB3FBD3E00A13C54534606DBF1699B40DFA52C83E91D7D9063849CE9F648E14E883A9E9C2AD58F127FD2A4C5D29769A10293933F99195D5E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: E57636FC81F3CC9DA37949373C580F04 | sha1: 355C65DBCC25E77BAFD1FB53FA96AFAAFD7A2B06 | sha256: 27A82EFF80B4AB2BC80D0513EFA451EE14F21BF9A8C37D5DACCCFAB8D0BB14F8 | sha512: 78805AEDC914C262A068366078F13EDCD42A14BD9D51F929F71834F21DB53D206F4E4B8D4F360E2FF99B71D9CA77F6AAD06EE670E1D5CC6BFF96771921FCA4A4
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 5DFAA8B0446395CE55F17FBFF510C039 | sha1: 56197712BA966EC999DE5127B69112266870710C | sha256: 1C9E01B5E0F2691A6E4ECD1CB0D766D195B180290F0C07A5A75A4C947AF7C212 | sha512: DC9B0251631EB707293E03AC428FDEF25E9E3DD1A735CE6131E1BAD41FB5BC7C53AD20EF864D4CCABA17736065EB382E3EA835D1B2313CDEF0CC20DDBD403AA1
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: B24D5F7659682D5F8AD80B4D02C21FF6 | sha1: 6353790A3BD59BDCE1DF2F5B695ED3DB80BB7867 | sha256: 5DDCD25089A5160B83B5ECB7AC5E6564EC278574A20142B74CA4C2B8636C9387 | sha512: 63B7D793D79BC264553FD7C7F25FF27918FC9490472885E12D83CF6FACF10422FD1B5D2376DECEB9A45154FDD4B06081C23DFA4AD5DA1E35F64180A3E56DB3CC
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 0ED2ABB8599877C0E96C6891845A04F0 | sha1: 08FC0F441EC2B37113C728E31D7DDD7C59ABF294 | sha256: FEEEA403F9EB7CAB00DB6090BEA2F6A8DD9C80BFD5B83DCAD3FAECC78A882DDF | sha512: AED172D5CCD1E3787F98C95C5F4E4513F60012FB154BE69F25216CFFB6B5A1281B184B93204EB83E128E08525D47C17B564F0F999C04B4EEC0A046B5631DA739
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: C787709205BA5344756D66F98FD85ADA | sha1: 0DD2BB42225468BFD6DCCD6A06AC136446B7C480 | sha256: 0D2DED9D1009FD8010C3B1532A1229B20B023C9DDCF7EA78870092A530ABFA13 | sha512: 49CB0BC22D06400C19264DA52E9B2EE252E7CDD7ED1CF3F2C13E40E350401E4C18A87CC458782D3B55139E75DDC079DC17AB686BEC1AACA207119971D71711F2
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: E67DA717D82246C1EFA52B309A67A8F2 | sha1: D9A24962C1A42DA488083D925ED81A3AA4626297 | sha256: 715EC494F26D5D2C8975C05198303E98C22E9A30908DED265B1623B90DA599C6 | sha512: FAC700160CD50A6FA3F659462B11B844E650E271C6E7FC67521CC54EAF1E2BC46A0D497331B09C4FE8EA48B229E0797BAB6AB12C9E3C5BC4CAF912E280FD4222
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 7CCF044D058C4398DA358F5E42C6AEDB | sha1: DC306A82D166E62E2BA5416A5A9355839C5ED895 | sha256: 7DC009ADAEA1114FB9BE7342C4914CE79287CBC767578F61CB55CD301EF8BD0D | sha512: 744374F340A7CD792E9EBB40543AED5BBB6ECF41653FA9AF3615D99312D45C0E5C49BAFBC36FBE5582DDBEB20D528D814F13CB44CF636706F1DED1F4724AD15C
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 2E687227B26D116C6C46831D30B4F44E | sha1: DED2221FF46B834C03D751AD6DB6A2E56CAE4749 | sha256: A16FBBAF5BFB66D5B910AAA97A7F2FFFFF677EBAB201799AD34F61D7F230EA36 | sha512: CD46149C775AC57C69CD9D40B524B76A289EA1432CA1D688FBA0C5856923B1750506B77C939FE6618848B759865EB1AF842E24D3C3CABA830CBB42382B46D405
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 1FA30D5F17F7F95907E35FCE333E40AD | sha1: 87A2CE038124BFDB250D8397D373E5A5E7392CD6 | sha256: 61095DFCB65A4E30B8447124D7A3DB029DAB57DADDDD2D08BC7B7B1034830D15 | sha512: 611D01DA18A4DC9B5882A51F667FC55F2E9D40A23EA1C3976BD3B82C2650BD286E1EA615023CBA2D0953BB82768AEE1D79A3603F61D03F8920447EA54B222CCA
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 9B26568CEE1F651BEE395E8252148B3B | sha1: 452E4CD8AF6173ED7845B5FC9C4615A433720B9B | sha256: 8A3AB9A8F686C179316691193F049EAE8EBBBAB67DADB71120AFE732F7E2945E | sha512: 08AEA6F38C1073D1058606FF0921705E97C6BE16142FC5DEFB9CB2B1DA9F4A444285A72F7F995D0DA531DBB003E79D16768948933676CF0066079D86864560E3
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: F8C140B8B6A21E8CDC173F3A27A529CE | sha1: 6B538930128EED05336902DA16710AA1A6FB655D | sha256: 5F2A641EFAF918749D5D3BCAAC95278A2BFD75D1E4B59A682C5578DC963CA8C2 | sha512: A625B389673FD4B3F058D71F8B6097BA2195024FE4A4BED91780C73C60ABF8023712FA05C8BC36B2ADD189789591537E705B6784DCD95B427693D4501B7B98DB
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 14B0222CE4D1D4B28DE25A33099A5078 | sha1: 9FB7B42D8DD55CB5212DF4CBF996F07F54F4C53D | sha256: 537D70FA2BB8F817893FA4FD4F5BB1428A106230FAAFF70CDFB102A66611EDCE | sha512: 93C836D9F96A649DDA44CC71C22F69EF0036F71C2EB3FDAFAD608290DFE5D601FB9A3898FFB0E5E311BA3B2499ABCDB4C5CCEAF1A4BB389F285EFE846E56BD95
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 4E9B2E01A094D7681323AA2909235B0E | sha1: 1C0AF59423B45CC2894EC2ECDE6A587F7013C1C8 | sha256: 29F836B76821F0BA97B954BEAF0C779807992A77F275A69843A4F29E9AE804FE | sha512: 031A169F205BA33B48A2817877CEB38957F4C22C889806A82B3014F447D8B23443C09CCB373700C002A3786AA732B0ECD0C061FD76C87823DE97DA0A4F78F60E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: B572F6413325059CED05D33E2CA6CA83 | sha1: F764A766DB3B7E618CA546EF97E493B970479D89 | sha256: B08BB21DB9916B4348AF130C633B8EC5A2331B88D81C984CCC9040D74D85ED6D | sha512: 5868FC597E79FA57B4BBC4C2636BD6561B0F72A3ECAD63C872B717BF69AA5D0C98FAC0C20C438EC3127ACAE5C3AB623F9E2164FE5078924C01FDADB23C01C546
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: EBA3FA6D63E06012013B5550E67A8B92 | sha1: 50846E9687F13FE4350252EAE342399E96CF7040 | sha256: 542C74960270F517D03DBE97223C6C6BB22E9ADD3004E79B55B202BF8BD58AE1 | sha512: 348C0A5B0D9E99B3F963B2B76D668ED00701A4728FBFC2D38B16FEBF5BEC524B2230C4A6B562B4FE1E1FFB301FF29177DA625E0AB653CB4BF5274DB7D1986D58
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: C201BBAC7AEB3D68938A6C486F548135 | sha1: 9D1415A614483277A793DC88B941A4D9E742618D | sha256: 086A672D7EB297C51B689F05785EBC4C6887454FBD3FF9141E61D8439C4D64FB | sha512: 493EC00794001D9D00760DEA348A353C4DD9A5598CE48A51D181015C7774E3613314E472A2105734F6A30B3D346CA786992046AB2D3C85FB46F111675B66E62F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Client.resources.dll
md5: 6DBF7FD6AF8A866C1BBE1ADE0EE23D60 | sha1: 52454341F7C05D70A2C73A77D85BAF8B996BDC19 | sha256: 6A8BEABA862F9CBED26AA2990149AFBA553F8BA9EE824F6722386833822DE219 | sha512: B371FD4432964743641B240C01532F18A51C937443AA4A7384C185D96C1093BCEE8764B76AF3D9034E93FF52F0802B0194FA7A312BAA0A8594C4136634B955FF
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Common.resources.dll
md5: 6D4FEF85BF87F02508BD571DD881C9DE | sha1: A7B818C0D15D89942B64767BDEB546A4FC38F135 | sha256: 71499262BB8A502D4D654CDDAC5B4F97CF37FBD6F32FD8DCF070976171285FD4 | sha512: 859FB17B7BDD8331BDAB57C7FD398734C19D2800BB4A52773999CC8A14C1DE0FDEE86C6EA9CA5A3E670D7385906311564F1942199CC7EB0271F7D6AB89DDDC16
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 49B5FB24F5601B5607177A5E03E2CF5D | sha1: 752682FDB444873DC43C857F893CEFA092A1C323 | sha256: 17446CD523F6A22E004F36BE0AB82C6C09BCFAA3E5DDF39057627DC48D7DB532 | sha512: D00303000BA0780040A10ED041A06D61D139BD95CA85F49DEF22F5E91412C0C9D4B3281037B49F58CB1F50BAF0659E5687D5A0571EE8873823D60774B5C696CC
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 05169184F2FC231CA2EC63C479D93848 | sha1: FAA940183C1B807776B5EB2348420B67ECFE3361 | sha256: 32CA6ED96300AA3724D285460BE7CC9CD8F62CCA1CB758FEF21D83D862AF4F54 | sha512: 056723F59E952358D04111D30CCF4D1F8918822BDB88284F6C67AF2948AF1A2A93B07A2BD27BEFA3DBAD0CEF07B94AC612E3117EB632B55EC47E9D7094836185
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 2865A75444E0B3974A3431EE7C08E6E6 | sha1: EF42C8BD34AC30E5C18115CD986A473F8E970E20 | sha256: 4AFE834FC2652D2C52A46465B03EDDD6C6A6345F479DB757111667C9F47AF5F9 | sha512: 76EABD9C6F7E16B8C920E4D10DF81E02B26AF590A874CD578B2CAAD82CB9C3B7F90EDD7AEC7836CA1569FDDF48EFF419FDF5C0B96A04683F76B591208FD65917
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: A52E8FDD307299BEC5C90EB7C6FAD24C | sha1: 8CAB2574BFA7FBE8DB5A76DB7893F850214B8B0B | sha256: 29B974C13327D66A3A139D7504F5127B7068B562B21DC78DAE278916EF9C4E74 | sha512: 51A1939D4DDA859935D4843D532DB568FCA81D2854CDFAAC77EFC99272C7EC5CD43FEEE2F741ED572AF879AF019598B2D9238A09ADBFF9C9E1D29D3A8C39B23F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: A5B1147249DF85C341D0D890C598BFEA | sha1: 5C21EEB224BE9A15D910F8347BDECB681019B591 | sha256: 9D851F834F22320D1BCFFD7CCF5EB41163B7FEB483AAFA5E357BC66633C4B581 | sha512: 286AA84C1F76D009F4CAAFBBFBB8B3FF27BDE40479166268712BC959739F24497C948174845836AA3859A3B85D9FFD49899E072212A866A3D5B183C97D4FCDD1
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: E3D4EF96009FCF668B84929DDB6B86D3 | sha1: B6CC793C0AB3FF4F492A39EAAA51AE5BB640E743 | sha256: 09310D595393DFB4AA8ECE21AA76279D34A9D6486847315DA4E5E22DFDA7DB02 | sha512: A16A99F12C7F066F597821518923F26141096F044BB3367B6DF1FC727F65A8946C04BE08A08001ADDEDC3BBCF2C3D9884EA74BE2D67E1DE91D1BEF3EFD6A8DF1
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: DC1716290490945EF8A79D5E5A88F2CB | sha1: 0FDD6C3B1D6F1C39D738B1EBCE7CF99D07ECC3D3 | sha256: 3833B05D39699B1349948D9E93D101F332BA4418A18036EA9A92E583370A41BF | sha512: 3F892C2B8AA614BB110D1E1B48DDFE43540269D4BDEDE464513A37EFF1910C58B98AEF87B20DDD1AE252193C5D2A73DB8F89FACF7F74C5415676CF7ED65CC691
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 36926441C8B24BB633B05A7EDE94C156 | sha1: 7EE5CADFAD85DB2E5654CCAB731ED7BED222FBD9 | sha256: BA4E430533CB7E50C45890A91DDE12E0A239A789D8CEAC8B1FAC624C9923C979 | sha512: DBFAA2FEF388176486019EE079950C20465C8D10422E8EFB216A2B1FB9B6C39EE9E4180F627FE8BDA4CE1207493078BF11212616FF3902612E867CABE2FD9821
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: C469DA17E4DBC0203AF3F2FB157C1CE2 | sha1: 3019212DA37201D056E214249A0E61BCBCA54BBF | sha256: 6B48D657F6120E4C596D1C70FFA787522D142FA9F2DC6BB054B5E5CE0E07A898 | sha512: DDCD0317F8DC70DA8B7D7DFD753DB14CE019C96603CDC6DCBCA4A80629C4AB3A1A4A5B30D2C2266B9B1B5683413C392D1DC7A71264ABCB28AD8FB093EF639710
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 5B714409E61000A7023533BA52D54C4F | sha1: 8417F5B6B1ACA1E56319C1B8CBB4CE46AE6714D3 | sha256: 674E0F9BA771DC4BCB436C2244ADA364D73AD742B96D0A6DBB377D5F290FEB9F | sha512: F589C0685A5AA266DB23C8DB91467F64EAB2C7319B56171D19ABB756316DBEB04C9EC3D4A20B9FF7482AC9261FF76BE26AE817E5E37B0D69F0193BBF423D93F0
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: F114B19632778B857CDA9E8182E37102 | sha1: 5963EB2E1971B27895319C852B0EA103B22002CF | sha256: DF106F9B00EB11E45D54682991EAE00E116C6BDF68E53190D9188CAC66C3FA42 | sha512: 3B943AD7A4E07DC33794F350C0B3E74A52C6F26E3A4D771AD1191BEFDA65E92FA8F134C8E5365624E4302CADFE43A78CF4E6792F8E5BD842AECEA6A30B79E405
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 06FD16BB9C0719F21D52F163A054214C | sha1: EC13D9BDCC447C15FD3CA1FFA6EE06C372B4B7C1 | sha256: 43D26EA7F6C295C582D02AA5FDCDA746FBE6B6459DB2E22948294320BB59C83D | sha512: 0C7F28FDF972B45D4EA705EAE27BF7EC6B742ADF04325C5818EF2878FC8B99939451ED11ADD88E138C92D31FACA3D82B50EE0D4381AF6EE1C16215F24D65F211
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 2ACE79ADD604D390A02C34AA6A837111 | sha1: 672BC9EA4B32010DCD6709AA84C8B388606AD7C9 | sha256: D68CA5DBA7CBE3AC2B9E12EA846FF70FEFC6CA9A497AB83205E08F79D33B601B | sha512: A87AE4B422563D8CA31798A180A9FE2977BADA7B2C62E664EA492078F178F3C608E9BA2F18BF2C04403E7B2E11D7C7F1551B1FDFA9781B20566E1094C4B5C079
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: A0817F79783149D95453DB0D1DE81890 | sha1: 64F86444FC59C21944231C880CCBB00B84A7F67D | sha256: 73AADC3D9C6704DDA8C763A9D48B4CFA3D2A00CC7EBD13C47A2E74092B9689C6 | sha512: A6F51269B21D91C093B913201414F62C202FCCBC75445C8935948B3B2098441E29760386D57C76B642499617BA06AF6A5EDCE0CBCEF6AC9D4BB318C4DF307E65
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 98053DB75D581156428A3BFA1DD0D502 | sha1: EF816E6A3DF36FAB91F2A8AAB36F8DB1ECE1C90E | sha256: 4C5E357C3CF8CFA64DE295A45083275B0B654B4BDD96D201308512EFF1D07D8E | sha512: 8BD8DC84C2CF44F7E343E38A1D38351F5D81E4F9C81AB27299E6A9E5666B78E39DDF0E35BE8C4FF164867F06877C309D07EC8C98B1506B6131FAFB28FBBE18E0
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: FF6C9443DE2CAB46043D662A08459BE7 | sha1: E69AE70FE5CF4F2A2BC54270AD53CFE05EAA073D | sha256: 8CD927D4769A1C8E67F517EEDCE1EB685C5221F68AC09AAD23F14B98F51DB23C | sha512: EE687315D390E6EA5BC8F012EF862F3CCA6C3DF017BBFE910F81E498A8E4FE0639635ECB7CB82C9C864D8A0565F55ED4B672B38C5C05584513AD08173735DB52
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 1C8363D8096C2450497D34068572331B | sha1: EA2D18DBE5AC2F6CCEA70139FC0196240218EB84 | sha256: C699F2170895DCA0420A7E28697BE1557F2A61411900E7ADB41E83CCC5670EA8 | sha512: AC5857AAF1E10144A518D1323472A0FAF32A3AF08D6A83DEA6BEEC89D2201E0C2D21AF47562D3E4E592EDC564137B7B1C217D0A6547C20241537DF6DB727470A
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 2C5AD5397CAFBDF89C9E25A1C5BD82A5 | sha1: 606B8E5A4B0BCD778E29BA003F8EBDC13F68B4C0 | sha256: 2CEEA8C0C285D3FDCA13D9F2C143AF1A9DF165FF606E4E8722570F0F9406878D | sha512: FBED58148E1F077F7BE8307A6F2536921FAD91617D0F98B983474553D5FC75FB076F17C55ABA7883DD805049AFBF13C1DAD626149211CD46494FF47019627C3F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 5A0EC6205DF2CADECCBB3954C81F6596 | sha1: 7E27E43EAB35E1F187FE3DAD933DD77233F77B84 | sha256: A92AD6472135E9A4CD6F8877DEC43AAAF2838E39BE495AC31A63C0705A518F48 | sha512: 6B4EDD42EDC1F8A83D973A73EAA48BAB73432E316AD00667A8F69D38B806E97D29B5570F25623BCC78003812E1F01F6D94205410719FE03485B4054208C3AF5A
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: C49F305881BA5E0FAD2EB0DE17D834D0 | sha1: 325D61C1C7E04593EBBE1D50C503B6ADBCCB239F | sha256: 3AD21CDE2B2919E2B4CB3C7D4B6A23477427A1632698346E3B07F67ACF31DC71 | sha512: A3424F15A5AC0F73055D65686DCC914C47AE882F8E952DFD13786695FA1DCEA44D698FB64B8F7DFE2617479EA554B79A1EDC4D6AEEF125219F0F8685710627F1
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: D1B1603ABF2C38BFFEBE2D4BA231A3A0 | sha1: E1F4883045649A31D4E52432429CFA039AFF823D | sha256: 60F1BF878F47450145F98B71D0E5242BEEE33B7340E582363423D11AEDB29D1E | sha512: 99A3A0A656B215DD1B714A1CC3A36475AA9EB682B5E9306B419C790EE0A4957C6AFE82ACFB38ADE2A8FC7E6BC694B4E688EBC062018F9D881F4BEE09ECCB232F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: E5CF87F57C4174D5F5B58DCDAE729E07 | sha1: F3F85602F122F6BBD6969FAC27781A5185D8855A | sha256: E5B0028C96725EE707173EA4BB543EF1602E7C5BC5B29ACC6975CD880A44DFD6 | sha512: 7F6F64D50414B5A57EF096BFF193EF935C1D475EDA8DF931BB44DC24860AFFDBE10A5D89402FBA49731B2C28E71DBE82A6BD06BAE9EE6A144EA48FFCA3D1B1C2
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: FCC4029A698D4FF1D9C67944B66192D9 | sha1: C2AA0394A147AC820516EC3FAB4A0E48780C2ED1 | sha256: 8D765B67127CCD4535EFF2C0C565FA2F77A5599BCA1E3C1F82AD5ABD3656E2A9 | sha512: 4D9ED88C95EBD6B01C4D68884AC1249C344ACADF20F48F31F9C6DF34191D2D57E105B6FD5FF3F11E7C08466BA667FBD16F537160C8DC5473B19834919BC7AA4C
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: D9C04176850B9345D7508739437CFAB3 | sha1: 1A835A880E72E3D2E73A05BA6675DF39D106A568 | sha256: 736F5F2CE2491EFAC4D1B38C909F90B8B72D051BD7B5D4C22ED75151E5B353FE | sha512: 0D6CB19F6752F96B5BC94F9BABB28CA6E641F574BDBCE17AB246FD6F4032E932ECF9250CEDEFE9A7E4B89E32D59DA67F84BCCA4BFA4B8CB6EEC166187AB26ABC
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: ADEA5333D38A5918F97312AE9A8074B9 | sha1: F66C1BC42636F4ADA8118B3F3B6A1BE01602156B | sha256: 2B2C31052285E33A837DA5B6C6BE0553F3CF036A8056CF5EF55D5A900EFEEA97 | sha512: 53ADFC5EA4C8A2BC6F51E12CDC6B34A8CB89C25B1E7E2EAE69F7B58E04450FBE70AF09B14A56562E230D8400668637089EAB903800EBD15B5F91C4885AD5DB28
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Client.resources.dll
md5: 7CBFE0A0AD4CC4DCBD390F52452A08EB | sha1: 8BBCDE14E916379DCBBA89AB6D4C485F6DB5FB2C | sha256: 547F395E29A204C8A4F9B64DF7045F1FC1D6335060463F1DD7512D7466972672 | sha512: 9267F7FB71A63ECEBC3D162A4CB364EA490152DB5F7ED83D1CF0DCF40F8CB74A0A4C538C3654A7D414AFD56B2373437331ADEA0A2E19962F3AF6D4FEC4801266
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Common.resources.dll
md5: 5CE2DA071FB71BC352E1189D93E39FE5 | sha1: 395CDE2491B0ECB07331FC922AF61F337CF56BFB | sha256: 781294E905226D834B6055DC8FC94B431FDE8F4EB6337B4A09DF0C6EB4CBDF4D | sha512: 4F6C03F4F4AB39F1770658220DBE59E510BFACDCFF5D26FC430BCA7F53092C592981BD503D7C665598E297131529A62E3AEB0A45A0E08E185F04B29C0D6E8CAD
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 312E197EF136D69C3D976D0D8F42D962 | sha1: BC480D21244A972F2F9124052D21BB257B23EB98 | sha256: 1FB10BB1F4F2C2A7CC758A871251C39448DF8E7CBFA33A758577C5AEFC040D63 | sha512: 7F9A13D4ADADFFCB50369FC1CDABCB8CA4100F3660F6624FF5D522AD88FF54CDBA682794C402F43826088F43F51B740BA5B727996A3869247A3C8D2004E880AE
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: FA77488A0E331633F1F53D07668EAEBA | sha1: 6DC1474FB9D47D02FA8D494BAC7323B8B51CB17B | sha256: 642464D51EF8389F3462BEDFBB50F93550E77481C6615DB5164E4ABAF33D3B75 | sha512: 83A89625EC3A4AD77AD175F1A911412B8FB071F174ED2CC0719A048B87A97695F98DFCA5365A37E1F326CA84A8336DC114A63A5901412A227E7009C78A701533
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 74810A22798E789202E2A96535A1EE93 | sha1: 0DB4B3D3F8C963B069A3C5FC07B6A5DC689F8563 | sha256: 31746FBB95D1B2D77879BE0B0736A4EA85411AAFC9E80B7F2D773C7FE4C5C579 | sha512: 3F402C278EF4584F87268223E80733EA47B180CB61520A43BC377906A30C80E37E0E9F3B4BB9FCE48E2FECBFD1F68FE64B2141F562DD417F90A7355E539ECC16
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: CE75D2BC2CEFC8EA41D43D376C8D7F61 | sha1: E12A0BA6DC9F06CE25BDBC48F37F77729DD9B17B | sha256: 58FD75C6D10BA3361CD22244A1ECC0BD0EF680E14E5ECE4C639D57DD1BC0D83D | sha512: 03E05B04ECBF989F1070A34EDC7A3B7B40674690E8E9931134F667F9CA9A7892D2409E5CF231C181AB8A47669F514EB32595FF56FC4E6983D28E88B6F3DC6CB0
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 5323A223AF89D42B0E8A213F0638DCB6 | sha1: 1EB557EE74242A41EE3C5F076B1AC49D5D1F1622 | sha256: FAE1E7F1EE71252849B3E42A5FA5ECB5C06BEA9AB6CCC82D5359784FE1420D9E | sha512: 1100DE82A0985A72932526492FDB66E82436B2A5A3C2BB82D3F6E6FFF523937854BC26C9571DBA57557C87E1981D970249CD213C2899B39ABAE6EA88E45F746D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 2A19D8FB012B6DE2E782385A00C535A1 | sha1: F666CE6D761BC0C846F5239C6D07494A5FFA383B | sha256: 3C630BBEC110DF3DF6AEF7ABEBE38589269159EB2ED421457FE41D7A65D61149 | sha512: 639AAEFF3859E2CD974EA5D494E1435350CDDE52A7D26F5E175119A68262B7F826C40F08C06A74BB66E336EACF91B961E00EF15C0C66D2E0D3D56C836A982E7C
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 699676695F34EBACF6BEBC7F3BBB8C90 | sha1: C4ED562B648B0829A1B31EC7D7B130705EC6C126 | sha256: 8293124CC65295FA12405F6103C1CEBB4049AA05552AB6FAF4EFCBE2DEDCE72B | sha512: 490CDF01E7D149B52D0722EE1C3F30DAA4E6F5E9C08E250703C4F8B2671D743546FB09EC9EC983A5CE5DB853554F22A202FE32CA558E44F1ADA29558CD29504F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 40E55AE5C25318D1B6A8137D35E51A74 | sha1: DFC6F52B38810318C1A150FD9B0A881560BC11F6 | sha256: 862F10A35C8D03A8DACB42B96821FBA24A0D992C8A1DD6B9F95AA1276D0CB968 | sha512: 5FF016E294892F0F8B9159371FBFEFBE86BB878AE53462640CB2E93428C65F7665BEBE35CB6F670B04C99198728F98C1CE67DEFD5F21ACBE3839BFFE38B17EAD
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 30947D690490E0CA85CF605EDAE1B963 | sha1: 32FDC1B149C3C701F31CA218278BD9E09F71EC93 | sha256: E75FA56A5AAB43CEDA34BC75C9405045589A5BFF45982EE328FFD5DD9B7CE346 | sha512: 12BFE6A9797DA4D696070A743820FA70B87138F94D50F496E69F4C42B78A16A1419FE94EF8E4321D2FBBD2517593B88A942B466039C11797213D247A31E5E3D4
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 1297FBC762FAA44FB81A85388AF85C8B | sha1: 3E72C221F65DA19E3E87CDA031E62AA158335232 | sha256: 0ED0F90A20B6DE2AD04843FAF8972C77F83885A6034C288FE38EF7FCD9F0CF41 | sha512: 851642D1569787859096009C047D4E8400DF28D6FF314D9A988D72FF5C1FAA1052CD1B88BF4BE0E4A26AF0C3244DB53A12A698463F3329EB8AA040737F06DB82
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: A85ADFB7AFC41F9C7791DEF962A3FBAC | sha1: 82E9D6BB3F9656F061D315E88C7CCA267CECBC1D | sha256: CDB5CBA1D7F5D30399776B8823AAA7D52B944C56A03CBEA27A7F29B52AAD7EDF | sha512: C1B0AAD0685214BA4CE97EDF999CFB293B3303E7DA45CFCBA9141C806BF0800BDC19DA08BC5A2F6EA3F052DBE0EEDBCAA7BF7F6742978F141A62AB7580390AB4
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 41A8124183DAAF599AF84BFA7E990260 | sha1: 30F86CFFAA23C879C96CF0D71994C01A3C707D79 | sha256: 11671ACF0F925B665AF26BF4071ABECBF458CFDF0B85E26D69F1E66B1FC37BC5 | sha512: DE35E0EB4C4AE85E4D1B1B418AC12046F3AA41450B62FBC9129779E4CCF74D76A70E9A38BA4D3A9EBDBD0EF11E9845BB35E83102A3F4F30DF2953461EC8599CF
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: B3DACDD977C5D5D003BAC07BF1D04D92 | sha1: 6EEABC7AD2268094863D1A1882BBDEE83A4A3DEF | sha256: 551EA3692C8C647B4E96E28E9E6B7EB98A9148EA16D9864AA8EAE3E266DA08A7 | sha512: 92FDFB3B72EC8C0833E5250B1DA97825AE44C9DC4EC12E44769AD296457AFC98A4FA63C06CDAB6AC88C4C3CBA0B54DFC98DD982E2631F24DA5E68A1CE205902F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 18CCF64F5B841CF27D3921AAB76EA37F | sha1: 64D470AC4F83E45CC0BB5035680DCEE55D47FCA1 | sha256: 55FD1587FCEE62660E0B1B741CD4FBDA5AB436848E3EB41A231DDF8F18689DD3 | sha512: FD245B33110E65A1DA04187DAF659B3C32D7B895CE43898810281E5D4C3F024C3827A79D2DE326614719ADCF2CFFC4CB6CC4668722BCE433AAC48A692784A882
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 11563B2387EC7F93C4DEFDF4B4E111B0 | sha1: 4EF9D7E8FBCC982A175BCFE69B0B0A573B06675B | sha256: 2DAB4D9393A7D4168E7CC25CC283DA2DAB75CBA8152BD2AA63E37D1D69CC8C7A | sha512: F389305CCB5BDFC464A0D34C06E4B6211B4751B469E7599962EF81DA9F30C08C985F4F28CF92B4BCC6D1045CC62AEDF33409F4F3644EB03C16313A69326080D1
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 159587DE9E04B0B9652F187FF9E6EC62 | sha1: 2B0009365174A2B43769D42A39B0127D7738A089 | sha256: 681B436E5A0F832E21C7C44AB4B838D95270FAA904597DF315690C22D204DFEF | sha512: 194D073AB7B3F563D4AA2FE57AE1BEDE5AB41BE6ED390CF68239DD867FAD014A8ABF9CAF2F9FC10A3EFAFC0D4B1E04A3A373722D08C3C91CD0650D6AA6FFEACD
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 77F3D43CAD25A4E0203F78C1330B7C54 | sha1: BBE2323AF1BB54EA53091171C721DBDCE1C2873F | sha256: 72E137E5E8EF002358F3B025DDED0CD38692200D217A3B1777861ED89666827E | sha512: 29C17F0A9BFE32A57944177FB57A80872B90A5C4F8324BAF34A5B388A25147E9F3ED94B790132132AA37BE79A35800F0280DA6FEBE15431D7AAE71472A712C3E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 6ADDE1B369A7C099508D368AFF048AB3 | sha1: 7E92B5AEC14E3B2F9D35EB10A276C61EDBF0A9D6 | sha256: 5374F784D4265EA8FC2550A2F44AB3151D06B466F4892F1387F594437EB9E2A2 | sha512: 1751604D3A7D2BBB772180D666CB6921B7DD018837BBF3B97C9D88C0B63364DAA3E301DE6DE4B0D7BCA689E31029CCC49FCF4BB3D193AF8DD7A62EB1C7027A0D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 7EA17C926BED173B0E0AD88CA31530C2 | sha1: 98978069297A503BCF74225D9A8FC1F0245BF0F4 | sha256: 87D625404EFF257B7DE1216EC87618A6298B4C35712FDC891C18A76E91722E8D | sha512: 96DE714B8D01925FFF5B223DC44E70A1BB6D84BF82CEBAC62F3D6EA4B9059890746C760622C18B19739AF77EDDD1DDA8A4493F886A866C811F8BFB1CBEE43EF9
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 8A73F488CA2C1D3C59FDDEB34752C53F | sha1: 292D3C2C55626913678D15A4F95FC2D510D8054C | sha256: E629291172486BD892A2DB50CC4B1F8D52FB742C673F30E5F2637FCB4DD91188 | sha512: 78DD29A52A9D5525031957C8F7D2B4CE92927FC14B12E57FC6DEEACA45BAE85875B71A6DB7318725F6DF84EC03E379C7E199D7C67AB3107FD5A054A7637DA4A1
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 60AC85852BF8A9595452955D01126251 | sha1: F70A5F7A1D8A3436531FB66730F1AE9F99623764 | sha256: C66DEED9148283B1F92B409E5EA663F2ADC55A0F3C411D4F76F6DBF67040B993 | sha512: B046DF18E6A4FE7FDB925AE395C5F541810C86CDD2893BBDE46007F47CFAABE05E2DBB9D7428F8887F25544537FEA5AE890643A3D90EAB050A18DAAB80C33861
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 2AD0B956FF0E87EF7792404D82398768 | sha1: D22CF68F81869F5FFBC80AC5262F565539A2A32C | sha256: 1C8B8E62CB6F837B9FD04EAA576DB9DA2CFEEDACFAD949649553C133B847E27D | sha512: 8A06A66EEF1A38299B5B100CC8720F363A1FE72E27794D41C604414D982205479A3E1B40E2FF2E9E76492C102415BE3A401265BE7F9AFC0E66CE28D05B877B8D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: E1043DD083852D7580043EC7323EED87 | sha1: 8C298A502F30CCEB9668497C71AC1AD57F6A0C29 | sha256: C12734490760DEC1EB0734280B6D19A9BF6886B27142D4DE2850D6FEE82FC6F9 | sha512: 395521DFF3CAE20B7903E7C8EFFD0BC009F2B90A8F3C912E4D261F81B34C6683B89B7B7FDD0F2284906C93545E771E5376F2AE9EF9D3FF6757446C475320EED0
tools\TfsCmdlets\Lib\Desktop\HtmlAgilityPack.dll
md5: ADC54151A7A258B79D0787AA89921E05 | sha1: 9F3397531929A704B329D63154B7121627F499AB | sha256: 03C2F5DC7C1754F7E6382D2B6B2EFFFC82B6C0F2B6AEE3909AFA2C44A311D7AB | sha512: 9E5DE7BA2058945E62D5681746700DB143827C0BE8C08C0F0F3BDDE564AA379B69B8974EC8CFCB3E412DC29431F1BBE5CCA571F5CC99009C127BC4054DBD4D2E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: EFA839E44298BDDB7B95F6097AC72276 | sha1: 23A287A94F70A141AFFA1B402817E15272D51CE6 | sha256: 067283D9D11848F9258806D021771D9BF770C5FE0216E05F8CC303A777A50D70 | sha512: EAE5B9C6FF83F9A3881D11487CFF2C6F5348C74A5918777C51F01D9B1077E220BD0D05DFDB9BDBF4789C621DD45EDEEC40DB3CC9AB54C0496D66DB45D2202920
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: F87664C76F6AD13B003DA50A682C9675 | sha1: 8E4EC847A32756CEE91C4D5904121D3598134CEA | sha256: 6345AB0AD8FF8EEEC16F766A241F7E616A2DED5E0E70EC5D1583D1CB57A54892 | sha512: 934085BB05B764E556F91CCE44982BFD4D88A7938866ECC6E013DFD222F56A4EA317D3ADB73A59E54A418B6FFA4C9C25B0769446A326B0039EC8AEA96D303B8C
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Client.resources.dll
md5: 0E01889A6540FC54C30D7257260B3AC4 | sha1: 1D47C6E822DBDD5EABC59C9E15FF3A08706E5F16 | sha256: 5FEB2E82705C993B8ABA574B280A31CDC5AB6348CA5E36C9D1B3491D01382A8F | sha512: 3123898256568D99E4AE69004F5D91F643A34A5B03504E6443709FC2A0DA034C20FCF59990BE8A7642F6173793296252CB239DEAF7723CA3825B47D23F811D8E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Common.resources.dll
md5: A9D5926EE5E6B9EBBD2ED7B8E30DAD8C | sha1: AA551839447F96B7BACE44D923FA679D7FAAB2B3 | sha256: E61A650F349465C245277680DCF121DEF9D8B7AF0FF1F9CE177131EFB640E5E3 | sha512: 51D6453CF2946B4AE5B44F6556F67B65F1B45056764D0442A5D4576960CB8AF63A0D5180A7E163C02812D09F46EDD0D09535BD162EA99172A05536F653E56455
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: BFD2A4BD53F9DAC40A201224D2E12DFE | sha1: D722FEA741F5338F7B62DB63654D15021BE31A19 | sha256: 4BE78B367B9E10325A3566B53C695E84BB9CAEBDA33E8D23030FEA7D5544963A | sha512: E9CF2A29F520CB1A116CA0603765ABCF2D3E1F11AC88819190E9400E94B43E137508B67A2BC617B0774F102FB240924C743D7478EADA6F200C2B22EE3170A7B1
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: DB0FBBD7CC63FD890E72560270ED98F4 | sha1: 5AD78219F2C3BB29B211C492126A2F99E230C24A | sha256: EF9932E0765F4CC9C6439E72764B18218EFB8F1921D588C0C0660DCD9B1E069C | sha512: 08719635F5C1FEF04F7B7A1592E7E50B6B9625605566C81AFC5F17A6A880E2BE1333016603A528C8EBE77A328B683FB71DA30C008BEAD3D831F74EC63956ED29
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 26C30D9A37600D0316F6B80C3B10D64B | sha1: C0D23B83A7B952A3601BD782B050252557E0B552 | sha256: 061D4CB2EF469111005266C9C07A5F9FA4BB8CABF3FF89C61F832A21BD25DCA8 | sha512: EA14BBF41C3D35DF1E4C21B2DE8B36E9B84430241FF92140BE72469EA0E0C2C900E703A40C4BCBF16981F9971A514200D2D485986E5B14B134EAB488BA2BF9CC
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 4A4B17A5E8EF8DF0758BDFC249377B02 | sha1: A579C02C326185DF7902E2B2E087242DB6D9A88C | sha256: B2E7E0CB865A102FC015472AF1E284F34E2F4F26261E17946098B0AD48C7EBDF | sha512: EADD7826663A312E7D728164EFE005FFE35E01441854BB2832C239A2F4410925060C82C39C9ED4CFE92FB78E6756CF018D8CBB7A6B22E474079FB3E252C1BAD8
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 5ED5150B6EECA6C3AEB691DEBD0D9073 | sha1: 8A82D62F4BEC391F81547311877236668C9789D0 | sha256: E6F807DF722F4EC3C4B480A40F9A072E22209BB5EB147166EEDEA23678389226 | sha512: A0F4137AB7F91432CE59DFA1761EEE373B1303EFD030E184351C8538F0BDEB72232C90F9BCE8600ED56A526EF7AB16AC6D0215FA777C42BA67D7F857F6D5B23D
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: EAD0157EFB4A2D9A02838234CD5D04E7 | sha1: 18436465B46220804C99B6A3A13062868736CFB7 | sha256: F5020A9A044A6A3A3217A16B0442E916AD10193BB9A4952DE20F051578AE9828 | sha512: 9E16771E18C54ADA6F3972C8EA08D4A713A2FB4EBEEA184D6AE7C592D42681E45E78D1B1D596B9A7EF6DD15DD328390B4E90168FC52857E5DBA8A1E6199B993A
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 632B2251FAC798875EDE6B0CBAA9FD6C | sha1: EB92680AD8222490660A138D45601DE675DA9BEA | sha256: 85F0703771DA1306BDADD119D6FA7F77122AA3714CB6D2FFD3AD1D77FB5A221B | sha512: 5C27109953F8E8C7AFC023D7A85FDE851E8050E5BEBF7883C25180B1C0BDC9CC06D7DEE3955D14485D6EDE05F23BBE0ECC16C0DE81854E4FB4B5CC6E0A041022
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: C0224106677BF7C870BEEB7A9CEF5D3C | sha1: D11C76103E620877A0DA5C5F9282A711399732D8 | sha256: 4A75A39FF44696EB38A5AD6FC80EE31C7F25BB04BA42D4C7BC0FDD76C76E7AE4 | sha512: 039A8ED63C282D8A362FE47E95A1498515587A4011A7A331E4B34708169C5E6A227CC4E4492540B65B21C12CE4C7516445BAD938DA4E96FFB4C2D523BA8BF7CB
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 98BC65A1D2DD4EE7EA7D5939F0FA1A9C | sha1: E2A9C5E8774F062717A66E45304E54C71C68E93D | sha256: AA05B7CC9C39715739B2F3683367915F974E12CCEAD7AF0B99B65CDEF31ECD3C | sha512: 6925954DDED4C31DEB822117C780F9CBEAD860C62B6F926E3595252FBB7ADE31F78AFA287D46E96D26ED204E54E113694C5C23241E292599FFF8A87EAB216200
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: D6ECB581D7BAAAC1EC7B6A9D99719A2F | sha1: 48594F599CC3A798EA1AFEAA7529ABC56FEBB980 | sha256: 0243E2AB925888DC262B8BC4CD3601F6A19163455925B938102519F7E688FA13 | sha512: A9ECE215850698BF4F8ACFF4A1D5C62C4BD94274D8885C3F9B5216E2D46378A263E07600A1B70DA4B4E990E91A74B02DCEA8C43CF9510FE8F601E2197F1021DA
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 71001F7E1A7A48E9C326B77426EA1E89 | sha1: 674BEF2F8A63A4493464B116E3A3AECFA65411AC | sha256: 57AF7A14163F11FA5EDA8853A47D70BC8F77FE10C9AD8602FA98AAAD5819CFDA | sha512: 27A3B4FFB147A2167A3404C3DBBCA166879DFF08F721711F38ADCF43E02A1DC873B0587CAC4DBB25E78003C0020ED5CAC7559DF11D7A7C4897DA27E6300DC9AE
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 102BDAE5B0830C2F9D7DE9BD00330685 | sha1: ABCD099D2C160FDDC68F56A2C2FC1DAFAFD5C762 | sha256: 898B8D85C2FC603BA5276EA602F721066A673883A75804C3877033C5601E1E9D | sha512: 5649E1292B36267A348CE071ED327BE7B6D2C742A31349D2947C67F3381949FA77C45F8485868360BAA271663D0414413883EFD15C98533C6DB61E4BA241D314
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 98285593A7ED3AAEEE566FC5FB9C319B | sha1: A075988EE06A045C66A5FCE0BFBA9BFC9DF66133 | sha256: 26D79BBA61B563251C42EB0CCA2E5AB5875564B77BB7BE6EB867BC676BB804E0 | sha512: A3154DA6A4CDF33A38702996354D4B11147FD56D4572CC43EA25EE022067D0EDE064BAFCBE472551B0DAE9BE77A31D4BE9CD424ED87032C3E73CCEBEBB4F8660
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 4BF76520DF9D3E692F0CB01FECA61B73 | sha1: 721C893303BE09BCBB749194B9AB581EAFF42AFC | sha256: 154C343067B600F0BE406E158F0378D1E5606734B61BA6B084D419DC7FD1C28C | sha512: 79C33B8152160F857E394164200727797903E689D476185E0A3B6CBC79D061B0A576CF58E34FD73152BB4E15E89D43EDAE887301B56F0F5AE032C56C883F9EF0
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: BB3F5EF898286309E8D324A23B03EFC2 | sha1: AD859F80B028434F195A1080C24B1B277545639B | sha256: E88281FF01BAE17AA3CC49FAC5547E874AB81E112C5C9C5E627CC1B5CDF04085 | sha512: E41D3B491B2D42BEC2975149610F9B492C466BC3D769DAA97A304079AF47DA51D5F1878C654AB187EB80577E4171B94AAF2D9E3DE31F187667F528A70A94BDAD
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 71265A55EE33B3507F7825FD3332412A | sha1: 69CF1D1E37BAFBB0CF978E6095FEC7CD1FE52E1A | sha256: C7A9BCF3FB8E6BB4E2FAB68A9BACD24870BD3482B294AEFDE9D62E86D6C822CA | sha512: CFBDC3D9A7DE80796106B504C0C4B6AAB4AE0B36A57613557B737BF1322212A334598BE21C2BD3405D0BF26ADFF2F2C1C271060680DE3E4982AB3B2967D0E181
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: CB5B851427BCCA80A6936CFDDD1D5EB8 | sha1: 5A36FFF2E7654BF4EB968AD1C3DD6A603FE113C5 | sha256: B4DCA74235C34D3986C14AD77FA826FDCA68B1F94737697E3C846E39C65BBDC9 | sha512: 3030847750EE959DCCFC462D9AD0B67D3A29EEF970C37A349827491BE14DA5DA6DF940BA921621D37C7F8F1A512DBC38C7E74C0E11B177A559EFEB60376474DC
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 98D4BE96FB416E254AB79F1C42935373 | sha1: FBB98B0C80D0745E55EACB01E7DD3AF866BCA280 | sha256: 3E9CA5869B4294AC1FA91155720305EA06B9006C1BA03CA9905BBD50AE1C8023 | sha512: 66A891DB6A016F804C25D417175600B81F4F95FB35ECF9FCDEF0928C7A3705BA794849AEB8A42637D44E4F3CCAF9481562197B46C83363E159C27A7AF3E9AA54
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 7ED1DEDE18E4B1F1A1356A40E84F585A | sha1: FF0971F96F5505D48D7A2C85DCFB07ECFEC15CE2 | sha256: C9574C6291282C3E84F29D870115C9882D8DE570C74C8A72F569B2AE4896FCA2 | sha512: ED3762CCDA44AE86FD7373DB2CD67A679ED31D1F7B8652E5D1C327093FECE9D576B6A458A4FDB0F96E782F6D2789420BF3EB21B93B55D54258E567379FABD13E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 518171FACC9C3431E0C337595C4F74BA | sha1: 4A2C14A5F7141BC381077075172FB7B867D6448E | sha256: 8C3A04EE810137584939BA7071B06BDAA9633F0E5CE04804E3268B10BB88EA93 | sha512: 57313513B1188801EFCEE3001765CE7D1EBB358D8D30D268231CC6BA9EF1166411559FFA89983B2269FF273F3DFC3C6C0DF169509C6148456228ED62085B7A58
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 9BB8D2212BBE7C8BFB8C9FFE58288D2E | sha1: 29C0B52E0875920CE106A89D7612C030CE8986C9 | sha256: EA55678F7F2B283B34B2AFEBD7C969B0AD7F8C9039A891A9542CD7F03E61A218 | sha512: 9F268A981417912AA5C96DE4EDE0C686CDC411AA03573F82E839EEB4A3AC3DABAB25CBE66463A8746B1FE296FC20D28D4981C6EAF11E8854996E38DAE939FC7B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: AAB965AA3D6F4CF12B0942D1F3C1E7BD | sha1: 171976111F8A563F6AED2B13295917FBEDF5497B | sha256: 772503883EAD1CD14B3E91E410781948C3E630E32DB328B92A9A524235DE5DC4 | sha512: 53776E6316AB176AF155232ECB6B13FA763A8D4206C0744372B517ADFB3597ED26A97429150BFA7B21BD13D29885C0F702FF465B0345312925AFE55A61ED0266
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: E494C8B739450BFD95B01E06BE0E20E3 | sha1: 96183499D4CB992B9B0DB056774D0BD72A9F3C4C | sha256: CD1B26B0F4CE5A416A533627FD9A63300299563329CC96CA4010F7FFE3FAC494 | sha512: 0B525D61A15402BEB13FEE2F0609E3ECFCB7D2B9997A90EF6EC0FE6D5442B3751C27CCC8DBA02E1B294916FCE7768F571CDCCB34EAFB88347C45A3F9676AB7DD
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 53B4D384254764D0983E550321F22D62 | sha1: A23ECE6B36D95EA75D03C97664F3684C1391B366 | sha256: 12E87BD817E4B528225548268174765CB6500A2168BED9681A1956F7F14ED4C8 | sha512: 4A27FE1D486A2ABCE83902275F18800D8121B92B67E5854C3D1FEEF086F373F8A3B03D97871A815B13AE2331DC39EE80D3AEC2A76CBDC78638C783E81BC503B4
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 73F2ECFD603E65CE51D9F8C8E6925467 | sha1: 5703B8B48141BDF82BA643A50F85B2311A84610A | sha256: AEB64A08A04AF78E4C7F7C6D81B3D97DDE3C30FE0F505D49FEC0C44E2D6E59D7 | sha512: 2A44C056235305CB5078320FECDDF86ECE08ABF59C3403D272B3B4AA01101E01455B2E47B90E0899FD283308AD439207E34C57F50600F41635FD5AED3458EF17
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Client.resources.dll
md5: 53BE9E0E1EA300B41B14B4B0A643CD8C | sha1: 230655142461EEFFB92CC249A81115DE9740D409 | sha256: 994F3620B0DA6E704A80113C85D51F9834EA02CC84446DE071E0A0C76B902E10 | sha512: 166F38BC3351D3CE680285B87766F491DE4AD2FBE66AA482B0A67223126417BDA5FBC86FC4CED1544E9ACA729149B1335AD7085ACABF909A88B8066934E457E4
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Common.resources.dll
md5: F7EC16D529FA0378C7A18D624F052AE3 | sha1: D89D1B195D2F069E493D17FD17A007E4B1F908AD | sha256: 58F75D62C528EB4850EF087DDCE371E25806BE3D181DD03AE11C52E29A6E4EE3 | sha512: 55DFA0FFAE37CA8AA7E157894E8A163DD61B5FEE5E050B5E0C634EA299F618D9CCBFF1EB0814F11FB8AE77B73970132E0E8D04962D1792E287AC8070C47D2376
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 774047AE20DB759F311255098A9B7838 | sha1: D146EFB52C21DF19410D851F46322DD123E4C89F | sha256: BD11A19B865B26EF6C25645A0D53B970934D111DA0ABE757B5EC9D735DC97877 | sha512: CB2D23AF79290A3B4C732CBC546C285674D9FAA8EA5E34155553C593165FCC821EF8C7013B87D03D085CEF66BB74113B313F10030F766461491DCA35941C0D57
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 82AE38433DD14AE22B2F38DE42F2EFDD | sha1: 41CC6FEB6E9605E0763FD30158E2FC2E1706A15A | sha256: E20EA9659A14324DB11B2E95E39137DD8E2075D38E6821A74F042FD53E114906 | sha512: AFE46CB7042CE22B2576D127223749B5A529AB8B345A85AA94BF033FBFA900D70C1D3835433C4FBB9E3299A2865408DEB9A022C887B6C2F0378A30EA5AB34D4B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 751B78E98AA4984862ADB559B441D084 | sha1: B1A7D438B912DA50F7E64B806B1C45B5924662DA | sha256: 6D693CF210BF4E18478485DF927B9BB8FA9069FF1C8F78E367432318D32AE29D | sha512: 3F5FBFF5353F072CD93C2971CD0095D8EA53A2444FF6AD16D87DE9AA3BF50F0AFB5ED926C57FDEE5EE07DC8C99445CF3244BEF8092EDE951AB862E73A4D5E8AA
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 92FE58D1DFAC0050DC66062D5C44A649 | sha1: 7D3FA8D69E6D5012A45C4A5E19F97039A03E0FF9 | sha256: 893738DD2ECEBD37FA4E0D36392244C23E1B91CB63A861FE362DCC22CEC76938 | sha512: 50B3639385CEDFE9619C6B0914284BF048FE3B00C04DFED294B29567586783D1BB01AC121D08A6B0D04B54D356B5460DB696E872DE2A4971AC7218DEAA90D59F
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: A330935D5E1679EF7FCE5BC3B645AAD9 | sha1: B220CE3125D828FA245853F59BB97FF303D112FC | sha256: 21225C57DF8F62D32C1B1A5A7D14F50587119DC5E713F64BFDBA349EAFC72B7D | sha512: CADC1D29226DC55E77FAEFED73F37BC38F9595A7C631DA6768EF9A1DA0A91D501DEA611B44CC41BC05DC9241B038627C7DE4F854CB2C96F0C4B3F2020E2AE593
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: D4996A07EB83A648177BD617E696817E | sha1: 69323E976E57982288926C595739C5E51657FD98 | sha256: BD8A7F10B4F2DA021482207923134F6C156D69FB58D9B7E18D25A26C8DEB1E8E | sha512: DD91C7CB5B1F6ED442A6BA15527EB65583D2653635ED3CEDCCA84A7ED56490C61781FAADA948353B041A6165910997C02D22C83F8BA93048390341FBD956FA1B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: CBB39D1C1DAC84C9AF0FA4A3F60BB813 | sha1: 42A9AFE8815E6075FA9DD25B896EE0052D0B4761 | sha256: 765FBEA6DE84A8A50AFB944C7FA7722E47A9FA27D2E81CE53D64D885785DE81F | sha512: 6A57D22A0DB1A3346F06F961FDD000039F49154D8B888C249D28CBADDE5E0112366BE609BBDA63AE112C81C59E351ACF7A92B0F0997E2F0AE4F3004E81434F9F
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 74C155961A572CDD6FFABF6BA9B417D9 | sha1: 93070B71580C161B5915D57F1DE2C07F1C5BC820 | sha256: F31DCD4CD5551EA378DF8F682983C53D7E6FFF3752EA2142E894076776E98320 | sha512: C72B446A94F1610C8255983FE1BA6D22AEE555254ED2AAFADC99E933E495A3AFA8A5DBFDF71FD0188CA2517FB471BD6167177FDF727368BF0FF95919871CB6CC
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 28CADCE14DA0CCDA211DE3030FB7287A | sha1: B86E9EC296D6F5BE9E661A13C866505D08B68F41 | sha256: 73F7B7B7A41AFB4F8DF0D72632F78FF15C92A89A640CD0B3171356377A0CB8A9 | sha512: 992105E90DEDAAA1FBA8AD546B20B7F7F3A8A39AF2AF8DD7F3E6B766C1FB2851BFCAB6A7BC0A0BB0CD17874B7097743A629F0B869104AFF6C11E84536DCBF6A8
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 9E2EE353B4D64BD57BCABDB1E600ED2E | sha1: D03D9F5CABA199C42ECCEC8D6A1683EEBD72046D | sha256: 25942A348162E0450A65511807190874E9810D0E8880040E46E760B14706A58C | sha512: E5204BABA7197C3C98659C8B6BEFA3DB5A700CFCA025AC005D69B3CE9C3C923958539D29F56CBACE926A7CB18A7497BD73B5BB0679D45BF239F65295D60EFD64
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: D09A8A4FC541995D21EDE9B88E8F1639 | sha1: 434068B2B2607B8EB5E00BC73B5F321B1123C93C | sha256: 8A05A00A9E74C4DD19A606EEB8421BAA38F389363A2782EC43E859B65CD25085 | sha512: 0D68510CCABAD3D925AAE01DDF758DC35884C06EC41AD726C5CE9BD99B065DE65C791284FD488EC2B7B8A8C17895DA6E83912E8024F57F13901412BDF1E53E4C
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 380A8950DF7C816EBD535701BE695590 | sha1: 0B25634A7AD085C8FAC4752D413A04B8743C9948 | sha256: 9A57A471D5F74ECED7BE7E2D584E0F845882A5B2AD3BF892E06A2EB6B761B7FE | sha512: AF6867DDCD2B02CE6B4A676D2019CF6E8DA4338B21B262BED3560AFA8A993B7E359141B6FD8AF374D0413B24EA24A1173EF178AF9D520FA6E21193C15EE7C201
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: F6DEF9C0ED0BA9D52200FCD44142192D | sha1: E937B80102292B117E259418FD5E89099600F90B | sha256: 4689337043A518C314DEF0331180B9BE62DA174344290B905F8F9CA78C1C7F58 | sha512: 428A7543DFF9FFD60375A35DE9472DD24FD573EBD4C9522DB362A0FE8690D48FCEA6D21A104CFF21EEC7DFEDF897D8392D6ADEB9190BE0C397A453051C5F84D4
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: D6ED3007C11B62351E8A6F2FC7F93209 | sha1: 7A537B191D7EE30A1CA3BE42403B3891A17A676B | sha256: ECF95DCC472C3019998CA54F955D84A6573DD917D3C30A88069008457B243CEF | sha512: 555518A0947119DE33D07C640C9F384419B459F333F2DF74644035A4885FE82E1A9C0270332906EF5B2EE5B8D7ADD06AE189D630D1C890F3134CDED0C9F80307
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: D59D31BF24CFD5A742255AAE51B807ED | sha1: BECEFAECA5F58D6FB268D02B23A8B205DD5DCE5F | sha256: 172D28A83F395E881CEE0BDBEC3307F8DBED25D3F1E10D9D7D82237AA532D4CC | sha512: E800924225B0BA1C39EEA443AB13773C1996CC6E94EB0AC19C8E25E3C46B78F926E204B0946D8D05E56068FA40A5BAF99696F47D2E1A8ABB09100A9AB868D318
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: A84D0E413ADAECD02668AC184C7DD523 | sha1: 4A9FBE4247FBCEF055080FD007B774EA80ADAA12 | sha256: ACE5344DE0CE2FAE39F7C6F3A278FC8002CD94AF0C9C43EB7CF3C6D0E3074032 | sha512: ADB958C877B1C54C309E7C45B485F23396692F4880217AA93625F292CBA618CE56B91DB051707102AC3F8055089D2D6741F49470DCD3DA45C77AD67F3D18EDB8
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 8DB7C690521FECAEF82E5BE699A80633 | sha1: 7A10D4B776519F9D7CC20D883911B1FF666967D7 | sha256: 11CB6522CFB7EC7C644308BFEC044081BAC4CAE952B5B82466F838680E34466F | sha512: 7CA9840220241B2361E57658380B1B5EBBA429C547B9C3DFBA30298AA2A15E6C79FDD5771AC1B6106654CA1262F37CE203689AB5F11666173F174710BD661667
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 6E1E010EACF13BBBC82E70E507E02491 | sha1: F50C695A86B17DC8A10927F8743C87B5E15A5444 | sha256: 14BE1A124539324493B64C3780D4609BB2730128F5B4965DFBB8BA380D9FE447 | sha512: 24952A384970E130BFB1010AB0DE03375B66A523DF1C0404EABC39BC42C4416506D47161494337C570BFEBB12CE3FC34E479448C0FF6594FA249174B0F07F913
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 0269CE8881E72670F9C4AC15B1FC57CD | sha1: C78FA42EE0F0AE8D8A2CE19B0F15BD56535A795B | sha256: 841D0735A4A6E610B5CD236FCBB021FA26DFF5B8A54869E8E35FFC23D1B018C7 | sha512: 0266E5D143A35FD741C33DBEBB31BBD0554B37904D95BF8C81BD975741A160E5F86DC9D6AF90CF66D5EFA3B346451CBA1176814078F09CAFA1A4B7827D6A19B5
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: F1B9B8C42E4F50942132373A270FC45E | sha1: E374E80161A870F3C85CCCB8E29534122CF46C64 | sha256: AEEAA3CFD54137129740B5E6D656616C958209C835A2D093CC1CD4DDA39B8D8F | sha512: 9AE90A34CD0D9DDB544D477A2D661B8941EC590590D0F8F55FAD06A13528CF57E2A32E2C97574A765763DF6FEFA8EAA768D09BEEE0AB091B2811868C2507C3A2
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: DA6D2DF3A1417C9DB647F0C6750FEA7D | sha1: 9B249092EAA34753723BEEE730EFF0B4BC5AA420 | sha256: A8C3353EC1D6A569BF1AEDC40627CEDA7D398B0E7186BE8B99BD7A11068EC967 | sha512: 020CB6905C511D9BC7D94A78573EBD8F78980812FC0082ADB471DE941776DFF91618D79C14CE3DA9C8BFF3D539871E8B13EED4AE52179037F475BED6F50D99B3
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: F2CA9B2D90B3ED2EE43520B31C2C98C7 | sha1: D7EBB7944B67AA36A20879798ECCA8EEC1E8C2DB | sha256: D525120FE71B468C152F49ADE2EAAB5824D27ABC864FBE7C48CF5A5F41CFB833 | sha512: 9654403AEF91BD348E550013ADF3BB4F36ADDA08A3BA49EF88629BBE7F79E6F442DAA3C0DB06637CA918ACE788F313B1D4E13FA66A3C38AB3D90CD68F74A9B5A
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 66DF8C66F46B80087751F685C8FAB9B6 | sha1: 928C0C46E829C34FBAE3AF13F16B7A26439ECCA9 | sha256: 8E732EC69E4469E932F677A4580CCA5710589148370B16E8CB4256DFE3E32660 | sha512: A4702FAA877F51D1E7F3EDAD1C89E6AC92F2A83EC0279D36E5AF9D1DD71EF8192FA438B2D07D806554E57E60FD4CD88DCFA15A355B65EC6A22AAC8065E831860
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 8E6F6FC0A4867B959A07467CF4AA0D35 | sha1: 285327E1AEC016282EFC55DFC44F2C602E92388B | sha256: CB719982D24420E5FA5AA693B589520F995C53EB19BD540B78DB8B146899BC32 | sha512: 2A5CC27AD8E873F405F6F7E62E0BF97EDC1149D8CBA578E6926018DF61DE9441B3E9A9DFB4E42B1F4A9E384729FD64F737CD54B30352B3E4F4D28EF6EBB5543D
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: FAA4F075390EF7C27B3C4BB8C8713FAD | sha1: A42B6E58F34CB62DF4320514393D2616EB373995 | sha256: 570E58457976AACD41F692B440DA0F766E1E61B1BDC8501FDA8F0539E760EF3E | sha512: CF6C46083402475C5A39D530AA08E8EC75B616B25832612983588BDD9DC582326464C485F4EF429503557F48E1AE98A21FA77143887BC75EFE7366174D8AA927
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Client.resources.dll
md5: 51031F6AEB37827A12AC10DDAFCE7338 | sha1: 6D886F12745DB69B9007E462F091BBCE1814FD10 | sha256: A80FF0958C0AF7FAFECD5DBA132A6761E993694DFE16F82337F3EFC6A280CAF1 | sha512: 8994187A0D3C1A510D8DD71C6DD0E6C67313CCCD1CA0F7DEB01A8C487EBA2936F3CEE67DE868AB68599C47283F3090FB17EC42C5CF6675C3FBDF1E1CA7B001C9
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Common.resources.dll
md5: A15FEFA8E471C53D647B5D2B0418842B | sha1: C13CC4E8616DE0BAEE510FFC3F0EAC901976851C | sha256: 7557E816FA8BA622057A682A2AAD1BDB608463EF8D8451E813789FF2DDAF0351 | sha512: F79747005E89B90D416D38C87F7B4E0D07B608D802FB815169C5616E3D999CFE9BEB3DB0AEBD31F5D8A400634F14F6C1F4ADEAB03B4AE09FB060E80ECFB938F6
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 9829B918FCAB3D9E408C6D1350618880 | sha1: F506A88AC2A7ED4CC3309F62349776C551B83F84 | sha256: A31CB1927EF664CF50793AF75067B2289C7465BB649973E74A30B017AC150111 | sha512: 988C82A67FA0E1D56633AE0ED568D21C41079DCB4E73946D030B91D605BD55E49F56EC7ED85116697D262779A8D44D19388CF235CE31B020551E4ECBC2FBC51A
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 0739CE9D72471CD1935BCBAFF19F69C0 | sha1: 59FBF0B06956B68F6B5861FC47EC835FF9EBCC82 | sha256: B350EA24EC3FF71593C23B721CA138EFB30586FB88B9599B4E2CB4E9E108B4C0 | sha512: F30B4BEB4BAAD3C889B6824B4AB09BFAE292A36A16CFDC330AD26AAAEC5EFDCE9A74FA580C18C88FEEDDB7B6D360EB0298FC5F92A1801E833EFA194D637118A5
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 3B988FF394FB9BCBCDF9B39530BA49F1 | sha1: 92362F194FC4E12F106A85E12447D18EDAFB6A51 | sha256: 6D50B87F62556E871FD116D2FE4C3364C04104C0A69D8065C74B14C92F6D79E3 | sha512: 110475CEF6F119A3CB9302AD7E673EBD674F0B4165972721D01A674BBD28CF65E56938974BD65010925B3A67E49DBA3358869A14F5F9172EE040F070C5AA355B
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: C3FD3346FC0676708C4A0326F2C5FC55 | sha1: 0DA99B4C63420E6C4DA564C4D5AE83D73C6CF575 | sha256: 55522608F4F9C08E3E77EB4E761DE4070F992FB3A785C3B5941A5182BB2CCFFE | sha512: 023AF4DF466884284F7D0A7AC373465AFC60B2BABBFB7155010D6A874EE049BCC98EF36BBD0D50F6A8B8D6F6FE29654E5566795E8EF24247AF82A0784EF937F6
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: F6DF1944BEDE89868E02AC138A816994 | sha1: 1CF760953C735F874DC757CB142E268FF7DAAB72 | sha256: BBEE229019A258A0B0A2374099831A3AA765A6BF05AD78684E29086E5CD2124A | sha512: 3C8E7BB069907E75BC34E7C3389EC41C852B9AA99C8EDE3A50572F9F48B873FA3C88B5DA69A3099294C0F83FDCEF56292AF832EFD57EEDA9D7948ADBA156A0E2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: E966AF11FEEC2639A0DF486135471827 | sha1: DDEF4A0C979A87634D81BD8B0F9E834C7938FA08 | sha256: 0FD76CC02A2975F66829F067DD03117C51B3E5C8A6989AA949370219022E9413 | sha512: FB317FF92611280C19EC20F3BEA949D1C295F7C4437A8EC7B7D10526332F3F3C20872E64A89D9C429DBE38171A0EFC4FE7527FEF9B4054EE8B0860594565D0D4
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 92E77D0500B340F58250AD57E40431EC | sha1: 4F5EC7BA0476DE9B1A1830E8B8F9E7A5EE89B91F | sha256: 76C77BA42F7C7061F1A41BA509DBE7EF6B6D31D6B2D74EE36816E541FAE3E940 | sha512: FB659E26438FBD38999898EEC5A4D4B90812942A9B2BF0D0B9EE50964B811CBCAD2490DB0A03692637A4AE80F44B9CD8F09490A560E89EDDB0BBE45C3C93734C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: D3EB8C544F7E8D8126C3A07CD93E93FD | sha1: 34C3A97012796752183E3B760627DC5A9628E302 | sha256: 998273CE31A64DC7019920B64D69DF429BB03C5B956A087AE986D56141CCCAAF | sha512: 547B30ABE422F9ACEED70C7BAE1FD700620CD1784E7FFF40438D15AAEA540786DAF8328B1A942377733380A33AFE669E8637DEF97241A525BCF41D65F9B9FE05
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 5F3DBF873EFDDF2D836DC382125A7879 | sha1: 835748AAC3104943C4404D417CD44F8190010594 | sha256: 371EBC3F463BC5D4501F215B8FA6FA317F1C9EFFED60BE9DA1358CB5E0E86FEB | sha512: 8364C47C874A2B100FFFF9078CEA6E14D291049F8674BFA802AA802783F3B73F3B39BA01139C249327DCF986B96B115DC6EE40D56DF94A9222BDEC1B25F5C676
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 3C775E6DACBAA56C6DB78B0476DB318A | sha1: 02FE80A2C3F8149CE55BD2CFB061F7671FBCDC74 | sha256: 100D7E778E1C0C574E37416C60EE06BDE0A5155EF74AD3FE3FF3B524C09FB413 | sha512: 248C1ABF10158328BDFA29DCB6901A27DD9DE24C07CCA8E2EC366B4D87FD28E7180B51B1705E1A4251A88C079906B97F78A1B054F274EA9FE7DC47DC860F3223
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: F697AA84C184866D2E8AEB781BF8A6A9 | sha1: 76C67BC3C3A36ECF9A96DCAA85C2B789C5E493FF | sha256: 163BD848F3E2C9C2BF3BE335C7266E926D883A0E25BAA03BB398F2FA08FF2620 | sha512: A9414CC0694597E1070BDEE7BCF05807587388A1BA23B495591AEFA2A9DF206DC6A59568EC68FF1F86FB02BD9D961A2355AD11508EB948773454E14F193B2ACD
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: EE79F5F4BFF2765732A8B1940264780F | sha1: 44461364FFE6DA214CED5DED425D25131149B149 | sha256: D79CF7446F2DB0BEBF60FD3D7B14F194596184001E20E0E60D72CF7758BC4DA5 | sha512: 2AF73B34B004FB65FD26D61177C56A1FDD350B8FF1AFCAE8D3C3B6A179A3CA84B21E1104EC31CDC61D04C6E7F3904DE6D54F3181A597C654B49C4617E92AEA5B
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: F9ECCF6E6CB292210DC8153E6F036397 | sha1: 169230DA4DB0B36FC3F9413E48ED10FD2AB05ED4 | sha256: DD4F7CDBF342F1802A8A3E9040DD0DCF9EFBF56D170BDAE60E8FF1FFBACFAA51 | sha512: DD8CBDDFCEE6B87CFC668AA94A63E19D3ED5F070227E5A092230519832E56C98FAA153D88FF185F9E86A6BF711FA665ACAD0B09150E128970CCF457B6C2C1B18
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 1EBD0D56107D4A01929A2B36D373C611 | sha1: 1F6EC1F95E5A30C454356262FDBABC0DFA657BCB | sha256: 87DC2DECE02B2347511F5CF64207C8C9B553E9BA5CEFE0F5C6420CF5F58FA27D | sha512: 34C4A0899D69C56E2C02B615F2276172F8B1A6B8D7DC3A3CEE07F9FB8852A6D3FC6425B54E5F16FBC03D8D90E776F347EBD2B1B3C58EF0D5995DAD191B943DDD
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 867B080D19C6497C601467DEB8483381 | sha1: 4C91E3B610CBB1EC14DCE05CE71ADF8FFD685C0E | sha256: 49FDF035F830DE8F0EF51533C916E30A7C385BD72DEC3A4FF4823F80870FDEBE | sha512: 0FA4A7873C4EFA29967F08983721C38425E50889461D1D4AEA544804529805CF36AB0F86AC717727498DD3010C1D805EFDE6412DD96CA49013CEF9C33ABE1E95
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: A87AB554D1E1BA252FFD47A2B6DB1326 | sha1: F4DCE1F0FB045AEEB69F44290B99A47D3E3409BE | sha256: E8A8F2215211BFBD5CD7B824DBC9522FC025060FD3B5679D577421751D7C25B8 | sha512: 0D0EDA15BEB23AE79A208CD91B34023365B9319D2368F2028E75E6CAE04ED6991111C3471D5E8EA5F19A762283205B9908164ED6648C62CC7F578D3BDE086FF8
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 67A4B1852EDB63332F02C2506A7100C1 | sha1: 02682ED9593D620A45A5FA89304E1A4531A24FED | sha256: 7FB937D902D949AECF5C3EF8208A1FD622704ED57864ED81216CCDA1778895C8 | sha512: A56EC2F5E219B2D77E9CA3FF8FDFCFBA8C32ACCDBB0DB58B337DCF7C09F84D49266FCF6CC70A56A609DA21B243A82665C6DB349E68D17A3759863F229AC83990
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 302A41E63F9DC92EFBE7F67587F08B82 | sha1: 12ACE26436283A26C3EBD7A3B6FEC28ED7FAE6C9 | sha256: BF43C5CC693FE14A8F95868FEFC738E09EED942062D800EC79879641870140F5 | sha512: D961A609385C9242AE6B7365EA88F3A2234C8CE76CAB4ED9726A0C297DA3DE64A454CB11112340D5267B7FD013DE605864DAF27CF2E1093153D451FA4B8918AC
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 2536A55D8163B5FDA7BEC759A41EC0BF | sha1: A5F5D185A1824086614057B7B8D51CC9B87C782E | sha256: AA5E05C650E9D049EFCC60DFEE6F8946DA662578B0AD36BFC5845C5AB39DB311 | sha512: B8105ED553C44A71EF7DC8D426DEBD0A8F6032E8D11A86A4F9E27D8216655A32CB671B35A889B07F983780895AE85F6E3257F99486BE58E4EFE490461E32554D
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 74F74C1F1CD9191A0645A8997F3C7069 | sha1: BB26355A5E37DF5746CABE2680221A4277A13841 | sha256: 0A2361533DD38FAE01B37A6CC4DB9D96ECC5817F8726C8E5DE5070E5030BCA20 | sha512: ECF0EF33AF4E0CC1D4918FEC65C6CB42D119727018C4C784B9349C57CD746A27450824638D359F16D60973F44C2491F455416423FC0522B7BC8004634D693D7A
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 3503876A6184BC69BA2826138D453F30 | sha1: B4090B043D6A211D0DA80953F35A02EA05AD3F7A | sha256: 7688B29C51C7CCD959D2007ED62007AE1BD73E5EA027ED0E7BFFC34E74155068 | sha512: C57D0F7D69F87128A7C94D1812DCB3AB102BB93E9A425EA44AB105AE52C5102144687E6881AB1BA75B8B03D52BB3BB3FEED4F1087CEA46CAB29D94096DF2F1EC
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: D7DFC4B31FBDB20E02AF123E3BE60817 | sha1: 8543631BFE96C603866E49FCB56688156FEAC407 | sha256: B63716ECE32EF07BFB8410152051141492504D3B86A3968B56203A6F2B5EFEC0 | sha512: 9AB57C3043F52288F48271C064C1986EFAB22C126C5BE62C0BB43BE98D166F0A5A4DB06F086B9D5DB1AC5319B69AC4A69306D0F640361B1656C5AA41926591F2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: DD541134445370F61F388E26FA1C8DAD | sha1: 5A7CD43456CD8BEFE4845C520405C221864FB58A | sha256: B0C78255A096D099071D2A5665371832313D9B7080CDCAABB12B73529784A799 | sha512: 80971082505251CD19A8D90AE41451C69880282E2DE3AB7C95BA868F8A2423A41982BA6AC14DB56320CD80E7FF754A2DBD47E63482979052C66C8CEF0AE33985
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: C74E33E33D58B56EDC5AF819715703A8 | sha1: 58EBAC27400FB0F7E7D1D6A024531E872D327E3F | sha256: D4BF3F4A00D000DB1F18A409DB04DD06E13374522DFB2C4331CF21B2B40789EA | sha512: 5E9760ED3D64EB8969AAC6E330E17B77D71BF05195E92E379AFC8C2AD19E394C9B65541A0390781C85B8402B9CE1B1FC7C828C3E95CC96DBA1E403A62522F0A1
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll
md5: 15AC16F3E55ECB5415C910CEA786449E | sha1: 9EBDA28E0147387D9436668CF1B4CD5076027473 | sha256: 57515728D77618BFD76C151CF5641899EB82474F8E998FC41A2C23F06A2ED8E4 | sha512: 4D5586DE84D33B4C4FB0CDB5B9FDB9A1E9B4F239CAC205B2B5D1DAAF3F0550CC1E254E2553F3C7D7FDF05DD4C025F7C140CECAFE102FB6F07C8B0082EFFF8D37
tools\TfsCmdlets\Lib\Desktop\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
md5: 53EF912B65D4A7A9BF1DFEAFD47B8D9E | sha1: B4B2A8CF4BA4F68B04C0093EB896586BC754C658 | sha256: BA88C8FDC173695B1A4032E5C1C2D31E534D6EB4118C5F6B4BCEDB96C2497BDD | sha512: 56BC540A3711D6054A123FD1D18C7198DE65C30B53479758EC1B2DCEB384D29E6407F0C924B2FB1DDFFC73A849E36CA16F8C9EF66F9D8D32945CB651742CEAA0
tools\TfsCmdlets\Lib\Desktop\Microsoft.IdentityModel.JsonWebTokens.dll
md5: 056C8871D57511BEDC4FCE5F13F09454 | sha1: F8C85660DA13CAC8D868EA09677C70A65C37FCE1 | sha256: DA32DFFE387BE59A88CFA4D70BA69C48879719DEB1A515DE5143D82F1CA0E83E | sha512: A4F81B67993133C30E5EBFECC753971CDCD9E1A17D4A350F112C474D3CA42DA59546B2F4A3991A97276F59642B4AC5063D6795D1DE78447A4D2CB55522434875
tools\TfsCmdlets\Lib\Desktop\Microsoft.IdentityModel.Logging.dll
md5: 4190EA3E974763253DB14B3252EF2FF8 | sha1: E42A5F5BD2EB37C6DD6592F94F2B19C7AA6DA787 | sha256: 6DC537F3020B98222C944E931853BE0DE9B62B5AACB7416113AF4DC58F2D8DF2 | sha512: 58F704C0F51A5B532B16F15E1397B3F21ACA65C53F2151BEF786F2D1B1CC83E3C6149E54D7EDDCD8F15114C8374232F3ED2E5A5F3237B3B678E73E9331D05E9F
tools\TfsCmdlets\Lib\Desktop\Microsoft.IdentityModel.Tokens.dll
md5: 247C3DF05BE6770A9035E5B993F5C211 | sha1: 68EE22BF0483A5587F8BCE14D00BCAA2204977BF | sha256: E0F3CF1FFE9907B968EFC9358836B806C946230F1224153F0DA79EDAC4547BD0 | sha512: 0F795ADEDCD96A6A7D7179CE8E8A4DBBD6B1DDAF88874C87A1174C157DC0BB6FC02E29B183E80A2CAD4E9A080F710CB36B56F088A46716A7115E465570467EEA
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build.Client.dll
md5: E23773B58DDFF0048455541E60D508C0 | sha1: 8E72DEAD551C31C3F2F7D8EC211B356E5E418F37 | sha256: 60C4B94DABA472DCD54502D1DE6CE93EED0DEBC40E5622D9087B0106D16C69C2 | sha512: 7DB7EE3B58D698E9EC8EDD98ADD823F5AA6587E4421E126465FF80D1CAF95FD7343568C8AB575EB25B913C62E65B399A7B6EDCFD19165A75D0BF53EF4C580990
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build.Common.dll
md5: 6240F98E3318A321A7FCD315BE0F5055 | sha1: DF0C30EBD9BB99A4854784351086C71CCF910CB2 | sha256: 5BC9FB2C2FE2707C3B5E62A77FD3A5F7136545BD5D2E82FA30105FA42FF9B550 | sha512: A51DF871C08B1E8B9BFA622B665D79E723C6F9948CC690825FC19715A7FA82B54940E810A8D11AC0E8462558A8505984C5D477472C10D94CCB9013F7F33D9901
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: 815F3FE6C48A264504AF2340651B7283 | sha1: 8DC68E7712AB17B5DF74AAA8DAA7390311EDF0FA | sha256: 64EBF8E2F67EBE6CC4D30DD24AA56A6B2D3BBA82594453E3DEE867C75BD1D250 | sha512: AA822F0BE5FCC63B059CF2D856EAD7C414BCEE552869D151203C3A1FFB5D8FFE1BD2E31A2A0750CAABB86D598A426E8256BB7ED0C8EE4206CD48727DB8464286
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Client.dll
md5: 39F3F91E2FB875B7454DE5B3E91FC790 | sha1: F99D57E6435668F7EC87DCA2EBE382FA3D278D6B | sha256: 8D1E536ACBBD58EBE079DE0BAAB8140AD0DDAFEB7FE710232AC552387A3B51BA | sha512: E595F47D97454A02665E1CB28A871115757F93B70F3EFDFB040088072F2A3568975D2C1C150478C772332F062F29BE442B42F40CA4CF5E69EC583870B2F2B282
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Common.dll
md5: EEA9F134E398CE956A8E8C15742B1B75 | sha1: D45B0F99079D6FF94D5A1E63B127CA3511C500FA | sha256: 538505CD70480902432FCD979E5030260CAFCBF5D02496EBC1290B4E1D03051D | sha512: 7A901FFA92D8B8CFA8B2088A0A854A4F27018B582F16CDF6ECEC5C0486C8BC9D6EB1667295B54D7D9F9E14A42703FA6682181F2CE69066DA47B2AD7697AC7A2A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 8C35B6DA58DEE9A46ACA3CAD7A5D14CB | sha1: 46EEE395FD74EE6290E3487369437DE7436E8125 | sha256: C5C3174DAA22C70DE3CA4E477DFC678022BDF51E47EBB86B7D9400FD67D5A046 | sha512: 58429971AC60A07FA43BAEE92A24C9F74C9BB077B5EA9B02C69DB21432787C62D3D9B74109564EE90190BFD8EB9C8C3DE6A371DAEDE251CDAD5B349890150D5E
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 47A231E3773B9DE3854C236DE29CACE5 | sha1: CA6E2B6B4723ACA5480F3BDB5A72A9A352AFA8C7 | sha256: 129B1BCC97F61967404DCD719C3D043C009EEF3C84431C58293FAC244B8373FD | sha512: 5018807C21B0AD7C578449A1DE77DBF42A210AE7D64F629EBC7A682437E9C068E15BF3A11E11C2FDB95C8C963BB698E98DB874BFEF0C1BA40369A36CB7C43478
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DeleteTeamProject.dll
md5: 0712301BF9AEFF62A8A9E91224968EA7 | sha1: 99B4660F45237CDEC5E6AFBEC1A8B721531436A6 | sha256: F35E7AA6BDBFCAB374A03D9F09ED12A703517525844B86D39DED848E77069BA3 | sha512: 81772A71ECB754716B6589672664D09FDA2220566C6AF0BCD42C0F6AFD09B0B65E5323AEA4AB943A39B305517CBBCCDA50772552EA89CCA44F9F11FBDE7AF608
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Diff.dll
md5: 742992A71A0AE354CF7FB680B227A1F0 | sha1: 2EFDBB64CF38F95A3D2560A1531EC8A54874BF90 | sha256: D545D13AB454244B47529B2FA13B809B1DCE0D9C3E76C8848A359631977E6F7D | sha512: C27ACF5D22D8033B5C08B371DAAB25FCFD22E8F1EB595E798B867FD4185F4F22BA82FFE6AD3F628CDB8440DA956C9723027BF48E705A33B3733F68ABB757904E
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Discussion.Client.dll
md5: AADB031F6702280E60BDA7C7758E5C3B | sha1: 55EF2D4570F6329A39103F6D884D7DC587250B06 | sha256: EE963EB3AEEA69B69EB1A1973AFA2D7BF9E41792D68634F7A9DD405D032FEB90 | sha512: EAF509DB540607C3AC9542EBDE6612D7DA0F69EB98D56852DF52DEBA6F03D56A4A84E574DB7FB32BDD2883258366C9776983D1A486254A70D808E533E24154F9
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: 053613A65F87BB4F74AFE8B95A36077A | sha1: 4F450F9E64DBB5AF05D993B56125305EF7545082 | sha256: 8DD7A1ECA0423437848FF1C92DC6AF0C2F94382124E10175D851B6F74F979AF0 | sha512: 7F7CF8FFFA007DAF74C27189128C9F273ADB998D790DB35AB75A9B68BEB847B031F43673F7DA01D4F8A82925B0022997FFB2F038EDB94BA06063D5363AC5C10C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Git.Client.dll
md5: 325E9E52FBAE8E9CBFD51940C651DA92 | sha1: 22483ED63C255CB9E7A3B2E26FB611C8EC56F8BF | sha256: 982970B1DF59B9A0A5826E351C9320F7D48A6033DAF2BD06F7C771756AB51797 | sha512: DA034121369FF624450B08BB084E595F3B4DAC57E0B25778A6EA5D5DFA8C754D6F8D913282C7E39FEE56FC70EACD060A7CC018667D12BF3ADCAF6893FF0EB435
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Client.dll
md5: FF0D52A817A83F1D684B21285BBB1904 | sha1: 466F25EE75F672A9F22656D581A9875D9EC207E9 | sha256: 271972CF8005EA2890C1DF6EA1450801E17D4F1F708E7B4A745BD1F8C09F12CF | sha512: 0A40C192C48A09AC142F0DD38E617169DE6419E889C84ECA323944FB1FE5334B0FD318797A08834B8D973BB5D0C9B524CC58DD14EE757D74658FBC7A2AA2E956
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Common.dll
md5: DC8CF45C49B232858D2D2BBDF4A79804 | sha1: 47DB9522B6723D3BB6484505CBB24870AD668882 | sha256: 7076DCA417B698D180323C9D633A8710A0FE402B413E7A5D12DB4D48995F5C65 | sha512: 45B9CAEE6402AE8763BCBFB32EA60DB20C4BAABA6A324569E02031FF8F01D86F975531ED3915C9E744A5E309377DD88BDCEF449C266E5BEE05201BE8FAE66D68
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.TestIntegration.Client.dll
md5: 8D594898A683254DAC1AA3551C6621D0 | sha1: 3D398D64708790CD3CC0C255E0CEAE07B6385515 | sha256: 147F63B442090772230AAEF243E6564A866815DC9030E8D92B1A3A12A04E23D2 | sha512: DF79ED3BD6A1EDB02C8A3E894BAFE3C46E33FF4E268A044DAAF95B8E848739CC7A10CEE3026C92E1076A59284D56233E4B98D214AC33BB39A17201C1A58FB224
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.dll
md5: 2AB53ACCBAE2FF721519A88CE5DB117A | sha1: 713446453C93E89A32DC48DD3EEE00E186C2782E | sha256: 0F3EC50D794AC0191776B9B03BA736346E4E5373FBABB27189906AE66F54D59A | sha512: 2CB8B47DE1BE6AEF51AB6686CE875B5CF5DBA79E5258B4BD1CE1E9ED5542774821CE4E826F08FBF1D7A3BB1D55FC829A38A484B007A94EE4E637D5BFDEEB081C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Pipelines.WebApi.dll
md5: 79C7768006750AE8F8D79DEA822201A1 | sha1: 4EC7748F086EBC593630275E078B88204091B639 | sha256: 95DAF6869E155BAFD48E567B34E54F78FA66E2CA537D80033EC00BCA88BBFD98 | sha512: C55E13374F8BA6EDB3798627D897F3632E093051582210837DB013DD57CB9F2E9E5680FE60376A19A76165D73EBF6AA425AB82864B60E40838EEF9BF4867C107
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 8BE85570696861F99A1A5E4923B43943 | sha1: 203AA11C6083E9C5808104952EE755EE03D14B11 | sha256: AE23925FBA778922C4FD0EC9CDDDBDE276E91443C1AF6C7C44E5A30BA17601BB | sha512: 3B1A6693D9342C1EE6253732FE867CF5A1781FE844324541756176E6568D471C2857D60600024ECAD7B7C739850AF2C3AE7C4A1120D6BFC4B00537B612B3307F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll
md5: 6062F5EF5F229A9B5FF2FA8538E50BE7 | sha1: 58BAB1A870B51FB81BB8E7D66D3781DDB2FB1B31 | sha256: C5C07A66DA5320CE1DD5CB4C274D3DBAEFEA1E00D8B9563991FC6E608E0AD9BF | sha512: AB4550D610D912EC7CD23BEBB93063BE12D66D1167FCA537A91D89BF944EDE89FF05D6FBD8B0653CF71D3E772FA541380213672E5B978AE09359FD6897640701
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll
md5: 9DAD237015BE927EB21D8A699CFF527F | sha1: E389208EA4277B2B436904DCC88012A33127F9E5 | sha256: BDEC0FF0E467144D687F379F090FBFB7CF5B71900D1824AF88707CA70C1ADD5B | sha512: 55A1C1412C7F5B3D8711909BC1CAFC6490387038C0C62494ABB310BF6AB8D77008B31B17378049469AE84630FACB06CAE2E63FB01B8E4D1607D62049DC41528C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 47AD133941745C02DF4A47E2ABB1440E | sha1: 4212466C4398736E08A7B053827CA3C39A67EE1D | sha256: FF56BC8D939A287A1660E0D946FA5AF1A56612229D2BA4EC003B1663CA628F77 | sha512: 6E59F169A285F9DE04D30F0A3D3E85A90DE207135C003B86191C9C3B96A15A16E991927CC7F201C2C3DA126AD765AA555EA3204078FA2F245A6847678233A890
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll
md5: E293B6597CFD04C9686196995CE8A098 | sha1: 0F8AB9B856F8784418A9673D4B5E7CD032CE17DF | sha256: 510F8CCA166A99263B64D4EEC1F6ADA015C24472ACCA04E8B345826D22FC9FE6 | sha512: D4312C55E2DCAD25A70CD32A3A3FCBBEB92ED08D17F1DF9C9B98FEA6F5FEF1E556CB9F4B55692E6E56DBDC14BD0F1D1DCA5B2093FD843583B2A569271788FD3A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll
md5: B65271DDBD7A09729A5053B8E6FEF359 | sha1: 41E68877F1270709F91D8060850B5E66A82E3428 | sha256: FC80385A39CA0BA1434175BDF7416197470932CC9319EC5766EAA1DEBC1A263A | sha512: E3D17B52EE28D10C0C42998F8B1E4A31B5EF8BA862A3AD06F58B526BB0E1D1EF909A26C965E973F9CBEFB40F32F15D01AC4F44AF7B0432E67413FD93C5B5CC1D
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll
md5: 1631620BF1606F1E90FB27EA5EEE1047 | sha1: 7107BCBFE6C2DE2BE1EC46849BB66D0C6609AED8 | sha256: 0D727366F83122AF2076DE93C7C7EFC40877B2F33DC1C8AF6550C34C21825DFD | sha512: ED85EA08A9505A840ED4CCBCFE8D3DDEC710BEAC7CF81B723114C3B950A38D9DD46305F9937D8CBEFB286ECD8F33EAB540A5C81295734A36B8D81244C6F77612
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll
md5: 25B152F6DD96D0D74CAEAD64FDC159FF | sha1: 263F0C8F1B56ECAB95D791F9DA4BC5E29B553D56 | sha256: 5B7BB2F3A4A817040EDB22D091EE50A474AD903EBBF26FE70068B729CB9B36A2 | sha512: BDF342851B524901493BD158CE3EB243F542D5E6DD9789895168E7010B48B1A85EEC5F1D50434D8F229DC09E2F30F13E2054EAE87437B4A6D45FEB717A5BEA15
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 2FCBAF7D90D96E30FB5895A254B5C88A | sha1: 3E82A036F28339F5F0C78206655F2E3C30C589E9 | sha256: ED58A7269C0D48B60C27C448E62478A4140C23630FE1FE7D197BD78EF5E060F5 | sha512: E03A013B5B1F3024685725593AB3FBEE5482AF865E7DE2DCE766CA42103698C346D15D92A0BF92A80E56810B96A7F95F41A49DDF7D6C2F5E87E210B45F0518D7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll
md5: EE2D9A606EEA665F71B01204F711418B | sha1: 97288025309999BCB41CA8AF87DAFC5863399249 | sha256: FE6ECA4EE1B3A965741DE726B06DEE5FA05E612C8988313989C4181D82512DF6 | sha512: 68F31ABCBBBBD8D6866C36EC10D01D63E6877AACDD756D0B984B9E9969CC38674D3834FD04A4190231D45F4AF8F58ABB1F683BEB964DBE65662A53C4A8944575
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll
md5: 209C5039D8F341C4AF5D55722061401A | sha1: 98A75F81323E6F859718A3227301A245EBAE72E2 | sha256: F84E8699F9465E3896D344473279B466E7139A832F2E72E94CF2115259860C37 | sha512: 45E31CEBCA7B8C1359224E9FE1D3F109FC5DD510BF571F3B49A380D6BC3C7839AA95B54D68CCC3BB627BDB405470B592FA65D7BE51AEA39D72A9E17379B33C3E
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll
md5: E829EA5EE9491FEE294024AA95FC9B88 | sha1: 5AC8AB3CC90A7821C2AED6683B6946997EB83D88 | sha256: D978921F191CC262E4DC24CC7D024A06363A92E4BB792605E6BFD4E711A209CF | sha512: FBCBE751BDA86213B1FDBA7CFA6B5116EBF463ADE8A707012DDFA0DCDADF9FC3F9555259CDC8EBFCA0EE127A01455C240A0AE661C680ABB33B64F6551E605228
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 0A3F72621D56469E3E1A2CC51989C86D | sha1: 9271FD2C896E4981EB41D0E97CDA4C9716087E80 | sha256: 5A70614171E80252E2F79A39B18FBC4EDAA1D86E4FCF81C763729DA8D480F7CD | sha512: 413558B6BA9C8AD2750FB08FC882E9C220F3A2154A5BF1C09CE51B99E5469462D5FA9ED0CCA8EA98A82652C83E5D4D7D1EACDB14EA9169975790FF8E35A61679
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 54B18D36AD5A4A034075F3F636542425 | sha1: F456649AAD6A757A34C0990545C7AF2A27ADA6D9 | sha256: 6BA7E6D4542C63CE5DB41EC7E2FAC7E3D9FFA3A20FC9C0EC91001486DF405376 | sha512: D34D3E0F90846386E9F60B907F36C0613D2AD5450B0177ECE146B8DB2FE3830DB0574C1DFCA2E70FB4C811BE832C8A73151C14CC4BED75CA63FD6B222314ED97
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll
md5: C9AC68DB5C6C29D95225D4E1F41E6301 | sha1: 86C397979AD430D139FDEADDD722B8A35559174B | sha256: F63E28CEEC4D6712906854894D73B9D89191520059C0B53CBF56D2CF54AC2CC2 | sha512: 53A538D1E4664DF05FAE04634B33C0CA73DF85DF4B7E56D718B5A87F390DECA1E127FE329A4303F99870A033A3C8FB1725748A9A609235F339719B631CE9444D
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll
md5: 36E6D985185A1B71540F2C9920468B28 | sha1: 6712D81155E71BEDB20E4F3014AE6EC7BF1C9340 | sha256: 26AA6FAAB200076055C16D186A7274A47E0F0C546F0593FAF9F5F2837A249BC6 | sha512: CF7A10F63E904017DDD7D49054A4B75BD29A31C465F6971F9928FC54CCB9A79E5FE99BA486E3878127654023D1ADE4F2D62BA33A47F38FC8B225EE5DE47D3C8F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll
md5: C41195FA2E7D355E119EFCD12194ABB7 | sha1: 713DAFCBED425257807BFE57A8AD172CE216A04F | sha256: AE4F165949FF2906F33D08F55256702062910AC60C5F18935B40BB5E0B206410 | sha512: 7C14F02F94739B79FD755A0DB8DD4A4A7D5E551487C3AC791E24800B56885D7039415D78BB30B7FFD83780A74CFABCC5472339283F475C59CA90FA437F3B9747
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll
md5: CAC029687CE0C17634797070AAA34641 | sha1: E2433952EC699BE31CDCFFE71EB2B6E026EB2581 | sha256: F43CC4785507252C7380A1F722D32B4DF571F859DBEF96B528205B0A2747F77F | sha512: C1F73B2309A08047D836CBC0BB8766C76E5246AD6466372AE4ECA8848C2E4E926C14DB15181445BE534D0E5B0AA8F137C1DE0E5220E5361B8DE4D9AB93612856
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 6AE4C9C8E37E9DFAB9B1F2ED29D8F7C9 | sha1: 5A2998AB57392F8F932931BDD0FF1774BE08F2A1 | sha256: B71C5CC2EE53335DA5DF887396FB2AAC37C4A2BCA2517ECAB577E3F29C56F65B | sha512: 8871694EB528106356C05761FD1D27DB06BB397B8E5C3018C7FBF877E594D2C2D8E6DD1A8E4D5078DE38250D99533945459DAB429CF7C31713CCB058AA81A9D6
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll
md5: B662D4C791E50D4129B3ECBA815E2913 | sha1: 58E5E14D30B0A1AC57A6857BFDA5B0DA5A9954C3 | sha256: 9812F241AAC688B05FE73A2EE01BC3E8BD7E16836D3C35DFD70A2A054E91F2C6 | sha512: 55984128C0A4775521A349FA6A49862FB5AA499405BEAA91ACB1388B09CF14D1CF4BCF2A9D3F940CAA525AAF66F8735D8012563E88F68B38D32BAB22F64F07D0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: D6AD7CE769A2546A8E0D4502E1D98F26 | sha1: 870794E35A5CB1262872373C6E7C007370C05E64 | sha256: 1FC9DF0A682B65DB2434685B2DA6E1FEC31C74DF2187C9F54697B763D924EEB3 | sha512: 927862DD4EB5321652A8F946D1A44F6BB6824FF39D154DA765400972D37DB64D623611CAA71FBB051D113F5A688D95A36658B116FA8BFEE8C2D25B86152D2267
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: D0FD6FCAD71EBB0F5E8B0686625201F1 | sha1: BDEB30A74FE1C1353F91A75358AEE43A81992A7C | sha256: 524D574D6BAC7822CC4BCB84FC92F9CC16CE9F85E62B1AA0AE8C93FCF1EDA173 | sha512: 159DE697E40BE4D816732E2E7AE8DE9898B676DB0D7F5A7550CC200D66EB5C907D8BDDC96DA03E691345470968D555E56A128D928C5423E6FC84730E9DF108D2
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll
md5: 44C4BEF9FB2E89D29F72B68259601728 | sha1: A56233172C2B613ADAE75FB467219E59FC047BA5 | sha256: 3E493425692567A9B90F68F812D81EA95B797BD95AC1123BD735FF380BEC34D4 | sha512: E725C94CDB89799077197730FF1EC432BD9C7EBEA79F3D31BD5408F28A1E04BE6D6EF53A843C34D3F1EF24EB20E116713789D2474462270AFCD2DFBF4C3E7E2C
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: D7871CE478D349875D483C51FF3D1D0F | sha1: 67BDBA8F4BC54C5A381F4ABFF7F900812FC4F79B | sha256: 98857A6AB0C973077BA552ADADDB805054EDC45D2E912D17A3864E41CAA826DC | sha512: 0E8D3A53DED4BABD13E9E9541531C2944E210E20CE3F4C1DE9CB183035A1972D17D786997AC05A7FF18375C094F8274517AA20E72EEC786F6CD4A8A914585755
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: 34F875508EA7D281951255B9224FCB89 | sha1: 35009029C775513BDD3BF0A5EB1852D464400592 | sha256: 302FC6797FA7667DC57469274EF34B2D390A1E0D97E2DB8691B4FD47EE2F06C5 | sha512: 1B50EA788851740116185E6E9C7F6613940A7D37A1E9842CBCE65E1C92D13914AEA59ADFAC9899C64C7647FC5A5F8EDCD6E98404F988AE32661C26AFA8F3FE8C
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 43416B43575346545A9BBBB8E791C47B | sha1: 45901B6EC7E6D625E5418876AEFE5CC4ACD0C133 | sha256: 0FE155595C307DF6418F8BFAF1B3C7221FE65A30BF7FA6910C5E2F7584C85D29 | sha512: CAF4B9BB759A915C1CAA66E145FCBFCEC66C8EB534F0EAE56413DC64E1CD178F848B8EDE338336ADF0355D5209CD29F156EE686B706F9279B3A6CA895EBF9D17
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: F98C73483440D1D235D65B9F1ACE9F8E | sha1: DB3856E84CF0B2B3CCE84756154A8426D8C7C90F | sha256: 200C58826A4E1C5861852D77C783C3714D4600444B055B2A9B37C132A4367BBD | sha512: D781A036A413B32E0E189A3107C70F6812DB5E784C554A3B7A8184CBA89CF9ACAF0A9FF0441ECFFADCFCF7F2C1254CF8309A3F6575B5C1AD3C0F899CD4C4B5AC
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: 24E8E81CE4B7EC44AF1AB186D620AC75 | sha1: F2A7F56929FEB7606C96BC787D5E3410B5BD0446 | sha256: 417EE6598D3F3DE7E255092C7EC400232A9865061DB3EA1059640EB980D2AE18 | sha512: B38F29D52A5D8ECBB3F793BD0475C76AB94F8D7384BB89C51487D5FC999B3EF371F939696C1910C1EB94ACD8CEB52C805C0CAC295EC552D2B9998EEFA0E09B0D
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: B89E53B4621712E0B125AFA65DCC66A5 | sha1: AB98EC85528506F491E97B5128C38904523E2D9B | sha256: E9AFBB08F1F6256DF9EDE41A4C08A138D6847FCDD9CC7F023A95F20E884487B7 | sha512: EF895B8E8CA675D6BD01CB3BDF310830962C55608EE29AB601ACE4FA1218E4AF3B8EA6EBFB7A45367E9CD114275928E55FF861D0C9552CEB08C27E0C04A53D65
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 9941B9F740F2B1BD2990594198D2D2E2 | sha1: 3F2007CBE3CE95B4D7F84F69016C8F88B2CE83F8 | sha256: 3188F12BE1CD312CD5572E25989E82AC9BA006877BABC2FB176A858B3A6B99B7 | sha512: 4F91BB930DDA948930AC1DFB3D9C98877BBB982E063A8476EC9ACCD8F84224E4AA9515EAA8284E1F435DC421565BAB2C072ADECF0F5440D7681030EC61E56E39
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll
md5: 6782562781A00FA8A2EA96C38C8CA6D4 | sha1: 63A57F93587C23F8A8043B0B2D2B02DF4D6A68F7 | sha256: 0637E05D1CDFF714CE53009F9E7731BF355FED0496F488B9F70A352F6163616B | sha512: D57226E34EF1D24535587E58A2E554A1E73339CC2CF8F8D20CB00A132700F88A6D5859A4BE83A712F81AF80024C7C47ACE95AB2BDFAE8C1F940246C8F0F17327
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore32.dll
md5: 53C9AE818105AB7149C9AF973A066948 | sha1: F5466031FF4DBCFD5DC5D80756D7362F1CB75263 | sha256: 18B4D1C3C9B7199656DC1942382814E61F2D1F39C32EF29B8E82A5580AA02905 | sha512: FEFEF428664678FC9ACFCDB6C15076DEA6B9FCA46651912B98564CA5B8F5EE4C644A48F6A900E0E49198E3B5D22ABD614E87E551651F7B6E6F4F5B09E1436658
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore64.dll
md5: 3FF329CE163BA6EF21C578474E411D86 | sha1: 765B7A9AF1D80F3BE7B01E1DD5DD612FAD49A04C | sha256: 67355370E2E9FC97CAC1DD7D9F6C47E51309ED7D5C0CF8B54FEBAD20C8FBC48A | sha512: 1F421D8A57F634A668C7E7C58E0ABB36F3E39C65F7CAB8EF2DF47900D1ADFF85D06B2AEA92AC8C50C7EA97321FF5660FF0755E72EE21488B9F014481BC7718B8
tools\TfsCmdlets\Lib\Desktop\Newtonsoft.Json.dll
md5: 6815034209687816D8CF401877EC8133 | sha1: 1248142EB45EED3BEB0D9A2D3B8BED5FE2569B10 | sha256: 7F912B28A07C226E0BE3ACFB2F57F050538ABA0100FA1F0BF2C39F1A1F1DA814 | sha512: 3398094CE429AB5DCDECF2AD04803230669BB4ACCAEF7083992E9B87AFAC55841BA8DEF2A5168358BD17E60799E55D076B0E5CA44C86B9E6C91150D3DC37C721
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: D58FB579775D5328DEC1860D425A285C | sha1: BC4F24216B1FBB08875B532E178E4F8B293281F0 | sha256: C1C3C07651CBEAE0575A3588DE3A77E87087B5628FA3FDF6A4633B8DDF344FEE | sha512: 4E258F875EDF263040B0F5A067EB9D9B9FCCE7679BF87A40F06EF779F093A1FC3B9C50FACE2142DE53A0621CB71661D9F07C1C8229C906F3346F3CB67FBB7FF0
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 0357864C53A1835AC9244940B0912167 | sha1: F335535FC55B5FAB1E0BBF49FCEE6F2C73184772 | sha256: 2A4B03B07766099F0EAA917A58F3DD4F62F83E521E8D854C48529DCBA84085AA | sha512: F6BADA4B33F094C2C9D9A2A96AF03E0278F784A0B110F468616883666A303DD3CF0DE559173F9EC5DD882B20C72D36209D75DDF5C088E22F1975ED23DF15AEEB
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Client.resources.dll
md5: 1F9B56A89C00450176F390D267936FA4 | sha1: A2272E15E495A8AE0A57B905CCF85624184B053C | sha256: FDC17B0FAD78D3A41CA8F1D8D3671867D11F76864F7C997CE1D1A7671754C893 | sha512: 56B74DF1B2DCDC193FC867A8DB6730B2010692FBEC5D752AF12BFCFC576453A22E7396AEEA3776C33A36DD03F979C4A8AD6640FEE735DB991317EA522D838A42
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Common.resources.dll
md5: 1ECEB0A9F996048A5E85BFA43261C0B7 | sha1: 6DDE02EC95396462220E0E7032FCE92520488F0C | sha256: F8DEDE9AC862474AED3B22442B3198937BB1ECB42AB0092F59EDCE33545BB017 | sha512: 110AFBDBBD9F0C60037F2E6F259DC754B6A49151F877A403F6BEFC1BFC64750C3C0C12C3425AFF2C1250BC7C36A3A7FB7697E49D579076082CB1DD74C7E8C4CE
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 715DABEF20FA2AD0972B4D548C1DA8EE | sha1: 241D0AAC0B970DF35D8007DD087517466EEE272F | sha256: F47F1EE4FFE36DC7108088DDD46D9BECEF20CAABAAA93E8099C74F19F604C16A | sha512: 638B836A2B92D186B0B27A2F531C8BDBCDCC23B2CC613029A823421121635E7CBCA84B79E54E1B341BCC7EE3265595B971DA27759403912EC9D6CF4AD7B379E2
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 84067B90BBC609CF8D224AC69F682D3A | sha1: 70FBD4EEB1FC6897228C32EA03F8CC603116D22A | sha256: 1A9C4E7145CB684190C76AC6C6F5D7FCE3722B480C38CA81795604A83A2A462C | sha512: B0C483930BA36CBF5208FC0BEE03BED7D819EB7612EE2A8A1044D6904E8E5F37601A409E424AC504F3176F3BFC3BE6FC0ECC5987849A01A1D61D08958FAF0204
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: D0F154CFE29ECAE7404DBC09FB90E2DE | sha1: 71F19C79DE5A4D49722962CDBDBFDB5A52297257 | sha256: 0E515680FF291AD097064E0C7D232CB7165B63F738B94DCFD09606C859348F74 | sha512: B27AD1A41622042AEE3AD7F7A0EA833E4274921546920298315AA141A25151C13B6B121D7A7B5206A01C5CDE88D5F7048E29C5FE3547DCB04E9908A2A00B9A14
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 3E817AFEDC58A5CC91FDCC8B4CDF4A11 | sha1: 4169C6C01DCFD08558DC86B0ED9A9E801370FB76 | sha256: 23434D26C6E9A9DCAF9834E545D83C6089FCBEAC90D57DF24C488A7D8B0AC10C | sha512: B5314E647AA1A0BED6E66E30FDD68DC1101FA4976D8603D855EB08D911D9DE1A79678FEACBE427A876B02AAA8846618DC3EFD276BDB84D94413E698C74F56D66
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 85FA75579173994A708A5A83F328D974 | sha1: 808CD86EE49BDEA136B6FF04E830A7832F048021 | sha256: 49F61B0DDB20D0D475DCEB441FD9422991956540A4321E7F83183D3B7F56FF95 | sha512: 061B36261D720AA824934941A0AB711829EA2AC04B72208313A1C19D759C1BE77713F2EBCAC5005498C347069346E98CE3D15DF54165A9A6C4DE3A9513E034C2
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: B28D340C9D42FEC835F8C8269956F95B | sha1: 21815E3B91BF89233E51B02EA885F588F30D7EB3 | sha256: C86186EE32B6F3DDAF1B1A605155BC0A7513FF53FD9C785350B30FB4ECED446F | sha512: 895C2C69389418A9DB7DEBC49D91ED8090014075F6C4D47F9BF843360559A07F57D0B54C9D90E4ADB3463CA0E3653CD96230411E136FAD28ACED317283BD3B7C
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 8E74033CE9505BF9CB0A72E9B78A070D | sha1: 7CA221A2ED872F3CEDCBC6361EFD7712AA9E05D7 | sha256: FF9C13422824EEC7F0399F990CB8F0A3488F4DDF278929CBFDF6E6D1C5FA39C4 | sha512: D1191D40396530DD74D733DC7FFDF406F36B2E6DA91C5E2D64BB6C4E41E411692C4F2063AE26B6E763C0465A25194694813AC57FF10A32CFDBF427782028913E
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 0B06E2C970609334AF53C53B3EE4C692 | sha1: FCD9CA50E5B2628074572883CE3F55FD0C72B291 | sha256: 4F56A396D93BC5E7786E6ABD71558C7B60C06FC70C95E3A867DB2903A255CDE6 | sha512: 11014C3CC1DFA8A37CD7AAE91633D3F56E8FFE9F2333FF8CC6813CFBA48FA9286736CF9A0A4FF7D7599C370F556285F9698DD16BFBFEEA10A9B89A70483DC912
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: AB0734C65832DB377B7AB88AB8812F53 | sha1: 567151B3FFE3421CB7DF92F0B2EBE32E2013BA11 | sha256: 6A2D3F6DB8C0D2B885344F032CD25AF7CE92F6DEEA9DD1280C4FBE63A2F1402D | sha512: 395E0926BF74FB044675B675B7B2A3590804A17EDF06D4EFD3CEEC90BF3C5EB447337BA9E152979A5E2F02A0D0490426715725158946945FF9CF2B6BC6F9AF38
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 0A3369F853CF1D19842530A42137276D | sha1: 9D32149346D9B92254BF2A19767C5E3BF128B389 | sha256: 568D43C83E7EF057E2A40271F45C9554B8B8839F727ED77DDA5429E3DDE39905 | sha512: A47736E7BAAC616D6162026CDC1B23DD4A67F81AE8D9D6BBF093846C074E6536E037FA56F87583BFC0E37CEC7377BF7E6C23E968A7ADDEFA36730F693E1CF664
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: C76FC18B7E4DE41C869409F8CEE6A70A | sha1: 38515E075B43F2B52B0C18550EF84A0BC71A31BA | sha256: 2F77754E8BA8A7621C9B6A2E832EE501BAD31A224925A4178158ECE2335DFF7A | sha512: 3858DDB2E391B9CFC2D30B06665CF08E25D81779EFDE2FF69F477C6A81620E790C0935E61E9AC69ACEE0A1966998011B5E668500F225879A4D5CFD44C0E091ED
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 0A66059065C3C1F09902C2F829E9573A | sha1: BDD8E168861D9085990A9658D336CA8489BBAF27 | sha256: EEE39EB700434D4B3949BDFBD90A0616DB42F04B70F66922203B9A8DAF5FAE7C | sha512: 75D021422F9990BF71919B047A026AE96BCC72D78B7A12C9657468DD2B4C585470FAC4DC8375D4776D4BA0C9A1D4A21F1B2DFAB39E8FA7859E1599BBFB8654E8
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: D9EAFC524CFEA6DCFAF6AD4FA802E906 | sha1: B5D4267B929E43B309CEC80564189B5D944E7F56 | sha256: C5AF48D5D622482F5B37157170B68A6322B24BC09EB3D213854A1C9FFE24A68A | sha512: DCF3C91E0B11CB26284BE842166B9A8F012DE4A2E2AE3CB2DA9EDA2D54A8A3B927CBCA122AB40C6BE2FCB3A71E1206681882E4ABD935C511B1CBE0C4F47B14C8
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 39BB2E2B8A83AC93469BB22D8BB363ED | sha1: 0EFF857C1ED70116E6B9EC96D10509FB9F0516BA | sha256: ADB3D1A7460BC386D1285A6939F8723C86C3850B6BF36E85C76BE982CFCFEAA2 | sha512: 0B6BB1359B798D495F0DD9B1FF95E7FDC8DA7C96639CD4CBC39E74DE40531C056EC10FEF6E606D39050C08AB6F896F79CD8CEA3D85F77C9B6B00B91C74A2F98F
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 80C93D980FEB20AF41FE4A5AC3073305 | sha1: 232D896A9BC9132DFD8D5A614A84FB6C8339C5BF | sha256: 886D710670FE8ACD6D3714F7665CD0E42A6954D04C2CFD28AE91CFD49AEF6BE4 | sha512: 2E6131152D3CB5F490730FAFB1EA87F259B78A091FC684DDC01FA62A9397A13C40D9C314AEB38547E5FB669BEFFBD0820A1F9A0AC636AEAAE991C73C4AEC20E4
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 5F90ADFA648D9E657A20FA05F6E0BE0B | sha1: 12F9AA7CA81727DEEFF9583204792E3E4FAC1739 | sha256: 438A2388EC992356DAEFAC1EEE840E078F372710627038485B4A72A0CD964890 | sha512: 57B572B225C0D8130D8436F743CB281A1AB4F41C513C5ADC986C18EB9442C0341523656FA13E34F91A851D0CCC0EB155308D7CF7F665DAC941DBCB438CAE1AB1
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 219BAE6C29AD44062E402BB2E9243434 | sha1: 75A1FE89063E12491EBAE33C9FF2951F7E89BD1E | sha256: 657B34C1E3AFBCD406D4494B4BE8A1D13F637C2BC9024DDA8EE4E60E6EE05292 | sha512: F67C83EEDCD21BB6E1ADFA2AB359DDC132A3D0CC68B1AB0BA190363851D2F6E64750789CE98B8919DDDFB3E9F27FE9764D4B2FCD0D53946800E8D27289371F12
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 05828EF85B08C153ADBC49BE619E7268 | sha1: 21FEC63ECFAC5F0D9CC79997130BE901004EB87B | sha256: 0CC73FE200B075AF662CA4C35F912E761C3F27AD24E7A8AD12E85C47108B9F4D | sha512: A105D421BC206AB3445FBD37825EE511EA33A165AFF66C8594280ACC219B31C12EEAF1243453702EABB59AFFB1B0C54A0CC9E9BC25D622D59D2DFEA6D64BE141
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 872E8AFE76EB9D8E6874509AAC5F9569 | sha1: 342051523CC894B4EF4107F3342258A79F983946 | sha256: 5A45DBD5CF328569D5CB47C0B6D2CCBACD3B366A040496EFA92C12F8A733927E | sha512: 58A1F522206F35B185E2669DCD1A4824D27384470E377BE1A3BB96FFEA1A6E59CE371DE710DDBAB9CE30E0907521A74E07E9CB9075B2BBB4293C025213E93137
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 0B02B6898BB27137C0E1CC4D1E69E024 | sha1: 20B12849D977807E1D7B5FD4167CBD16F1D226A5 | sha256: EC5E119670938C2A3EAB4BF4D94955A881EEE191BBDA7E086CD1714DC32D876F | sha512: BC3F03DF49CF7BBF88922A978864E482EAED0FE84DCB6B4A2CB4DECE2AD906767B82C47B56030E8B4D2BBEBE059A4BE17E41D3A04031B246776F78A39509794C
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Client.resources.dll
md5: 6188403B409A5755262F3D0EFD895859 | sha1: F8FE471A63501CEDA18083E1D839B4CBC59657CF | sha256: 58A194979CE5844C4A6D606F6A3A47C43F3312F26A0C9AD27B17A6CAD8C56A77 | sha512: 924217A803F6810EAA98A116E33275A6F086E83F8C8DE270955017849F3C727D89FF4631FAB64E65273A14331611F62B6E4720665CE36DC1046F1EF88613D0F4
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Common.resources.dll
md5: CA894A3DD292394563E5BDF61336D501 | sha1: D5573A7DF5B920FE2F702E2A3FC23F8E4DB687E4 | sha256: 590EE0F5AA560AF1CBCD8F24F704555CFEBA16B7D7887DC3A1A2E05B9AD84871 | sha512: 5769199E062003483A0BA81B6F0BB23B2E66C423DD2039D581E60EF82E69D6599439357C28437FEA719A96D316810501CC9FE4391513C3A695E5094899DCB0F5
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 12305B28D67B785A82BC675B6F4EABCB | sha1: C77AA591D936BF926039C4731C705E78C85EACC5 | sha256: E029E9E5FA840546AB68E177187751BCBF5E57C00A44C0C052A21A853AF366D5 | sha512: FF8CBEF56E5BD6A50181F4C1F93F0FE988C393D6EFF22878D509F265B2D3B3FA61DA8D13B260EF2C8FC881FA2B7F9C6D41492B679BD97528247FB834637C9EE1
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: FE2A0A5234EE4A76C3C69DC9D26B4D36 | sha1: 5CA2AD02A0487CAAC512D5005E8F8E0911364CE0 | sha256: 8B85C94C1C33AB2F5476E40B4059756102B41B5673481E2AC4BF40223ECA1B75 | sha512: 481BAE8BC7B021AFD9BCD9850FC24DAE9DEBF83B0AD916283025F37F2E9689467FDE9E8E44A0AF111462D342F540B301506306EF5D33B46FD934D704C6FE7E21
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 213EE223EE2FB36FA286876BB0BD3A69 | sha1: 1318C3160831DDC40E35433B0107362570E46E87 | sha256: DFAAF43DF144CF602A879221C8894D4B93AFA8CBCACB6B89A3F535160E0C0FDE | sha512: DD1EE9457B0ED5F108A777EF8FA44A83DA4937826075037DFE6DDF57799C5982DCA6EE1B26D0B2B2AAA9342BFA6AEF6F52C7F9BC8FC6373EC41AC59D00E9C1AD
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 71BA798331793ACA1ACE38E91435F022 | sha1: CAE77F1BDBB5CF2A080DF6BEBA6BDE0EE87A66C5 | sha256: F66B043AF6E2D47824A8EF40F9C7C1521D63499F79A55A1BB2B4A9D6FCD88721 | sha512: 0F16D30609410AE67FF3F026BE6C38E0C38AEC1E9F8B130C9BB0E83A706671F24907D4C9A9A2DA7059CC08A915656DF10C7D0D1611005B5981687D7A81426616
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: FB5EEFBA8BD7C1F1384412CF2DA8DFBB | sha1: D4F651937602948A0AFAD44A71148D13D955CDB4 | sha256: FBCA82C39588DAFBF58259D9E12F2E9D6A37687AAD2BC0ECACE5B92B2B77753E | sha512: D632038E31C0456D081EA07BE5A4A5014376CAA3C36BB3FA4D9484D05D15B14C45B0F604B9DC938DEA6B8B5723A9152940766CBBAFA6D9F818A00485C917D5A4
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: DCE1D4527DE2C6A10333F32BD6EAB6F3 | sha1: 7D41A30698E59472FF545AC799D71EF4CE3C5D81 | sha256: F9B482ACD10F7DD05CD6E9AB8AA0207CF2CD6E3A25E6A23082169D4B5DFAAA33 | sha512: 27550A745641D4F5BAA52605718AA6F1EA1CF0273F8A8650E6295D330A14060D557CBDBB250F93662E78DF45865FA7673C1E39AA36E006D0FC018A895091643B
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 3721F12E19E2EC1CE28F534DC52FB985 | sha1: 8B63E99CCD733ECF280652748BC339189D4F05FF | sha256: 35FB3D2A2DF04AF4403030F3AC928348EA61A1930C0B5509C3A52273C47FE616 | sha512: 4782D34C9C8AEF03600BD9FDE8D2BF385B17BCBDD236F6FAC701265B1C86AC29F95A49AD47831FC490C2042A52EF7872837D78A63C6CFDBDBF52B8255CF846A0
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: E7A409D4FB268E26B9F707C81391337B | sha1: E092AC232C9977910EF3BB1EC7D6F0C56EB3BAA8 | sha256: D58243ADF0946764A4586CA59A865CDF9FC1A5D84F4994492A6D01BCEDF14152 | sha512: 03A7B2F50E39C0AB8D095BF270496C59BF8478E68D697DDFBD789431F69938D58CFB67BD268B69D99C04DDBF9B3BCE8BF83F20CAA199F3FBA544F6F8952DA809
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 397C89B593C0FC56B67DB42FE55B703D | sha1: CD330BBF9B85474348535E4174E4E1CBC4813192 | sha256: 733C9908546171C325A946535C23484CB5596773C6522DE98348331EA70FFBC4 | sha512: 680086F499247909166125605DB629432E12A4F1F8F64B07EAB614F1C92C84BB9D4629804C6E6D2941EDF7D9109A0F2E659F400A52F190C86E3A20842EF0546C
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 428D80D8E00E15D74341B6E45390E35C | sha1: 8C715875CBB37F9961AF2BE772FFF023EF7D3F65 | sha256: 9868B95842EEFBBBF5069CC4B5B4CB195DD034FEE56C188E773A6C6DEE58943F | sha512: 2C117F7E63993D70E95E9F9E71F104F474BF464E8D1CF392F9A92454FD9629EDB3E7CDF9CD902FEB457D80F51FD1248D8BA0FC7914D9AFD8547D83EB92D72AFC
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: B814CFB820F8553B931B8D99F594D9D6 | sha1: A54B1EF2EA66AEE7465F27EE3DB0D8F87C77BB34 | sha256: 0B2EE7F71C4E3B7EAD9401230C590F619BEAC2547838966079A5C58E71DDB90E | sha512: FA2FC8DBE7ABE5DA853A1990825C7F40735E6A6C578413CB0481D5FBCCB2E0BF54C9D822C7FD245320771A95D5CB7634D679BBDE2405B600DF4098C430E04720
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 6B31A3D93A032CA59175C15F5B498E21 | sha1: A1C2FE42702761A17990B23EFE3990FC2962F3C3 | sha256: D3101134DFDA613989923DA8DB13F5512EC84304507F0AFE41040EF2965D71CF | sha512: 6235ADBB868DEBD63262CC098CDD6D1830B454A56E34E8EBB9E7F4C086E5160056AD872301D10BEE248D52FD50852FBABBF3A41B32B913DC22557D864760DDCC
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: C98FF555B16A295EFDD0457BC2EEB32D | sha1: 129EBD2D8751A7824C507F42C429BC8CBC44FEBC | sha256: 9D787A44469DEE5DFB6E32D8F908168AFDE95B075179DF736974220C06A1362E | sha512: 7F7CBDC905CB57CE4DC3C76A59F23D9DD6A71AFBE0401BE7C91ADA0A3784AF2168D1022A113876F08CF7890865AF55E271D89462A35A56D8BB37E4F191090B36
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: ED590C26B5D4FB1A8A2E80E3C10CC7D0 | sha1: C0C2D3240F7A749960088C051B146BCFDF1418E5 | sha256: 2D61E6CFD19D911EE064A2987DF4396AA5D44B90B29632E359214D11D7889D6C | sha512: 51C0C498DC102655443D69A1B9BA7EF567E376A9108B2C0DDB1FAF47474E68FC26BD326C028153D7D26B456E922D1EC918B44782AC0AC07714D97082DB153A99
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 300961DBFC12A9D4A965E922955A9676 | sha1: 8E208BF3D32ED92608BF19282E17D3D025455DF1 | sha256: 8251287F55A2C9CB77F4FFBCA60E27B893F3DBE57207B00CA88806DB5D4CF17E | sha512: 935D60F730BAD6BC45AF89BDA19E2269F4BDCDAAA36B33305A76FC71ACC085FDE45E5C19532BE458A01322EECB82B6E2D0425EC63A1D439C1155EAF750DB4936
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 23479DBD35933403EA117FB5E5A2913D | sha1: A6A2314B194DF7485BACC2ACEA4A1FFADC37534B | sha256: 93E7E16B440D42D2E394B049FF2C2F79A73313C47E9AD6A936963AD21F94E2FF | sha512: 2EA9B04309306EB573E2F8C4298E193C15D4DDAD2A17765C00FE5BC1C9238CC87F955C64A686273827BECD7D1312C48E039A83701096DF53A78A40C152EBBC6B
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 9C601CFC630211A98CA9A381CF7A02AB | sha1: 82F6667D12AB95F4C35816A32A835C19CF63405C | sha256: 68CFC243467A93B110675F1C8E6438B10BC881A109C69E72AB6AC8BC85AA54AC | sha512: 58DB96772C963EEE467093402AC6B0647782D929BCCE29A21A63B9F04D7487B17E0F78E9D0B959C71CF4783B79616DAAB82278A2A0F4B18FC8CC9BF2D2E4D99E
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: FEC2890FECDD214EBADBFD1C7EB13572 | sha1: 8955A700F29006FACC9E013AE7B9DB162D9FF1A0 | sha256: 9840E3646C6B11A9C4E21939C809C207BF95356DCAF8CE98FE4CF7D2321B9551 | sha512: A9497333C9A4AA67E6AA5249FEEB074A16BCDA5734FD2FCD87E9DF34D8897B34539DE56B0A1E8A8BCCDBABC647843C9D3BCC0650C37EF08828BA585987F7ACCC
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 6E7FC8B83C51E7119E8CE138507B67F8 | sha1: 0D6DE7DBE9DB726E5246C16A80F1AE7E66D25861 | sha256: 9B77122941F968A10F61A8DBD19AD65B3C0B45FBA4E9226CB598DC49C1F19205 | sha512: 8F4718A034BEC38CA39C051BD7B3EF77F20F7B22521539580A2AEAE6E51DAB821F537401182B1EE79430B830C478ECC3C09A00027EA3C1B695DDDD22B602986D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: D8F0291893EA7B34FA314CF8DE8059B7 | sha1: 0FF3C82871751645331BE5B951EE742587D0AAB7 | sha256: A3EAE4EF84672BF41C691239525DC8FC90416649B7EB6DA20EC8628DFC302E60 | sha512: 4F822A4AB95916265A4EBD7AE05168EE38E5AAE8E71473ED8FB8F081928897C2A1E4DC1FEADF60D73AD797FEAE7664ED40539F82EEC1DD266866B8BB21B9BEB5
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Client.resources.dll
md5: AF5D58393D06C22CC9CA01AD10D65F22 | sha1: C5998DCE9081F61DFAC983A7693B85A75DB79365 | sha256: F0E30BABBD0688FAEDDBB5873A77A0C0277290862658278DB29B14298D145003 | sha512: 37479FB7F88D91009B45BC21614D393507183BC034602BCB70F715D7DD4F97A711C3AFD3D41F5B0BA756B94210E424E7A046D7F6BB47750BED6C6D424AE3A459
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Common.resources.dll
md5: 260B4BA72B2E77CF2E96F4517E141511 | sha1: 561B506B73101E410F2640994DBB924695157CA3 | sha256: 5BAC53EF72A30390AD3EDC40E0AAB9CC98EE94C5A76F4C389F6E6D87DCC4D2EF | sha512: 299575BEB2ED7419B0B1F7492367FE561A82C60BF8ECF866BD4610F805E029BA4EB4A874C418BFEAEE4322F2F78F90FF5614AF47667167F4E21A12FE0CD97838
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 1076118AF17347DB3A926BAC98258E5A | sha1: B70D0FFFA6633E62D6D3144D716D86A9F02D7893 | sha256: 216D02B9D5E82E9D3B634CDEA2012019A28D9FDDF0588849FD9EB5A735CE6536 | sha512: 0D0978532209CF4E5F464387AEBA15CE99F57EC69DA5786004C275BCFA8846E0B24EB0911820E51746238CA7E7CE4FDA267FDF9F3D587C85EED00DC14D7BFEEB
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: FFEEADBF361D37764DEAC6D3BAFE2026 | sha1: 28AEC250AACA5B9095E0CAABAD00CF1C61D31321 | sha256: BFA4FDF89D6D2026D1839E25D311A2243738F317BA45F0E0A0A0DE36B0EB2EAD | sha512: DE72D22D59CF89CDFF18B501E48A25F97602A3BD4ED5BF442F4269278384D809D3F9E41A029756E928F9CBB6A440E7FA738B3776AED4903CFFFE8F35B71C9829
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: BBC459A9A18E12CA161069282A3F8F3C | sha1: 6D1D2509694F4087597F9965BBA346CDFC6C88BC | sha256: 67059061266AFADD6902B20380DC9EEADB2D113745EE15665B1483E7ADEA4062 | sha512: A4F9E46D694A69E290518CBA35A277B53947F59271D4B99A39BDF2334855A99CFA71D314D4370C232B9888235B83F6417F4754F3BE9009D5D6C5E8A9EBBC4B6A
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 25ECFB1C4A98B2D5771F033E51907909 | sha1: D5E8FBA9B4563BB8748F4A05ED7943AD391A9438 | sha256: 102992E6CE37C7A7E4355154F6F3E43A0C9C36875DF6F4F5242B0124330389C5 | sha512: 365C99126EBF4C3F3BE4C7D930EA83323941E1D5F4B9F18909D896B3CEC707F85FC952EF68B126AC3B4940267311AB213529FFEAC5322EB0FB8C13B0880F5B05
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: F7444AE3389AC88A3C9784E84780AA9D | sha1: 9A75546ADD16F96FAB639797E48190242028A4A1 | sha256: FD8069FEF884A4809D290A058D6581F23BE0ECC7CA9BEC5316B60362733276AC | sha512: B23179146A4C18C8464C90BA3907BD5FE34F01959A6846CBE9B4D9F5DAFB0DD518AFD076B0FC221AB26619F11355FB9C08BD8BC3A64C790A351FBE368521CA30
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: D7C52418208C7833D0F90141F281EC21 | sha1: 7C146DE003EBD6E654630D6335755FD2874C3E56 | sha256: CE013E0E18A473018143E2E214051B23596500F6CB0F144C91725818C882F889 | sha512: 81C91A350138EC03CE1DB6C3F8223261B1BB3D39CD17A464012BEDFCFF9C37BAF04F59B419DEB5E4D0D7B9FD797B39F95BE82206CEE0A98B179C3A5C796264CB
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 3A77B92766F7C91891B0ED96F0DC2C35 | sha1: EEF5A875413861A6A3785802E3EADBDDFCD44C12 | sha256: FC015D53761EF3F6175AC28EDABCAC3335609A86F1317D3631A84C968171A5E8 | sha512: DE8D3FCD233392B865B25F1E4A00CE1F37061ED35A2674DCAD3580514BA5D5F0598C7CB68A480A5C6268399474BBBE92A1F880179873D850CE29341FF74D486F
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: C8195F67FB5703DD452CEB234DEFB72A | sha1: 454B27C91C312D04CE00427BABA944348C33728C | sha256: 2C12CEFDD2D420B19EFC22B638C5412F42E2CC345DDED3DF17C854C65DEDC6EB | sha512: AF4EE9954233D3B99432DFDD8C99F93037E0A01947343F0DC179B91EB078AF1B89F6D045684C82CAD13E87B405E97F15A96BF80A4F8FFAB3AE8FED68F23BFC82
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 2C02460649A257C2BBF657D5AA1CA751 | sha1: 2852C0CCA206223A7D96A2772817A3D578D43C32 | sha256: 22929BAAE91F2F3866F76170024569B967E0A342161DD0B83B5DBD8F669E7CC7 | sha512: 0F869AEDE2658369E6CD1B31A2ECDB75B1354B7C0969D5F68FCCA3B49F124E671D7F3131C525E5F34C42C60B13CED1B1655C8D542182E14795B4932CC3DFC36E
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 83706ACA154A4A3FA94255A175B14C35 | sha1: 0CFBD3C7DDE4E1216163B731732FD2DFEAE38FA3 | sha256: B532DD6F227F1BC03729494D5480EC58ACAC18524CC302DA9E71FC5D4EC52E07 | sha512: 98031EE97FF81908BC2B8FB88CA685ACAF7BA2CA7553E565FA14FE2A1FB4D713F34589C1C979B73215DD6FFC86DE04C17A9E0E6D3AB5C4783660465C790D930E
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 5CD45E85C228BE1C43402CA3894C7D54 | sha1: 09BC72A0DCAFD1507382165B8CDEFBAC9B5EE044 | sha256: 7705416F627CAF145F601C58BD70FEC2FC0C3FE000E3A37248264D115B443FD5 | sha512: 858066DBAF90CF393CA5F9BC7255811508593357B348FFACB85DE0F2998EE1A93F3B5A8B0A69DCF06F7151B25948191A79B5095B328B8113A10855C36D7832D7
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: A47CFDA3198AE25A095125CDB48C78FD | sha1: 1495CF689E717ACA3C37017D762AE939B81A40F6 | sha256: 8A232623BE99E324326153906100752DA7F69C294E73B9CFE647B4C58B35CD97 | sha512: 853A475A706BD0AFBC2685BC67FFAA44A35BC3717164DE1B2171D5DDD391D144AB6F8AE3B59D95515F1789F815990C5DA1839C51CFDD8C64A6F30D20976E7A3A
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 4D7A716EE0D2A7DA34707818E0F89137 | sha1: 4E629655003DE2FA2493E1B3DB5F944F45B546F3 | sha256: A2DCC990F9C6F0475B7633BC7A41FEC8C9C9C35857C5CA5A26086C0CC5CA1382 | sha512: 5476D7CC3B20CAA8117AD5449B58F8724E689B0CA455052F4DE368DA728EE13CA821EE393670833291F7494997FDC47DA90F85D829E352DD82B26EFDB3F63AD2
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: E2EDB777F805F6141E98531AB7DF6B38 | sha1: 8DFFF60563D8FC9128A3092E41DEBFF4E4DDD005 | sha256: 6BD663C5BA545E6677F815809D925063F5ACE39DB2CBC75826B7C51FD0852F74 | sha512: FF6A4B6EA233DB7838C2460C76AF7BABD933EEEC9CFDEBF359444871CDEE17A5B0755B84A33ADD61018146E45155A32DFF77284725169C15C86DD8F870D2395C
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 155F9F1FF0A3B2DC184A129EFFC51518 | sha1: 920DDE87CA8595C81763B58D2091E677C188AD37 | sha256: 5DDD457F9E8391AF8D1CC3178823621E17D44C55628631450816B48A5C7FA412 | sha512: CC1E4CA8986181E79A1F12269A95EA29E5F0FE42030A952D689A8F2C7EC46A5986C0AD72F360632D634D3A0F09673EDC97CC0D1CF3E152307593CCE3CEE750B7
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 122F855D55B8489BC35EE808DC07B6DC | sha1: 25075E9D3E16862F8630CC8EA877D4A83FE572FA | sha256: 106BF9279589583A57845A3BAE2E542F83B2BF92315C682B7F47B050E503B122 | sha512: F22B0D34251A29ACEB19C687ACD531F02EF99748006A61DAD9FB9A257FAD5D90D8EDD40D8A94ED7E1E5FBDEC27D971B10F8EEEFA0AF85980057E5649DF6561D8
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 2F7B782012EB75A360DDF7161D75C564 | sha1: 0DA4B02CB251B4E6EEBA03AA1BB833311FDEAF1E | sha256: 69FC4879C7AB18D7C6A4096C8C10959037692157FA54C0151410D8DB7241809D | sha512: B4D8A796876E69725E71DFFCFCBF0D3460AB6B83F8007252C3509393D98BF4F49EE5D989D0C5C97A7B2E556E2F7170E575917E4136436D8027B618CD4B9D9885
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 8027A5CD082C8EB2AF58CC5F2886910B | sha1: 4B962D6DBA9623FA786055BE041A897E612DF6E4 | sha256: E97FC2992BA2D7F740A1C7B3D213F0312DC15AA64A36476811D490F2EACD2071 | sha512: AEB3815887BD4D909744DE65AE108B8AC793C01690A8C8D2EC7B85F8C80F9F4BC87B83F0ACE8B1BF3F2A9AF86CC8AA592C8E2AEF8954843677C948C71621168D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: E0C3C5F4882D0E3F3C6CDBDA81324EC4 | sha1: 3DB03D103D2C53D9F20790C7EA769C9B801FC7CF | sha256: ED57AD9F95E046A0FBEAC9CB1FFF0FCD19D4860BE66DC110E2D26CC6FAD0B8A0 | sha512: F46E15FE74C3FD4E81A93231C121CE050CDE61E279A29408B36DD3ACE467D17EE67EEA64C0A6CFA3D32664D3A46DEC4B3E3CE5ACD1AEBA0F5BD73EF2C3662185
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 20AF88E69C1D56C9C013B3DA48BB1F77 | sha1: 0BD908D6E8A00F69E93820BACB1EDE2D4A89180C | sha256: 23DBCDFBA4B558C0E8E343B2A895D8E2B5188A4286AC5ED8A425B9392F54646E | sha512: B2F4B37DEB7BA0A37ED4FC4F70C9C762CE55376DB02748D24711FFDCE204AF717654D6EA931ACA19B5F42A176036215ACFB1FA0FD4AC4DFC0288EDA3F4F8ED1C
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 9A4A4C84EA4C6291073E66B92A159CE7 | sha1: B89EB38D366AA53E9F3E1F6613EFF59AD1C77D73 | sha256: 2102409E029B93793F9B5E3F205D762C2BF1AD6802580FA077CC6AA6B4997643 | sha512: 7C2E98D630435B9F72BC41DA36E36ACE9CA40DFC5E9D331DF6A9B3E4BB34086F52B8ED0796A707FB8A792FED38BD473D3D0A6F600E7B41651D8CFAA354F477DF
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 95D8FD422C11CA922D4F6A283CBBBE63 | sha1: D5213DF38866C9C2671F145F2BEDCA227B732266 | sha256: 66645444AE6C48E390D9773635252E922FBE61EC737CB6210B839AFCF2905583 | sha512: BF607F0ACE57BA3DD0D212CF9934C033BDCFFEABD468CA2A3F0D6B74C90A9483C24E6A3AA9FE4F46E8A5F90EA0C966FFF0D6211B941CDFE180730C089F7EEB81
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 3C26A0D4584E1D0E911C205608F018A0 | sha1: 787D06738F1F1BFD17C27706FB7D9E7378E86586 | sha256: 28E963A540222AE192A0FBEFF6E68BA3957188ADD3237FD960FCDA5E3C585974 | sha512: 8944600B1D6B79DCDCB1CD1E3DE557102EEE71386D2FB3B2297420227CC84AF38D77B648ADDFFA96C96051A4DE65E266A831A76A58504C1E1AB946CFE00E30D0
tools\TfsCmdlets\Lib\Desktop\System.Collections.Immutable.dll
md5: BDDD1CF42DD6F7BA5D1D7114CF7D86AF | sha1: 7AE42F96E3348EEC36783C15AD5D9E453D232FAE | sha256: A411A3E3AAC75D3211D8A58810B5FE13329E9D0BE62CC62C61FB1B3351E11FBD | sha512: 1C2B2ECDDD465C9304F88DBF13301403BDDEFA05C061923020625A088A245EA6837E94334013CC8CD6FAEEEB53671F0CD1D3C3349BBB149C84FE31C357632C00
tools\TfsCmdlets\Lib\Desktop\System.Data.Common.dll
md5: 4EC7C87D3C8820C20E8C2EF80D80D363 | sha1: 1FEABEBF78539D5E7316BC4352B4383D239FD438 | sha256: 4FE23DD147813C0B724B62FCFC0CE419E9A4AD36F3DA4CC43E5DA97D796E289E | sha512: 2504DFED8DCF4F5C1CC56CB9EBCB03833CFB6837D0592F82DBDBC28899B6F1AAE2E007E0175AD7544FF13B017F3063145E1826267A5DFAEA91BE182ACCA3C5BB
tools\TfsCmdlets\Lib\Desktop\System.Diagnostics.StackTrace.dll
md5: C20C268EABDCC95DA38AD646A0AA0310 | sha1: 3760E870DFCFA41071E5B39CCA59265657B3715B | sha256: E932B25F50E3B09DD7759FF5B9E9ABFA8FC115EA171B768164AE21387FEAC7E8 | sha512: 422F8F7A50F457EB979652B14A6C06A51A6A94C7EB9F56045A4B944ACBE3026580465AEFFFD9F30A4334A556FA1EED8488DB0766C16D637023E72B579A26DFCF
tools\TfsCmdlets\Lib\Desktop\System.Diagnostics.Tracing.dll
md5: 482573CB18B537A7415DCC00C906611D | sha1: 4377161FBD9644953471A94021DF437F21FE83E6 | sha256: D4A59FB62D8A7A138A49911110F8B2AB416196DF95F4CFC599ABB6EC61629E5E | sha512: AA96E1544FD0286FB1D6A77B8ACE8745F69EC4835CF0957C457AA3026B4AD5EC02E953C7BC106D80205109A85512D1DF99AB3DE7D41300E96858298AE5767FE5
tools\TfsCmdlets\Lib\Desktop\System.Globalization.Extensions.dll
md5: 8DE05921A38C0FF54E6D4B4ED0C32235 | sha1: 5BA1692964F8732D2CAAFA6A8D1009DFB8B4A764 | sha256: F690794A0296D8DAD4F30D626A8A89121DF51B5909E440DA08707B09518D040E | sha512: B7DAE61979760224EDDC28C717B78AABDCDE2C9ACD3659958041D08B44CDA12E9D62F15B436691213771A4B32714BD78D54D2BA4C90471FC7BFF4BF274C66C07
tools\TfsCmdlets\Lib\Desktop\System.IdentityModel.Tokens.Jwt.dll
md5: F9CA978B29C5B56B502CC37DEA7AA8E1 | sha1: C8914013108C48086E09D893F8FD0507D719300A | sha256: 919B933E167252DE36A9A752DD296C475475F1817A19D9F892D0FFEA3854165D | sha512: EDF2294B19ECB580E9356E1D2B549349FD668DBE66A3CE0D2E3D50C158049E9A93A226078550C1313A39390ABD24128C4A68226E2A14A43D0BB7547B2E111A23
tools\TfsCmdlets\Lib\Desktop\System.IO.Compression.dll
md5: B2CE49C37351D7A7471CD20C9E02B6E9 | sha1: 44EB7732131B4B1B25EA8D023C3D2F544E017F24 | sha256: 76FCACCF84313BF78F523B3BC8198C2D040DABDC04A5DC863B46C8AF7AC10A88 | sha512: 40980B050861F7C4F1ED5B71F7F7FD91052FCFC1C49B7B3490D9A4FD68FEC8FD3C95AF38D113ABA8E7F1CE2B4CEADD1B6D66C5D1EA68064EC6265C266BE1AFC5
tools\TfsCmdlets\Lib\Desktop\System.Management.Automation.dll
md5: D4C1558516297C9F4989BA8CC5276AAC | sha1: 5D99737E910358F37DFABD1D400AE123C1E04F35 | sha256: 197C7EC45938E874F6324DE0FF2BE3AA9B0F4BC27E031E89F14C5371FA0EF808 | sha512: DCB8F56C33743A1F43305F7DBA34F8DF079C049B759F948DA395DC731515CB32A4F548B2839926350F6ADD1696F12E7683A9AB2AD8EA6528F317AF30E292224E
tools\TfsCmdlets\Lib\Desktop\System.Net.Http.dll
md5: 5A5E18C377228FDB1D3DB74F1140C1BF | sha1: E36366D2CCB64AEBCC9DF8FD7FADC7A9BB562AF7 | sha256: 8646A26A64928866BBE8746F3323A1F446C5A28C10B6B81DF9BF4A08336B8C02 | sha512: 0C308B29FEBFB5D4CB52BD3B7B0C61A5844EBF1BDF305BE2B89FB0F5040F52ABD8557E9C4245A4F35C527A23674F1AE97BB12CC3A02A7DD7C8387208FCC73152
tools\TfsCmdlets\Lib\Desktop\System.Net.Http.Formatting.dll
md5: B676D5E9828D6010339743F236F54EC4 | sha1: 0DFF461BE2E04EBF6DA5F4F2D3EB639CC2E0A8B5 | sha256: 7B58ADC6E23B24CD6615B35E848A002BDA053A26D48F9DDAFACFC8098E97C49C | sha512: CCA0ED47B391B12F44716DB1921314E7DCBF2A9F6B0916C78642B4AA814825C570569B103A7F5E298E9C02DBAE22E7CB905F08F80F94AD6DCB69FE09085CD8A8
tools\TfsCmdlets\Lib\Desktop\System.Net.Sockets.dll
md5: B59AF5CBDDAFDC5DC5FF3E34533D6857 | sha1: DEDE511B5270D55E306E1A744E4BC0384A35C8BE | sha256: A4B4BB8B9BE478600F48E43AE8571E6C123F8130923067F10FC92546D0900FB6 | sha512: 4E0104C8A650943D8680F0BD449D4B953B25FF909BF50BE19772E88295F9CE7542F29211528E20B4AD798D26251A50211EEEA8685E3D81FAB72DF1380CA6B984
tools\TfsCmdlets\Lib\Desktop\System.Reflection.Metadata.dll
tools\TfsCmdlets\Lib\Desktop\System.Runtime.Serialization.Primitives.dll
md5: A84B438DBD4DF29560EEB5765E03723A | sha1: 37DE951F703687CF061556B1A52C6F548CBF779E | sha256: A576D1609CC08C46A46CE708B7FDAE33452A3BEFB701128A5BC9D6FF1F1B6DFD | sha512: EE6855BCA6EE6FF8AC7CE5C0565CCC77C35E5F1B3096F1EDE2C018D3364683BC289C6C520472BA46E174FDBD821EA673BFFA7DABC9358CE4C86D26F0C08FCC7C
tools\TfsCmdlets\Lib\Desktop\System.Security.Cryptography.Algorithms.dll
md5: 79C6FA92DBA0C34DB2C412BFA62E48A3 | sha1: 583A3E0F870ECE6419350A8656D7D4AC21746F1B | sha256: A83CA72A33172E977D7FFF1E96FA6CBAC6BEFE86DCA21D651C04578210325225 | sha512: 386AB22AA5299C5D4FB3D8B551F97C916129F05FA87D4D3D90B58BE1CC304FFD3431B0B5402A0A77F2DB64B713F31BA60B3D006D0F01EB5A5195A4307ED7F590
tools\TfsCmdlets\Lib\Desktop\System.Security.SecureString.dll
md5: A6DE3093FFB397AF3E4D2A91FA46B738 | sha1: FB9FF696F96BB574EBD40C2AC9C980FE45AB0F84 | sha256: 9239DE3543EA4DCF71AD86F16AA23EEB760566BC69078925900D0E41EEC859AC | sha512: 3EC05A1DE21EC4C96D6137788A868342AADE033B2D6E9ED7972C8FBEF3503CD03DD4728BA34E37C577AC301C056BB8C142516332C31D2F131599021A307DA86B
tools\TfsCmdlets\Lib\Desktop\System.Threading.Overlapped.dll
md5: C8CE5A96458742641AB9752B5B564039 | sha1: B3315E3657442F82B9A84E9ADE610846D183CAD1 | sha256: A74A34E69B5226F0EE4882F7AC1FC0A88602139ED439202C5FC5C8ED489BFA11 | sha512: 16D4C5180ED313C10886C1E411BF38B5B664D5D3E1B9CB1CDE2D6DDF9EFE39367A792E818636B5E12F90A027C68347A546BF43B386195F50904BD9B5882A005E
tools\TfsCmdlets\Lib\Desktop\System.Web.Http.dll
md5: 145EB749E3B061DAB3360B142690FFD6 | sha1: F0759599123B46212080FA42E84F23D2EA2D7B0A | sha256: FD09C793BDEB4AFFB991D04D2AE1B09DE0B81422D57968231884C66C8410DE02 | sha512: 3DEF8EC69FACD7BE6B0FE0082548DFC46D2853AF721E22014CF1A1C46F7C7D0CE4C32283EB8EA38763B924CEB0DAB1AA24EAD943F93455A59C7028B680A5730E
tools\TfsCmdlets\Lib\Desktop\System.Web.Http.WebHost.dll
md5: D1976F7280F75E8B6D8FBB2D03BED6EE | sha1: AA964BFDF49330C118FD2FC186FB6633266D3551 | sha256: 4CA246031C9CC050FE3E88C3F5ABF970612211155CD6FFA6C9E81E5050337A36 | sha512: 88EB23BFF00D9F61E664E54FC873F03481A7E25C476C7C92A988132CB9E79373AD41938B8C158CBB48B3CC8F55184E72CF8E54775185EFA1020F9EF35F025BB7
tools\TfsCmdlets\Lib\Desktop\System.Xml.XPath.XDocument.dll
md5: 54A0AE378C4D20F237E8B01B29E907F2 | sha1: 08FD364458B935C82ECCCA43AC53EA182DA4EA45 | sha256: 05DF614F3252B522D2AA078585DCDDD502A25BDB06CA3A44B1C0D24C1ADB85A2 | sha512: 12EA4FFBCD243F3DB5FEC4D4901F5550F044E49478A909416E7B588EB15E9C6DD005D8255ED8235E803C76B57FBEEBA6FC9B0B85A8155787C1D885537EB87611
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.dll
md5: 2DF9999D614695A68322DD2D64E5AE68 | sha1: C578FC47CE89E5A578B571AE18ADB422D30B4CB5 | sha256: 4AC2F3CC2DA94C9E93CDE684853E6BC582058954D2C885D55A03318C3E8F5D94 | sha512: 2F6DD50B078D3C91D6E2EA737E5E7125FE229C1C9541D84ACB5E6FB7CA214E7786709D73F871C2B9D6B0C95E64FE91CFF90075D3023E50996E1088A6BAEDEEB3
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.pdb
 
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>TfsCmdlets</name>
    </assembly>
    <members>
        <member name="T:TfsCmdlets.AssemblyResolver">
            <summary>
            This class is used to resolve TfsCmdlets assemblies in runtime.
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
            <summary>
            Mantains a list of all assemblies stored in the /Lib folder of this module to support 
            on-demand assembly resolving and loading
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.Register">
            <summary>
            Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and 
            loads the list of private assemblies to the Assemblies dictionary
            </summary>
        </member>
        <member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
            <summary>
            Represents a private assembly
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
            <summary>
            Creates an instance from an assembly name and its file path
            </summary>
            <param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
            <param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
            <summary>
             Assembly name
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
            <summary>
            Full path to assembly file
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
            <summary>
            Indicates whether this assembly has already been loaded by the Assembly Resolver
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
            <summary>
            The actual assembly represented by this instance. If the assembly wasn't previously
            loaded, it will be read from disk and returned to the caller
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection">
            <summary>
            Detaches a team project collection database from a Team Foundation Server installation.
            </summary>
            <remarks>
            Before you move a collection, you must first detach it from the deployment of TFS on which 
            it is running. It's very important that you do not skip this step. When you detach a collection, 
            all jobs and services are stopped, and then the collection database is stopped. In addition, 
            the detach process copies over the collection-specific data from the configuration database 
            and saves it as part of the team project collection database. This configuration data is what 
            allows the collection database to be attached to a different deployment of TFS. If that data is 
            not present, you cannot attach the collection to any deployment of TFS except the one from which 
            it originated. If detachment succeeds, this cmdlets returns the original database connection string. 
            It is required to re-attach the collection to TFS.
            </remarks>
            <example>
              <code>Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</code>
              <para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</para>
            </example>
            <related>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</related>
            <notes>
            Detaching a collection prevents users from accessing any projects in that collection.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Collection">
            <summary>
            Specifies the collection to detach.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Reason">
            <summary>
            Speficies a Servicing Message (optional), to provide a message for users who might try 
            to connect to projects in this collection while it is offline.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the detach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection">
            <summary>
            Attaches a team project collection database to a Team Foundation Server installation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Collection">
            <summary>
            Specifies the name of the collection to attach. It can be different from the original 
            name - in that case, it is attached under a new name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Description">
            <summary>
            Specifies a new description for the collection. When omitted, it retains the original description.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseServer">
            <summary>
            Specifies the name of the SQL Server instance where the database is stored.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseName">
            <summary>
            Specifies the name of the collection database.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.ConnectionString">
            <summary>
            Specifies the connection string of the collection database.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.InitialState">
            <summary>
            Specifies whether the collection will be started ou stopped after being attached. 
            When omitted, the collection is automatically started and goes online after being attached.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Clone">
            <summary>
            Changes the internal collection IDs upon attaching to that a "clone" of the original 
            collection can be attached to the same server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.PollingInterval">
            <summary>
            Specifies the polling interval (in seconds) to get an updated status from the server. 
            When omitted, defaults to 5 seconds.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the attach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection">
            <summary>
            Starts an offline team project collection and make it online.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection">
            <summary>
            Stops a team project collection and make it offline.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection">
            <summary>
            Gets one or more Team Project Collection addresses registered in the current computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
            <summary>
            Returns the team project collection specified in the last call to 
            Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.ComputerName">
            <summary>
            Specifies the name of a Team Foundation Server application tier from which to 
            retrieve the connection string.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
            <summary>
              Gets the installation path of a given Team Foundation Server component.
            </summary>
            <remarks>
             Many times a Team Foundation Server admin needs to retrieve the location where 
             TFS is actually installed. That can be useful, for instance, to locate tools like 
             TfsSecurity or TfsServiceControl. That information is recorded at setup time, 
             in a well-known location in the Windows Registry of the server where TFS is installed.
            </remarks>
            <example>
              <code>Get-TfsInstallationPath -Version 2017</code>
              <para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
            </example>
            <example>
              <code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
              <para>Gets the location where the SharePoint Extensions have been installed in the remote 
                    server SPTFSSRV, prompting for admin credentials to be used for establishing a 
                    PS Remoting session to the server</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
            <summary>
            Indicates the TFS component whose installation path is being searched for. 
            For the main TFS installation directory, use BaseInstallation. When omitted, 
            defaults to BaseInstallation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer and also 
            the permission to access the Windows Registry.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
            <summary>
              Gets the version information about Team Foundation / Azure DevOps servers and 
              Azure DevOps Services organizations.
            </summary>
            <remarks>
            The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. 
            When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
            <summary>
              Gets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. 
            
              Registry entries can be scoped to the server, to a collection or to a specific user. 
            </remarks>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
            <summary>
              Sets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the 
              value specified in the command.
            </remarks>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
            <summary>
            Specifies the new value of the Registry key. To remove an existing value, 
            set it to $null
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.StartIdentitySync">
            <summary>
              Triggers an Identity Sync server job.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Wait">
            <summary>
            Waits until the job finishes running. If omitted, the identity sync job will run asynchronously.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.CmdletBase">
            <summary>
            Abstract class from which all TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.Provider">
            <summary>
            The service provider injected in this cmdlet instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.CommandName">
            <summary>
            Returns the PowerShell command name of this cmdlet
            </summary>
            <value>The name of the this, as defined by the [Cmdlet] attribute. If the attribute is missing, returns the class name.</value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.BeginProcessing">
            <summary>
            Performs initialization of the command execution, logs the supplied parameters and check whether the current 
            this is tagged as "Windows-only". If so, throws an exception
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ProcessRecord">
            <summary>
            Performs execution of the command. 
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="variables">Variables passed to the script</param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript``1(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <typeparam name="T">The expected type of the objects outputted by the script</typeparam>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetServer(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "server" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsConfigurationServer (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollection(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "collection" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsTeamProjectCollection (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionAndProject(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connection and a TeamProject objects, built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object) and an instance of TeamProject</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionProjectAndTeam(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connectionn, a TeamProject and a WebApiTeam objects, built from the arguments 
            currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object), an instance of TeamProject and an instance of WebApiTeam</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetClient``1(TfsCmdlets.ClientScope,TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns an API Client from the underlying connection
            </summary>
            <param name="scope">The scope from which to retrieve the client. Supported scopes are Server, Collection</param>
            <param name="overridingParameters">If specified, the values in this parameter will override the values originally supplied to the cmdlet</param>
            <typeparam name="T">The type of the API client</typeparam>
            <returns>An instance of the requested API client</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetService``1">
            <summary>
            Returns an instance of the specified service
            </summary>
            <typeparam name="T">The type of the requested service.static Must derive from IService</typeparam>
            <returns>An instance of T, as provided by the current service provider</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItem``1(System.Object)">
            <summary>
            Gets one item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.TestItem``1(System.Object)">
            <summary>
            Checks if specified item exists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItems``1(System.Object)">
            <summary>
            Gets one or more items of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.NewItem``1(System.Object)">
            <summary>
            Creates a new item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RemoveItem``1(System.Object)">
            <summary>
            Removes an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RenameItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.SetItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCurrentDirectory">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ResolvePath(System.String,System.String)">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.WriteItems``1(System.Object)">
            <summary>
            Outputs items to PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.Log(System.String,System.String,System.Boolean)">
            <summary>
            Log a message
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.LogParameters">
            <summary>
            Log the parameters passed to the cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckWindowsOnly">
            <summary>
            Check whether the currently executing environment is Windows PowerShell
            </summary>
            <throws>For cmdlets which are "Windows-only", a call to this method will throw a 
                NotSupportedException when running on PowerShell Core.</throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckRequiredVersion">
            <summary>
            Check whether the currently connected server is of a minimum version
            </summary>
            <throws>
            For cmdlets which require a certain version of TFS, a call to 
            this method will throw a NotSupportedException when connected to 
            an older server.
            </throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.Boolean@,System.Boolean@,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.DoProcessRecord">
            <summary>
            Performs execution of the command. Must be overriden in derived classes.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer">
            <summary>
              Gets information about a configuration server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Current">
            <summary>
            Returns the configuration server specified in the last call to Connect-TfsConfigurationServer 
            (i.e. the "current" configuration server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer">
            <summary>
            Gets one or more Team Foundation Server addresses registered in the current computer.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.Server">
            <summary>
            Specifies the name of a registered server. Wildcards are supported. 
            When omitted, all registered servers are returned. 
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer">
            <summary>
             Connects to a configuration server.
            </summary>
            <remarks>
             A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, 
             it is represented by the Tfs_Configuration database. Operations that should be performed on a server level 
             (such as setting server-level permissions) require a connection to a TFS configuration server. 
             Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. 
             NOTE: Currently it is only supported in Windows PowerShell.
            </remarks>
            <example>
              <code>Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</code>
              <para>Connects to the TFS server specified by the URL in the Server argument</para>
            </example>
            <example>
              <code>Connect-TfsConfigurationServer -Server vsalm</code>
              <para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</para>
            </example>
            <para type="input">Microsoft.TeamFoundation.Client.TfsConfigurationServer</para>
            <para type="input">System.String</para>
            <para type="input">System.Uri</para>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Server">
            <summary>
              Specifies either a URL/name of the Team Foundation Server to connect to, or a previously 
              initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. 
              To connect to a Team Foundation Server instance by using its name, it must have been 
              previously registered.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Team">
            <summary>
              Specifies the name of the Team, its ID (a GUID), or a 
              Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, 
              see the Get-TfsTeam cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Project">
            <summary>
            Specifies the name of the Team Project, its ID (a GUID), or a 
            Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection">
            <summary>
            Connects to a TFS team project collection or Azure DevOps organization. 
            </summary>
            <remarks>
            The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or 
            Azure DevOps organization.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsTeamProjectCollection.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsTeamProjectCollection as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsTeamProjectCollection by default.
            </notes>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Collection">
            <summary>
             Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organizations by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer">
            <summary>
            Disconnects from the currently connected configuration server.
            </summary>
            <remarks>
            The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its 
            counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" 
            as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, 
            unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeam">
            <summary>
            Disconnects from the currently connected team.
            </summary>
            <remarks>
            The Disconnect-TfsTeam cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" 
            as provided by "Get-TfsTeam -Current" will no longer work after a call to 
            this cmdlet, unless their -Team argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject">
            <summary>
            Disconnects from the currently connected team project.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" 
            as provided by "Get-TfsTeamProject -Current" will no longer work after a call to 
            this cmdlet, unless their -Project argument is provided or a new call to 
            Connect-TfsTeamProject is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection">
            <summary>
            Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" 
            as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.NewCredential">
            <summary>
            Provides credentials to use when you connect to a Team Foundation Server 
            or Azure DevOps organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.NewCredential.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
            <summary>
            Gets information from one or more branches in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            When omitted, all branches are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
            <summary>
            Returns the default branch in the given repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.DisableGitRepository">
            <summary>
            Disables one or more Git repositories.
            </summary>
            <remarks>
            Disables access to the repository. When a repository is disabled it cannot be 
            accessed (including clones, pulls, pushes, builds, pull requests etc) 
            but remains discoverable, with a warning message stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.DisableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.EnableGitRepository">
            <summary>
            Enables one or more Git repositories.
            </summary>
            <remarks>
            This cmdlets re-enables access to a repository. When a repository is 
            disabled it cannot be accessed (including clones, pulls, pushes, builds, 
            pull requests etc) but remains discoverable, with a warning message 
            stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.EnableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            When omitted, all Git repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.GitRepositoryDataService.DoNewItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
            <summary>
            Creates a new Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
            <summary>
            Specifies the name of the new repository
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
            <summary>
            Gets the Git branch policy configuration of the given Git branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
            <summary>
            Specifies the policy type of the branch policy to return. Wildcards are supported. 
            When omitted, all branch policies defined for the given branch are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
            <summary>
            Specifies the name of the branch to query for branch policies. When omitted, 
            the default branch in the given repository is queried.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
            <summary>
            Gets one or more Git branch policies supported by the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
            <summary>
            Specifies the display name or ID of the policy type. Wildcards are supported.
            When omitted, all policy types supported by the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
            <summary>
            Specifies the repository to be deleted. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
            <summary>
            Renames a Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
            <summary>
            Specifies the repository to be renamed. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList">
            <summary>
            Exports the contents of one or more Global Lists to XML.
            </summary>
            <remarks>
            This cmdlets generates an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist"
            </remarks>
            <example>
              <code>Export-TfsGlobalList | Out-File "gl.xml"</code>
              <para>Exports all global lists in the current project collection to a file called gl.xml.</para>
            </example>
            <example>
              <code>Export-TfsGlobalList -Name "Builds - *"</code>
              <para>Exports all build-related global lists (with names starting with "Build - ") and
                return the resulting XML document.</para>
            </example>
            <notes>
            To export or list global lists, you must be a member of the Project Collection Valid Users 
            group or have your View collection-level information permission set to Allow.
            </notes>
            <input>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</input>
            <input>System.String</input>
            <input>System.Uri</input>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be exported. Wildcards are supported. 
            When omitted, it defaults to all global lists in the supplied team project collection. 
            When using wilcards, a single XML document will be producer containing all matching 
            global lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList">
            <summary>
            Gets the contents of one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list. Wildcards are supported. 
            When omitted, defaults to all global lists in the supplied team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList">
            <summary>
            Imports one or more Global Lists from an XML document
            </summary>
            <remarks>
            This cmdletsimports an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist"
            </remarks>
            <example>
              <code>Get-Content gl.xml | Import-GlobalList</code>
              <para>Imports the contents of an XML document called gl.xml to the current project collection</para>
            </example>
            <notes>
            To import global lists, you must be a member of the Project Collection Administrators security group.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.InputObject">
            <summary>
            XML document object containing one or more global list definitions.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite a global list that already exists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList">
            <summary>
            Creates a new Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.GlobalList">
            <summary>
            Specifies the name of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Items">
            <summary>
            Specifies the contents (items) of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite an existing global list.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList">
            <summary>
            Deletes one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.GlobalList">
            <summary>
            Specifies the name of global list to be deleted. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList">
            <summary>
            Changes either the name or the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.GlobalList">
            <summary>
            Specifies the name of the global lsit to be renamed.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList">
            <summary>
            Changes the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be changed.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Add">
            <summary>
            Specifies a list of items to be added to the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Remove">
            <summary>
            Specifies a list of items to be removed from the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Force">
            <summary>
            Creates a new list if the specified one does not exist.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
            <summary>
            Gets one or more identities that represents either users or groups in Azure DevOps.
            This cmdlet resolves legacy identity information for use with older APIs such as the Security APIs.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Identity">
            <summary>
            Specifies the user or group to be retrieved. Supported values are: 
            User/group name, email, or ID
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.QueryMembership">
            <summary>
            Specifies how group membership information should be processed  
            when the returned identity is a group. "Direct" fetches direct members (both users 
            and groups) of the group. "Expanded" expands contained groups recursively and returns 
            their contained users. "None" is the fastest option as it fetches no membership 
            information. When omitted, defaults to Direct.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Current">
            <summary>
            Returns an identity representing the user currently logged in to
            the Azure DevOps / TFS instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Collection">
            <summary>
            HELP_PARAM_Collection
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.GetIdentity.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
            <summary>
            Adds group members to an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
            <summary>
            Specifies the group to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
            <summary>
            Gets the members of a Azure DevOps group
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
            <summary>
            Specifies the group fom which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given group. Wildcards are supported.
            When omitted, all group members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
            <summary>
            Removes a member from an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
            <summary>
            Specifies the group from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.NewCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.NewCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all build/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder">
            <summary>
            Creates a new build/pipeline definition folder
            </summary>
            <remarks>
            Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of 
            the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
            child folders.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the new pipeline/build folder, including its name, 
            separated by backslashes (\).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the pipeline/build folder to delete, including its name, 
            separated by backslashes (\). Wildcards are supperted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing build/pipelines definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
            <summary>
            Creates a new release definition folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the path of the release folder to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing release definitions definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild">
            <summary>
            Queues a XAML Build.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
            <summary>
            Exports a XML-based process template definition to disk.
            </summary>
            <remarks>
            This cmdlet offers a functional replacement to the "Export Process Template" feature found 
            in Team Explorer. All files pertaining to the specified process template (work item defininitons, 
            reports, saved queries, process configuration and so on) are downloaded from the given 
            Team Project Collection and saved in a local directory, preserving the directory structure 
            required to later re-import it. This is specially handy to do small changes to a process template 
            or to create a new process template based on an existing one.
            </remarks>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
            </example>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be exported. Wildcards are supported. 
            When omitted, all process templates in the given project collection are exported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
            <summary>
            Path to the target directory where the exported process template (and related files) will be saved. 
            A folder with the process template name will be created under this path. When omitted, templates  
            are exported in the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
            <summary>
            Saves the exported process template with a new name. Useful when exporting a base template 
            which will be used as a basis for a new process template. When omitted, the original name is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
            <summary>
            Saves the exported process template with a new description. Useful when exporting a base template 
            which will be used as a basis for a new process template.  When omitted, the original description is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be returned. Wildcards are supported. 
            When omitted, all process templates in the given project collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Default">
            <summary>
            Returns the default process template in the given orgnization / project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
            <summary>
            Imports a process template definition from disk.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
            <summary>
            Specifies the folder containing the process template to be imported. This folder must contain 
            the file ProcessTemplate.xml
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
            <summary>
            Specifies the state of the template after it is imported. When set to Invisible, the process template
            will not be listed in the server UI.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
            <summary>
            Creates a new inherited process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process to create.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
            <summary>
            Specifies the description of the new process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
            <summary>
            Specifies the reference name of the new process. When omitted, a random name 
            will be automatically generated and assigned by the server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
            <summary>
            Specifies the name of the parent process from which the new process will inherit.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing process.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RemoveCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RenameCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RenameCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
            <summary>
            Gets an Azure DevOps HTTP Client object instance.
            </summary>
            <remarks>
            Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, 
            Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to 
            many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient 
            that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication 
            information supplied by their parent connection object and can be used as a more convenient mechanism 
            to issue API calls.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
            <summary>
            Specifies the full type name (optionally including its assembly name) of the HTTP Client 
            class to return.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.GetRestClient.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
            <summary>
            Invoke an Azure DevOps REST API.
            </summary>
            <remarks>
            Invoke-TfsRestApi can automatically parse an example URL from 
            https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens 
            (such as {organization}, {project} and {team}) as long as collection / project / team 
            information are available via either the their respective arguments in this command or the 
            corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted 
            from the supplied example, when available.
            </remarks>
            <example>
              <code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
              <para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
              <para>Calls the API described by an example extracted from the docs.microsoft.com web site. 
                HTTP method, host name and API version are all set based on the supplied values; 
                Tokens {organization}, {project} and {team} are properly replaced with the corresponding 
                values provided by the current connection context (via previous calls to 
                Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
            <summary>
            Specifies the path of the REST API to call. Tipically it is the portion of the URL after 
            the name of the collection/organization, i.e. in the URL 
            https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is 
            "/_apis/projects".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
            <summary>
            Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
            <summary>
            Specifies the request body to send to the API endpoint. Tipically contains the JSON payload 
            required by the API.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
            <summary>
             Specifies the request body content type to send to the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
            <summary>
             Specifies the response body content type returned by the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
            <summary>
            Specifies a hashtable with additional HTTP headers to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
            <summary>
            Specifies a hashtable with additional query parameters to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
            <summary>
            Specifies the desired API version. When omitted, defaults to "4.1".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com", 
            e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.NoAutoUnwrap">
            <summary>
            Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
            <summary>
            Returns the API response as an unparsed string. If omitted, JSON responses will be 
            parsed, converted and returned as objects (via ConvertFrom-Json).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
            <summary>
            Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. 
            The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
            <summary>
             HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
            <summary>
             HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
            <summary>
            Gets one or more service hook consumers.
            </summary>
            <remarks>
            Service hook consumers are the services that can consume (receive) notifications triggered by 
            Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, 
            Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to return. Wildcards are supported. 
            When omitted, all service hook consumers registered in the given project collection/organization 
            are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
            <summary>
            Gets the notification history for a given service hook subscription
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
            <summary>
            Specifies the subscription to get the notification history from.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
            <summary>
            Specifies the beginning of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
            <summary>
            Specifies the end of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
            <summary>
            Specifies the notification status to filter on.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
            <summary>
            Gets one or more service hook publishers.
            </summary>
            <remarks>
            Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by 
            event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to return. Wildcards are supported. 
            When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / 
            TFS collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
            <summary>
            Gets one or more service hook subscriptions
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
            <summary>
            Specifies the name ("action description") of the subscription. Wildcards are supported. 
            When omitted, returns all service hook subscriptions in the given 
            team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to filter subscriptions by.
            When omitted, returns all subscriptions regardless of their publishers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their consumers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
            <summary>
            Specifies the event type to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their event types.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.SetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.SetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
            <summary>
            Activates the Azure DevOps Shell
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
            <summary>
            Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
            <summary>
            Do not clear the host screen when activating the Azure DevOps Shell. When set, the
            prompt is enabled without clearing the screen.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
            <summary>
            Do not show the version banner when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.EnterShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.ExitShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
            <summary>
            Gets information about one or more team projects.
            </summary>
            <remarks>
            The Get-TfsTeamProject cmdlets gets one or more Team Project objects 
            (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied 
            Team Project Collection.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
            <summary>
            Specifies the name of a Team Project. Wildcards are supported. 
            When omitted, all team projects in the supplied collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
            <summary>
            Lists deleted team projects present in the "recycle bin"
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
            <summary>
            Returns the team project specified in the last call to Connect-TfsTeamProject 
            (i.e. the "current" team project)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
            <summary>
            Creates a new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
            <summary>
             Specifies the name of the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
            <summary>
            Specifies a description for the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
            <summary>
            Specifies the source control type to be provisioned initially with the team project. 
            Supported types are "Git" and "Tfvc".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
            <summary>
            Specifies the process template on which the new team project is based. 
            Supported values are the process name or an instance of the
            Microsoft.TeamFoundation.Core.WebApi.Process class.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
            <summary>
            Deletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
            <summary>
            Deletes the team project permanently. When omitted, the team project is moved to a 
            "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
            <summary>
            Renames a team project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
            <summary>
            Forces the renaming of the team project. When omitted, the command prompts for 
            confirmation prior to renaming the team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject">
            <summary>
            Changes the details of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Project">
            <summary>
            Specifies the name of the Team Project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.AvatarImage">
            <summary>
            Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). 
            To remove a previously set image, pass $null to this argument.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
            <summary>
            Undeletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
            <summary>
            Specifies the name of the Team Project to undelete.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
            <summary>
            Gets information about one or more backlog levels of a given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
            <summary>
            Specifies one or more backlog level configurations to be returned. Valid values 
            are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the 
            backlog level to return. Wilcards are supported. When omitted, returns all backlogs 
            levels of the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
            <summary>
            Gets one or more team boards.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns all boards in 
            the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
            <summary>
            Gets one or more team board card rules.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
            <summary>
            Specifies the rule name. Wildcards are supported. 
            When omitted, returns all card rules in the given board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
            <summary>
            Specifies the kind of rule to return. When omitted, returns 
            both rule types (card color and tag color).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
            <summary>
            Set the card rule settings of the specified backlog board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns card rules 
            for all boards in the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
            <summary>
            Gets information about one or more teams.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
            <summary>
            Specifies the team to return. Accepted values are its name, its ID, or a
            Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
            When omitted, all teams in the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.QueryMembership">
            <summary>
            Get team members (fills the Members property with a list of
            Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
            When omitted, only basic team information (such as name, description and ID) are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
            <summary>
            Gets the team's backlog settings (fills the Settings property with a
            Microsoft.TeamFoundation.Work.WebApi.TeamSetting object)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
            <summary>
            Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
            <summary>
            Returns the default team in the given team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.GetTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRemoveItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRenameItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
            <summary>
            Creates a new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
            <summary>
            Specifies the name of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board. When omitted,
            an area path may still be associated to this team depending on whether NoAutomaticAreaPath
            is set
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
            <summary>
            Do not associate an area path automatically to the new team. When omitted, an area path 
            is created (if needed) and then is set as the default area path / team field
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
            <summary>
            Do not associate an iteration path automatically to the new team. When omitted, 
            an iteration path is created (if needed) and then is set as the default 
            backlog iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
            <summary>
            Specifies a description of the new team.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
            <summary>
            Deletes a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
            <summary>
            Renames a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
            <summary>
            Changes the details of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
            <summary>
            Sets the specified team as the default team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
            <summary>
            Specifies a new description
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
            <summary>
            Specifies the backlog area paths that are associated with this team. Provide a list 
            of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all
            child area path will be included recursively. Otherwise, only the area itself (without 
            its children) will be included.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days. When omitted, defaults to Monday thru Friday
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
            <summary>
            Specifies how bugs should behave when added to a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
            <summary>
            Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
            <summary>
            Adds a new administrator to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
            <summary>
            Specifies the administrator to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
            <summary>
            Gets the administrators of a team.
            </summary>    
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
            <summary>
            Specifies the administrator to get from the given team. Wildcards are supported.
            When omitted, all administrators are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
            <summary>
            Removes an administrator from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
            <summary>
            Specifies the administrator to remove from the team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.TeamAdmin">
            <summary>
            Represents a Team Adminstrator
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
            <summary>
            Adds new members to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
            <summary>
            Specifies the team to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
            <summary>
            Gets the members of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
            <summary>
            Specifies the team from which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given team. Wildcards are supported.
            When omitted, all team members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
            <summary>
            Removes a member from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
            <summary>
            Specifies the team from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
            <summary>
            Clone a test plan and, optionally, its test suites and test cases.
            </summary>
            <remarks>
              <para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
              <para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
              <para>  * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
              <para>  * Shared steps referenced by cloned test cases;</para>
              <para>  * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
              <para>  * Action Recordings linked from a cloned test case;</para>
              <para>  * Links and Attachments;</para>
              <para>  * Test configuration.</para>
              <para>The items below are only copied when using -CloneRequirements:</para>
              <para>  * Requirements-based suites;</para>
              <para>  * Requirements work items (product backlog items or user stories);</para>
              <para>  * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
            </remarks>
            <example>
            <code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
            <summary>
            Specifies the name of the test plan to clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
            <summary>
            Specifies the name of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
            <summary>
            Specifies the name of the team project where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same team project of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
            <summary>
            Specifies the area path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same area path of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
            <summary>
            Specifies the iteration path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same iteration path of 
            the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
            <summary>
            Clones all the referenced test cases. When omitted, only the test plan is 
            cloned; the original test cases are only referenced in the new plan, not duplicated.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
            <summary>
            Clone all test suites recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
            <summary>
            Copies ancestor hierarchy.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
            <summary>
            Clones requirements referenced by the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
            <summary>
            Specifies the name of the workitem type of the clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
            <summary>
            Clones only the specified suites.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
            <summary>
            Specifies the comment of the Related link that is created ato point 
            to the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
            <summary>
            Gets the contents of one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
            <summary>
            Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
            <summary>
            Gets only the plans owned by the specified user.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
            <summary>
            Get only basic properties of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
            <summary>
            Get only the active plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
            <summary>
            Creates a new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
            <summary>
            Specifies the start date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
            <summary>
            Specifies the end date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
            <summary>
            Deletes one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
            <summary>
            Specifies one or more test plans to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
            <summary>
            Forces the deletion of test plans with test suites and/or test cases. 
            When omitted, only empty test plans can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
            <summary>
            Renames a test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
            <summary>
            Gets information from one or more Wiki repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
            <summary>
            Specifies the name or ID of a Wiki repository. Wildcards are supported. 
            When omitted, all Wiki repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
            <summary>
            Returns only provisioned ("project") Wikis. When omitted, returns all Wikis 
            (both Project wikis and Code wikis).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
            <summary>
            Creates a new Wiki repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
            <summary>
            Specifies the name of the new Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
            <summary>
            Specifies the name or ID of the Git repository to publish as a Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
            <summary>
            Creates a provisioned ("project") Wiki in the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
            <summary>
            Specifies the Wiki to be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
            <summary>
            Deletes the provisioned ("project") Wiki of the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsArea</code>
              <para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsArea '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode">
            <summary>
            Base implementation for Get-Area and Get-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\\**\\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode">
            <summary>
            Base implementation for Move-Area and Move-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
            <summary>
            Creates a new Work Item Area in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
            <summary>
            Specifies the path of the new Area. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the area name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
            <summary>
            Creates a new Iteration in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
            <summary>
            Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the iteration name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StartDate">
            <summary>
            Specifies the start date of the iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode">
            <summary>
            Base implementation for New-Area and New-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
            <summary>
            Deletes one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
            <summary>
            Deletes one or more Iterations from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode">
            <summary>
            Base implementation for Remove-Area and Remove-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode">
            <summary>
            Renames a Work Area.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode">
            <summary>
            Renames a Iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode">
            <summary>
            Base implementation for Rename-Area and Rename-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
            <summary>
            Modifies the dates of an iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
            <summary>
            Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode">
            <summary>
            Base implementation for Set-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
            <summary>
            Determines whether the specified Work Area exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
            <summary>
            Determines whether the specified Iteration exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode">
            <summary>
            Base implementation for Test-Area and Test-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem">
            <summary>
            Creates a copy of a work item, optionally changing its type.
            </summary>
            <remarks>
            Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) 
            that is of the specified work item type.
            <br/>
            By default, the copy retains the same type of the original work item, 
            unless the Type argument is specified
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.NewType">
            <summary>
            Specifies the type of the new work item. When omitted, the type of the original 
            work item is preserved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeAttachments">
            <summary>
            Creates a duplicate of all attachments present in the source work item and 
            adds them to the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeLinks">
            <summary>
            Creates a copy of all links present in the source work item and adds them to the new work item.
            Only the links are copied; linked artifacts themselves are not copied. 
            In other words, both the original and the copy work items point to the same linked
            artifacts.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DestinationProject">
            <summary>
            Specifies the team project where the work item will be copied into. When omitted, 
            the copy will be created in the same team project of the source work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Project">
            <summary>
            Specifies the source team project from where the work item will be copied. 
            When omitted, it defaults to the team project of the piped work item (if any),
            or to the connection set by Connect-TfsTeamProject.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Passthru">
            <summary>
            Returns the results of the command. It takes one of the following values: 
            Original (returns the original work item), Copy (returns the newly created work item copy) 
            or None.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
            <summary>
            Specifies the title to look up for in a work item. Wildcards are supported. 
            When a wildcard is used, matches a portion of the title 
            (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field 
            with the operator "=", unless -Ever is also specified. In that case, uses the operator 
            "was ever".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
            <summary>
            Specifies the description to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
            <summary>
            Specifies the area path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
            <summary>
            Specifies the work item type to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
            <summary>
            Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
            <summary>
            Specifies the board column to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
            <summary>
            Specifies the name or email of the user that created the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
            <summary>
             Specifies the date when the work item was created.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
            <summary>
            Specifies the name or email of the user that did the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
            <summary>
            Specifies the date of the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
            <summary>
            Specifies the date of the most recent change to the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
            <summary>
            Specifies the tags to look up for in a work item. When multiple tags are supplied, 
            they are combined with an OR operator - in other works, returns  work items that 
            contain ANY ofthe supplied tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
            <summary>
            Switches the query to historical query mode, by changing operators to 
            "WAS EVER" where possible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
            <summary>
            Specifies a work item revision number to retrieve. When omitted, returns
            the latest revision of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
            <summary>
            Returns the field values as they were defined in the work item revision that
            was the latest revision by the date specified.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Query">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
            <summary>
            Specifies which fields should be retrieved. When omitted, defaults to a set of
            standard fields that include Id, Title, Description, some state-related fields and more.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
            <summary>
            Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
            <summary>
            Fetches work items in "time-precision mode": search criteria in WIQL queries 
            take into account time information as well, not only dates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
            <summary>
            Opens the specified work item in the default web browser.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
            <summary>
            Gets deleted work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IncludeLinks">
            <summary>
            Gets information about all links and attachments in the work item. When omitted, only fields are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment">
            <summary>
            Downloads one or more attachments from work items
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Attachment">
            <summary>
            Specifies the attachment to download. Wildcards are supported. 
            When omitted, all attachments in the specified work item are downloaded.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Destination">
            <summary>
            Specifies the directory to save the attachment to. When omitted, defaults to the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
            <summary>
            Gets the links in a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.LinkType">
            <summary>
            Returns only the specified link types. When omitted, returns all link types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.IncludeAttachments">
            <summary>
            Includes attachment information alongside links. When omitted, only links are retrieved.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
            <summary>
            Moves a work item to a different team project in the same collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
            <summary>
            Specifies the team project where the work item will be moved to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
            <summary>
            Specifies the area path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root area path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
            <summary>
            Specifies the iteration path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root iteration path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
            <summary>
            Specifies a new state for the work item in the destination project. 
            When omitted, it retains the current state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
            <summary>
            Specifies a comment to be added to the history
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
            <summary>
            Creates a new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
            <summary>
            Specifies the type of the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
            <summary>
            Exports a saved work item query to XML.
            </summary>
            <remarks>
            Work item queries can be exported to XML files (.WIQ extension) in order to be shared 
            and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use 
            this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to export. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
            <summary>
            Specifies the path to the folder where exported queries are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
            <summary>
            Flattens the query folder structure. When omitted, the original query 
            folder structure is recreated in the destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for Get-WorkItemQuery and Get-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for New-WorkItemQuery and New-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Force">
            <summary>
            Allow the cmdlet to overwrite an existing item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
            <summary>
            Deletes a work item from a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
            <summary>
            Specifies the work item to remove.
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
            <summary>
            Permanently deletes the work item, without sending it to the recycle bin.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
            <related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
            <summary>
            Specifies the text to search for. Supports the Quick Filter syntax described in 
            https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
            <summary>
            Specifies the maximum quantity of results. Supports between 1 and 1000 results. 
            When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
            <summary>
            Sets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
             <summary>
             Specifies the reason (field 'System.Reason') of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
             <summary>
             Specifies the Value Area of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
             <summary>
             Specifies the board column of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to returns. Wildcards are supported. 
            When omitted, returns all existing tags in the given project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
            <summary>
            Includes tags not associated to any work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
            <summary>
            Creates a new work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
            <summary>
            Specifies the name of the new tag.
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
            <summary>
            Deletes one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
            <summary>
            Renames a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
            <summary>
            Specifies the name of the work item tag to rename.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
            <summary>
            Specifies one or more work item types to export. Wildcards are supported. 
            When omitted, all work item types in the given project are exported
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
            <summary>
            Exports the definitions of referenced global lists. 
            When omitted, global list definitions are not included in the exported XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
            <summary>
            Specifies the path to the folder where exported types are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
            <summary>
            Gets one or more Work Item Type definitions from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
            <summary>
            Specifies one or more work item type names to return. Wildcards are supported. 
            When omitted, returns all work item types in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
            <summary>
            Speficies a work item whose corresponding type should be returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
            <summary>
            Imports a work item type definition into a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ParameterDictionary">
            <summary>
            Represents a collection of cmdlet arguments
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object,System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection, optionally overriding its values.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor">
            <summary>
            Creates an empty dictionary
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object,System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object and merging it
            with another. 
            </summary>
            <see cref="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})"/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.Get``1(System.String,``0)">
            <summary>
            Returns the value of a property. When the property is missing, returns an
            optionally supplied default value.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Overrides this instance with another one. Existing properties are overwritten.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.MergeWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Merges this instance with another one. Existing properties are skipped.
            </summary>
        </member>
        <member name="T:TfsCmdlets.TfsComponent">
            <summary>
            Indicates a TFS component
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.BaseInstallation">
            <summary>
            The root folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.ApplicationTier">
            <summary>
            The "ApplicationTier" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.SharePointExtensions">
            <summary>
            The "SharePointExtensions" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.TeamBuild">
            <summary>
            The "TeamBuild" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.Tools">
            <summary>
            The "Tools" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.VersionControlProxy">
            <summary>
            The "VersionControlProxy" folder of a TFS installation
            </summary>
        </member>
        <member name="T:TfsCmdlets.ClientScope">
            <summary>
            Client scope for Invoke-RestApi
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Server">
            <summary>
            Server-level scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Collection">
            <summary>
            Collection-level scope
            </summary>
        </member>
        <member name="T:TfsCmdlets.CardRuleType">
            <summary>
            Board card rule
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.CardColor">
            <summary>
            Card color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.TagColor">
            <summary>
            Tag color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.All">
            <summary>
            All card rules (card and tag color)
            </summary>
        </member>
        <member name="T:TfsCmdlets.RegistryScope">
            <summary>
            TFS Registry scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.User">
            <summary>
            User
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Collection">
            <summary>
            Collection
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Server">
            <summary>
            Server
            </summary>
        </member>
        <member name="T:TfsCmdlets.WorkItemLinkType">
            <summary>
            Work Item Link Type
            </summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.All">
            <summary>All</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Parent">
            <summary>Parent</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Child">
            <summary>Child</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Related">
            <summary>Related</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Predecessor">
            <summary>Predecessor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Successor">
            <summary>Successor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Duplicate">
            <summary>Duplicate</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.DuplicateOf">
            <summary>Duplicate Of</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Tests">
            <summary>Tests</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.TestedBy">
            <summary>Tested By</summary>
        </member>
        <member name="T:TfsCmdlets.Extensions.DocumentExtensions">
            <summary>
            Linq to XML extension methods
            </summary>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXmlDocument(System.Xml.Linq.XDocument)">
            <summary>
            Converts a LINQ-based XDocument to a "legacy" XmlDocument
            </summary>
            <param name="xDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXDocument(System.Xml.XmlDocument)">
            <summary>
            Converts a "legacy" XmlDocument to a LINQ-based XDocument
            </summary>
            <param name="xmlDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GenericHttpClient">
            <summary>
            Generic HTTP Client, used by the Invoke-TfsRestApi cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.GenericHttpClient.Uri">
            <summary>
            Gets the API URL
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get``1(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API, converted to the model type T</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post``2(System.String,``0,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API parameter (content) object</typeparam>
            <typeparam name="TResult">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="value">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post(System.String,System.Net.Http.HttpContent,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="content">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync``1(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.PostForm``1(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GitExtendedHttpClient">
            <summary>
            Custom HTTP Client to handle extended Git repository management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.Guid,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.String,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdminHttpClient">
            <summary>
            Custom HTTP Client to handle team administrator management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmins">
            <summary>
            Represents a collection of team administrators
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmins.Admins">
            <summary>
            Collection of team administrators
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmin">
            <summary>
            Represents a team administrator
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IdentityType">
            <summary>
            Identity Type
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.FriendlyDisplayName">
            <summary>
            Friendly Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.DisplayName">
            <summary>
            Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.SubHeader">
            <summary>
            Sub-header
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.TeamFoundationId">
            <summary>
            Team Foundation Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.EntityId">
            <summary>
            Entity Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Errors">
            <summary>
            List of Errors
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Warnings">
            <summary>
            List of Warnings
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Domain">
            <summary>
            User Domain
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.AccountName">
            <summary>
            User Account Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IsWindowsUser">
            <summary>
            Is Windows User
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.MailAddress">
            <summary>
            Email Address
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdmin.ToString">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.HttpClient.AddTeamAdminRequestData">
            <summary>
            The request body to submit to the "Add Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.Team">
            <summary>
            TeamId
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.NewUsers">
            <summary>
            List of New Users
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.ExistingUsers">
            <summary>
            List of Existing Users
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.RemoveTeamAdminResult">
            <summary>
            The request body to submit to the "Remove Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.RemoveTeamAdminResult.Success">
            <summary>
            Indicates the success of the operation
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.BacklogLevelConfiguration">
            <summary>
            Encapsulates the backlog level configuration object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Board">
            <summary>
            Encapsulates the team board object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.CardRule">
            <summary>
            Azure Boards card rule
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.CardRule.#ctor(Microsoft.TeamFoundation.Work.WebApi.Rule,Microsoft.TeamFoundation.Work.WebApi.Board)">
            <summary>
            Creates a new instance from the given object
            </summary>
            <param name="original">The original object to copy settings from</param>
            <param name="board">The board to apply this rule to</param>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.Board">
            <summary>
            The board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.BoardName">
            <summary>
            The name of the board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.RuleType">
            <summary>
            The type of the rule
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.ClassificationNode">
            <summary>
            Encapsulates the area/iteration node object
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.ClassificationNode.RelativePath">
            <summary>
            Get a node's relative path
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.ClassificationNode.FixNodePath">
            <summary>
            Fill a missing node path. Older versions of the REST API don't populate the Path property.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Connection">
            <summary>
            Encapsulates the platform-specific connection object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(TfsCmdlets.Models.Connection)~Microsoft.TeamFoundation.Client.TfsConnection">
            <summary>
            Converts a Connection object to a TfsConnection-derived object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(Microsoft.TeamFoundation.Client.TfsConnection)~TfsCmdlets.Models.Connection">
            <summary>
            Converts a TfsConnection-derived object to a Connection object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.GetClientFromType(System.Type)">
            <summary>
            Gets a client of the given type
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalList">
            <summary>
            Represents a Team Foundation Server global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(TfsCmdlets.Models.GlobalList)~System.Xml.Linq.XElement">
            <summary>
            Converts a GlobalList to an XElement
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(System.Xml.Linq.XElement)~TfsCmdlets.Models.GlobalList">
            <summary>
            Converts an XElement to a GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor">
            <summary>
            Creates an empty instance of GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new instance from the given name and items
            </summary>
            <param name="name">The name of the global list</param>
            <param name="items">The items (content) of the global list</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.Xml.Linq.XElement)">
            <summary>
            Creates an instance of GlobalList from an XElement containing a &lt;GLOBALLIST&gt; element
            </summary>
            <param name="el">An XML element containing a global list definition</param>
            <returns>An instance of GlobalList</returns>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Name">
            <summary>
            Gets the name of the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Items">
            <summary>
            Gets the contents (items) of the global list.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToString">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToXml">
            <summary>
            Returns this global list in its original XML representation
            </summary>
            <returns>A XElement object representing a &lt;GLOBALLIST&gt; element</returns>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Represents a collection of global lists.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(TfsCmdlets.Models.GlobalListCollection)~System.Xml.Linq.XDocument">
            <summary>
            Converts a collection of global lists to a well-formed &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(System.Xml.Linq.XDocument)~TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Converts a well-formed &lt;gl:GLOBALLISTS&gt; document to a collection of global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor">
            <summary>
            Creates an empty collection
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Collections.Generic.IEnumerable{TfsCmdlets.Models.GlobalList})">
            <summary>
            Creates a collection and adds the given global lists to it
            </summary>
            <param name="items">Collection of global lists to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(TfsCmdlets.Models.GlobalList)">
            <summary>
            Creates a collection and adds the given global list to it
            </summary>
            <param name="item">A single global list to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.String)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="xml">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Xml.Linq.XDocument)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="doc">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToString">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToXml">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document, as a XDocument object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Identity">
            <summary>
            Encapsulates the platform-specific identity object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Team">
            <summary>
            Encapsulates a WebApiTeam object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(TfsCmdlets.Models.Team)~Microsoft.TeamFoundation.Core.WebApi.WebApiTeam">
            <summary>
            Converts to WebApiTeam
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(Microsoft.TeamFoundation.Core.WebApi.WebApiTeam)~TfsCmdlets.Models.Team">
            <summary>
            Converts from WebApiTeam
            </summary>
        </member>
        <member name="T:TfsCmdlets.ModuleInitializer">
            <summary>
            PowerShell module initializer
            </summary>
        </member>
        <member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
            <summary>
            Method called automatically by PowerShell upon module load/start
            </summary>
        </member>
        <member name="T:TfsCmdlets.Util.LazyProperty">
            <summary>
            Supports the creation of lazy-loaded ScriptProperty properties
            </summary>
        </member>
        <member name="M:TfsCmdlets.Util.LazyProperty.Get(System.Management.Automation.PSObject,System.String,System.Management.Automation.ScriptBlock)">
            <summary>
            Gets the value of the specified lazy-loaded property
            </summary>
            <param name="obj">The source PSObject that owns the property</param>
            <param name="property">The property name</param>
            <param name="sb">The scriptblock that is evaluated when the property 
                needs to be loaded. It must return the value to be assigned to the property.</param>
            <returns>The value of the property</returns>
        </member>
        <member name="T:TfsCmdlets.Util.ServerVersion">
            <summary>
            Represents the version of a Team Foundation / Azure DevOps Server installation, and/or 
            the currently deployed version of Azure DevOps in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Version">
            <summary>
            Gets the "four-part" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.LongVersion">
            <summary>
            Gets the "long" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.FriendlyVersion">
            <summary>
            Gets the "friendly" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.IsHosted">
            <summary>
            Indicates whether it's a "hosted" (Azure DevOps Services) deployment or not 
            (TFS/Azure DevOps Server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Update">
            <summary>
            Gets the version number of the Update installed on a server, or number of the sprint 
            currently deployed in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.YearVersion">
            <summary>
            Gets the version of the server as its corresponding year (e.g. 2019 for version 17.*)
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: C62298CF5B5F9A7B7DE7CC44A45EEE3A | sha1: B86FD7E14DA2A3E2B70C74BC1F915F45381DCDFE | sha256: EF53E139820A2D4C505C34F5C342C5CB0CCB071B10EB8E9333DCBE7D3E955F85 | sha512: C0C0B9794CD0D2EB24E4D05670A0DB7A64123D88093F7655E903BBC426C9B76FAF96879A8DB7CF1F270FF6B88506FADFF8477225492965243C0D590A033A9494
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: D8E3783DCC065EA4002B087F6F44AD5B | sha1: 48A1BB93C65928560B27596325C202044CD31E8A | sha256: FF846F40051249AE08CC0CD1F351CF18799BD257436002C4FED9D0C386BE0B87 | sha512: C136245207CD86AA768C73BB1DF48ED63ECE8C3091B0006D78BB913E7D5914F34C2BD8EF4D64819E71DC3F83C9232F8BBAFC0F3D33091CDB7F61E6A921BA3506
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Client.resources.dll
md5: 093C0F1A7E11AA7A51F0EEDE4979D10C | sha1: 9B82978D49DB8B39819FCF37F958626BDE558C53 | sha256: B27B385F503550412E8CFDAF7CCDC9FE5F366CDC489ECA6B4F0C03FCFAC58D40 | sha512: AB9B5D4F9E1E85E7BA3C42C33624C2BD59B1239067F60828D2916409339B6E33C5AD9F34110212E2A987928BCB4F8DECE03DD587AF22BE258B6F930861945C19
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Common.resources.dll
md5: 826325C5EFFE651E6245B130FFDCE60E | sha1: 1FA59101B60779380AE5DA0C032B1B04BE0B7438 | sha256: BF500B52847CAF529F0CB57E83B5129E6583ABA320DFF5F2AC9088705B651500 | sha512: 5764C9DAC26BF47F249097A77A9B6F014E85FD567ECE692F4592E88D923CEE39FF6DE315B4BE1AD9BB01A9C8985A31CEB01FDAE6B3C0811A8A70E2D896DB12B7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 0FE99D028D46B74AA4D272ED7CB0DF69 | sha1: 4F97C60C885FBB1ABE9175674742C5F5B3B226CD | sha256: FA7813ED23DAE8532C0E741CD0AF9487BF622F0A9EF0B52115426B17D3F48B3D | sha512: 1463F39CC399A2A2AD284768EFEBE9B3BCA3BA0E977CE6902B26776B8F808BAF366A504D0F3C875C19916264C968514C099979107D69F354F48500E0DA6619A2
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 2418B4D7BA6574EE0B2BF427BF6E769A | sha1: B0D2B6320542119DFA04F20559AB0884434221FA | sha256: 784B67CDD999D55DC2F023E46DEB2B769B546880F3DD17E5F9D8F5A20A06572E | sha512: 55D71F3FABDAA79D10B7EABEBECF89F5F91A4BE90E7CB5D1EAC6F1F6B72DE171AB44001B01D17FC8A850A5C59CBD65DD77A1146BB52199A96D53557E86A93E28
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 8A8EE3B33BF402748F6B668E8F838754 | sha1: 2CA5BB49D36979DAE7ABF29F2A0EC986FBC4DCF6 | sha256: 16DDA93E01E31F941C61EF98F211FEA15FBBD3A4DE8F9D6FC7A234F3BB78468A | sha512: 5F2C4FE6F5504970059E3A5CB5F0505E7E40B4EEFE280FB1EF37E3709D9D4E865DFF634BDA9B5A0C991B022D455FD41885426D9DF9AFF16BB7B327DEE2DDF147
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 30AFE19767D7E11361AEBA3C303C9574 | sha1: A09EAA9816F416D276530B650DC8186FD7E29BC2 | sha256: B62526AD6D039799880580E82DE6561F14F0B811C67B6506053CD7AAFB3E3BF6 | sha512: 4823D809F7B8024F02C9E0CEA231628AF994E0E5CC6AEB10435898C221E82B100CEB261149913067EAABA07073C40D40EB0B3FB3D0FD93DB6783723761683F71
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: D6F38AB9B16474BC53A6C1798546F9D2 | sha1: 60DA1594AC87E9033794D04A6BD2005DE2F9CCA9 | sha256: E4D2DAAEAA9B678D3004DD75D2A7A3532A52ACD01389A64F0EE3787F3E110229 | sha512: 4898FACC83789AC3BD9E8E822905331E3B28BDFCB4F34A21BEF446D5805EEF2C67A1F6D7DD25345135C1CD65503074961B307D154B969A8F9E70362FC14DEC80
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 1618EDA5B00D68424F4F589624C4DA97 | sha1: E125F94E75191679D3DFE757260CC5DC88A62EBE | sha256: 4C28024A3321342F0DB8A41931903DE7D4B52E8639F866C50FB3A03DF758E55A | sha512: C0D9B4F963F97B7F348014BBB5367C538BC836F5703B34AF3775592A7D8241FCE6F0CA0B95BE5CE97AC94DB42C472EA6548C732FAE3567604E6BA98E448BF5E4
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 98FC8093A9A6ED92ED3B039B26522B63 | sha1: 8FAFDA06360B2628D413010DC96740B8A00605A7 | sha256: 8EB09BD5E97B2D1EDF059F963BAA41FAF331283533CBDD1F4083CA4DD11FB4CC | sha512: 962281B5A7D4549ED58C28113D55619E42CB726C87AD85EEC07A945330DABB0E3425B2A1E58364B75D68065958CC63784F4DC8A7A7203F004DEC2F6CEB266A46
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: FC3545CFA63E992591C4A8F342FD1ABA | sha1: 3EF41E9BFE6A3C32E1CE4712A904673C9EB05251 | sha256: ACBF20460EDC153EC9329B979AE3B9B97588E0176B058480B1C8CD102C5829A8 | sha512: 75A1D92A7E99E9C65B8B91C232BFF0ECEF6BC9ADF19BA7027B89739BC02B86B575E8C0E7EA41A5FF5F70771AFB99ACE55023AECBFB717044399D132E0CE943D7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: B4EB459151C5B18EA41FD482E2D6E1F8 | sha1: 2009F2CE31ED3ABBF41A09E57A12C08E689A6E86 | sha256: 3D2900B54094FA317BE9F40E41EE88B538F083D7877FCED76D0C014F3D1795AA | sha512: CFE5398364959EA3385DB1A87089F6CC43460B598A4DE6C8AE084CE778EF675FF0A9FFD11D6B241B712E18F69A58E751C81CB261C0EF5ECBE840B48CF6F8744F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 15B1269581E3D9DBB6D4C503851A59B3 | sha1: 842826B8D4415FE2D10CA7C175DD30C97C527124 | sha256: 8DD2D34D701D147804EF688959DDD3FF831E80C16C42397E8DDF098317366568 | sha512: 2F8DE5447948FEED0511F6D0F1C1E2F138A04051D3BC616D818381B3EA159E27917AD7EB7A820E55D764897CF8AB9C1E912D6B6812F8A92F175C627A375DD1B8
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 4BC88FE28E832CACB098A17B894745EE | sha1: 5F3B35A6E30B31EC9AB7B6C6101C512945FD0256 | sha256: E45B5D5C7A4B9502EF70C1BF793613E58B627269D2E02CC7A9DCA2A6693816A0 | sha512: F4A6137F217EE2DE80BC3CCAC308429038D9E1088FEC33A2F3ED14391899012ED4C02B7D7AFB732A86296E5DC5F84DDE59BDF92ABF60921EBCD1E6743B79AA9F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: ACB7311AD7C07AFCF611EEBB2A66882B | sha1: 00447A3E5ABA31BB3A395364B0B21774C38BB3BF | sha256: 8EDC5B06B6508EE37C35D889E5B0EF93ABD599CF636105F8970B874DE769DF3E | sha512: 60BFB606814AAEB7E0507E2D91626682D7706E3976B9570EA91670FA121B56AA99220E3FCD947A2D17B97E0C1DFF10D758A33A29927839473E7BFC3BFF0FA253
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 01B9A0E5B404F706A59F8639D008F058 | sha1: 9A4DC5980C399FECBD120D0B769BDF520CE74812 | sha256: 1AC67B32755BBA4EE1DAF721770394BCBB2129CB051BFD43CAE8313E88F61F84 | sha512: 9CF812EA14CA526305E381DEB2849356A7A752D50E637BB90FFEBE2AED3CCFCDD7A4CD7F3F8670ACE0C2638CAF6D55593D846F86EFD4E802D38F47E1D30BA3D8
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 0FA77B35A6798BAE0B938F245B458A46 | sha1: 22E8586908598674BD03794180283A7B697B9CF2 | sha256: D612BD4955E944DAE44374C1F65F6B0BC97F9EE21D6478204FBA648F4FD493B6 | sha512: 0A2BAF68A20865319A69776DCC42FBE76128CB8AFECEC0E2DBAD00A2E81338B22223AC7B285A554F15E187A3315E13DAE2630C7DC41BF3C0FCDCAB765E453862
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 8D69F2395ECBE58DF5426C2EDEDD83B4 | sha1: 3A0E3E8A3F997AF4037F5348E44FB20269A83158 | sha256: 478D16F71596CFB0EE142EDEB10133588A03438878DA285B5E793425124802B7 | sha512: A8B6B4A6AAC6E00C028FFBB73F1513E95724462F52F941520292CFE6F0D0EB0F3A2E1DA3ACEE05D42E50A41A899EC8546D6A7D20A43D09648793E14DC735DA96
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: DE09E00ED587659DDD9DDC9365C555AF | sha1: CA3AA9CE9BD312E7742349030C694258E6424058 | sha256: 579A73BF7A80FFDF66A5FA731B4A371A32E1A9EFC01E7946DB55804D8D7534FF | sha512: 71E181C1CF01ADEB4D07070E8B1FF59CCB43E34FEAA66DA8A35D8502EADF7B9D1C75EFCE9722F6AEE07D01DF013D2441F3C2D3F855D2DFCEB8FB7207A3C5D15E
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 098BEFB90814510B82D28F6D310CA6A5 | sha1: B7554DDBAEF3E3AE2812B5541CEE4B20443527BF | sha256: AAEA2FDBEC845C7B589BA2A18D5E3C8164EC757608B61EA0831E744194E38D4A | sha512: 8CA3672B32EF8C2B82504C4AEDF419CDB3945DD3692D19984789418CDE2F54EC59A95D84C66B73FCBAF4CA89942DECA089B12F73DF4D71C2EC78B9956E8892A9
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: F6FBDFE766B3DB906312C0752669DFB1 | sha1: 71D68D663ECE23F569E2D3F390AEB8FF574EA1D9 | sha256: 9C4F3084109B9484C5CFF91463DC49B19DEE6DCC325457F99F5C375D98755217 | sha512: F67BB045C7DF690271A6D9853A8DBF53242F27FDCBCF6C5AE5AD2A04F3EE943F24CFEFD37BD667E802542365C77D93277328D8EEA5B9D4D1F8C8F86D34E038D8
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 4EBCDE2BDD0BEA78D24D139CC69C235C | sha1: 0D6C3B2856C2CE73420A6AF27825F95841E8C6CA | sha256: BFE9280F2748623403EBB53C032B468795406F37180985735892D20376A09F7D | sha512: 8250CDD86256BF2F14982637A1EE94B99AC7CB3EACEDC89C546635A1E688E1DBC15674D546E57A583FA5E08D73264635C3EAFBB8B1C51E00EC44A7C3FF20CF86
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 26A94979580C59678B87C67BD6B13C37 | sha1: 6E2BB03CB8BED34D9E1A4EC3D25B7500D7BB0463 | sha256: F68B35E75CE99E4B568B2F59B97EA231E78E5E5038B7B341C8D677ABBBC0E23F | sha512: AD0554E14C37D1275504448BF207350BE9CB2F11D25B31E8D6564104E207504772ECDFA9A2515D479BFEBCE5D01BC6B31C952D9EBBC84573C51C656347F1F3F8
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 79C072D5A37222B11DED2B65F7D8560E | sha1: 39852E9CBE10794E31EA916B99AF230529844A60 | sha256: 4D3F019345C7613BE6BDEA05D65627C854F1A764CE36AFA61E95676488534BDA | sha512: 0BCDEBB3C2F1C3D5C360502C7481E6476A8730A923767E9C3293898D0D8B11347A48E371927AE62FBD25A85A3F273E66A18F4C46D7B202E21960102EE9CF876D
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 80566453652B45A7691A492A6046C802 | sha1: B04849A6269D701D711329C57A985067ECF62F25 | sha256: 5E5F43B46E1CA85845F3444F0401EBFFA84127221ECDA33628120A86615E1576 | sha512: 2D33221E584DBDD21118C0094C8F174D96B7A1AE4017F73E582191DDDF9BA555BFC96E2F4396F71A9AF6CB1D1A37DA93FA3765EE3263E894358206856BBA10B7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 92C01245F754BBC750A42F94AC7BE6D9 | sha1: 28E0C13F2316CB36BC88AB4D52EE8F46C0E9C4E6 | sha256: B0449DEE3965A67CCA4D3F4E566522F8305BDFC7B47DE1CF929E9CB6F090FA88 | sha512: BB2C8522570A6349F238B0045228A1D9075ACFC3246760A662CD4DDBB42250F9E39D89AE31BCB62DBAB68B98A4ACAC879BB879595F391E82EA0A25A94011C0BB
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 912CA31E69665E62BED1C45993AA3701 | sha1: 7BC88F49EA9D12198CE9684E246F7EF78094D068 | sha256: B628BB968FFD8441EA1CFFA3582571A17D7250DA8E2E01F3FF7627B04B00DE0C | sha512: 7204F6DDC5A346DCE39FE077861DBA531FD9E16B213B12704AEC7B20D19497CF9B8B84DB31D4F9D1AD4409EBE2CED13A14E23334CCE940A99A970C51AAA6BCE1
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 09AD318F8887FF9FA9BFD17BE36FFF4F | sha1: 277B847A355D45225C5CE67435AEDB47918F8D4A | sha256: 74F83E24121A3C812571AA3BD6BE974656385A02BB60470E0B9CF4A136FB5975 | sha512: 4A2AC069F9E35E60D09DAA9BDC609CB0DDFCC136994A8946E055B738A130CBF2D1D44E30436AD12CA9378B0EAE924FA0C4B943E96962BA9E656B6144EB291480
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Client.resources.dll
md5: B9E5576DC7FF1980AF1BC242D29B0AFD | sha1: 3046D4B017A5B68DBF0E891F689FABB21E49D1E6 | sha256: 9B405596FA71FC0053044CA71A725C0DD28726C719F6ADB9DDB4B1F0AADAE2C1 | sha512: BAF1CE9837FAFA729BAA1E4F2AF7DEBBCF99C042EFF4A9FE71218064FC58FA7490EC34344E9B79EAB5388F4ECD4B1622580C9063174B080FE788F6D256397106
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Common.resources.dll
md5: 6E7041C4B92EB0035CE9203EECC26C0C | sha1: A6B920842C4EF274E0CE0BD3863DA92C01CF0855 | sha256: 47B242254F634680FB57453F33754E28176C1D3FFC4D08AE4FAF322DE7AC3290 | sha512: 9EA162BCA282D021DB060EC8C052B11EAF579ACC00A0C5A33A365566359418F222AADE67DE3F1D9BC70FDD93EA50071F8490E273D3D12BEBF533ACCBB12DDBE7
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 533606D04A74CBA46CAA593D8DAFAB6C | sha1: AF8673E41BCD5E32D47082600EF71B6FD0AE2DE8 | sha256: 326E5CB0087A1E0DE9D9C8A1FED2504E2721A9193F8311FD2AA3B0C299D3AD9E | sha512: 423062C8FF1047BD786E696A2FF6D43BCFECD9A0D964C3440ACAFAA0C04F248546725AB236327DF7A6DA10DA082A5ECAB153367AA9472163C1BB5B56458C1308
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 04C0E92C52E1B326409FBA68EDA9F627 | sha1: 729E47ADC2EE3063B9E3466E2A9B5AD09F2E2E06 | sha256: C08AE593310516D4571DB5BA05F69DE298C66A68DFC1CE06840914AC680AAAE9 | sha512: 1D5A6589205F040128C7BF59BFC5F1051804A78CAF1389A4423EF5E4F2F7F8E6D664E5EF62917CF8382C921996FB9A2FA84D2E68875AE78780FBF98B10004428
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 6EF543C06AB318FEB59FFBB039C4CC08 | sha1: 031C5C561C23411B9567A37951D823DD83CE7E26 | sha256: BB90716BB979996E0DE2ED965786C44E3F1EAC55E9678A2F51F81A561DD527C7 | sha512: 8652F2DE56CCF588B69261FA0B13574B9584077DC77CA638134A9E533B75B1665C32F10888EF7CA479667B9A20D64739DC6C562CB05E129156359A476FBF7EB3
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: C3E5D44BAEE36AF4FAEC6B8BA111D903 | sha1: B6257BC62287662424EA62ABB2EBA455555B0FDA | sha256: FF456574A9AEC7E90B7EE1E8E8544BC386928A6058B4E8D5B5D19E537F850B70 | sha512: 6303EEA07B8F96EFB1031E03954C244F612EB6A385977060971930F70A9D1931E6675704F48106B3296E045B98D18A83F519F5CBA9E538F8392F19DAD46723DF
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: A9A248400AEC388EB916753F78F44840 | sha1: BAF8D4E6DF985EB0E5CB87FA0A718288EF4F0E8E | sha256: 090BCB601F0756113523165D35E9E03D33768AC94FDC0C1DD63E66D4BD7BC08D | sha512: C120AD7F244BAD9B648D7CA23EA4447721DCE6757F58AC76D126285919DBD7A23F3B76431FD3F39FCECD85CE26A70B713DCAABAD2D33AA9D77EC2DFCE3B33B80
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: A178133DB314B06736C8187328FA6045 | sha1: 3C8008E3434EB362FF9E02CD9DE7F8FD953FCDD0 | sha256: AE356F0EC07DF6D32DD906C42313F6572E6AAC8FCE0E027B69C5133360BF9A73 | sha512: 002B41B898DB2C6EED1A6FEA7652E656B92C2708959E2CA70D439166F2BBF75425AE0EBB154B2A6115A7FD20B9A6A21398BD7CA685A5A4C7006A3C2566B2493E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 1DFAD3C2B019D428B4674A38738617A7 | sha1: A612E931F68B376AFACA8B49D2B2EB16CC8A41D3 | sha256: 22FF0B547B07AAE7A4C027C10D5CC55B345CF27848A74AA3037EBCFA80454D87 | sha512: ECAA27B5D1CBF8878A4FF06697E63234E77D0D579A0204F3734210C814D81104AEA3A72C56EFA1235F9FAC16A929C094CBB19003E076871F1340A8D06EB9AD7D
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: D9A2140471DD28BC5C0DA21995253DCE | sha1: 824322EA9E70575307602FF7E17C7E6430952392 | sha256: CD0C56189FCE44AB85136077C7232D9B862975359F25089CC7F451495D764F79 | sha512: AAAE55A513144E569C933E46202733BF025D82935746965BF22D731E155CA77F3A50C62112D0016C5432116C7E505369F6C52F50EE1FB56BCB5BE669B8788E36
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: E2A9C782B9A6310BA8F939A72833BBFB | sha1: 38972E34BA9FC612E93C33595EBDECED8D8EEF16 | sha256: FDACA9C218DAC9BD8E91FABBE13187015430D0B3FD63CEC304C13E6EC9A3FE03 | sha512: A678630579E750D7169D87577A5FFF2F27D75950AE08B41AC6F05F38A9365DBB8E6F2D08DF222B421073277E7316A38B5262022543FEC30FBC6A5621449D2212
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 5BD3008BFE64481358215D9E64B50060 | sha1: 1008B1745DD012756B7078D4BB6C4D253DAEB27A | sha256: 3B747477DB34477D50126F200B3C1C7385FCC313592E7A7C50EBB195ED5B89F1 | sha512: FA8A565B7D372C6B1B7CCF34B7116CFDB53A83D34FEC653B43CD571312D5B090A98DB22B56F01F4F893CCF6C675EBD198E9A38FB2CA64285FAAAD41330294211
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: F1689E7B7E81CFFDB0EB4A0642D30EBD | sha1: 294582588006EF79E74ABC148942DA70A21A8027 | sha256: 240F3E275E885F39E04FE5271A92466A495753D660A5E7B2FFE590711125934A | sha512: 8D7A6605BD3FF27CD8248B022288573C5E0A97349F86EA49A7A84D396A12975EC7123C1DC829294D11C65113E663733C1A48485F2D5D93219D37D0F83B30E3E4
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 4FFC726E626010E40F90E5880AC6960D | sha1: C80DE57C19EFE9F33B77D3038FAD39D3049E9115 | sha256: FB6BF00D4A1597ABC1215939AA900E468368CFAF61A1188FA09A0D1551CFF04A | sha512: 050BA752CB249757B4190F1FEC03CDFA3818CDD5F293416397C574A7AD55EBD642CE70E5EA2B1022DBD476AC3E168F8F379AE68C7816B123A0B5D32B4B706041
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: E06FA82248AF89F497918CEE1076DAD1 | sha1: BE4E877F3E8C6D79DE3F51EB4EA0674C54329864 | sha256: 858F32226F6FD6F1660C181DDEA2E449D2DD6B253C191646A947F6D51D5C0DA8 | sha512: 25E528A1CAD83BCB2950B1467386F074CE06D445F556602230DCFDC5D550F269C9340188ED7111C4A7AA37E5A62258D0F8E511C3A46C2B5D680AE7DD4656C918
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 1DCE3CA50118CC787FE3ED4835C06B20 | sha1: 0FBF7C8BE4EBA839C73CAA08AC85BC50C6A37F59 | sha256: 70773B10A83C58FBE173153C34946A426A90508CFC43F34A284412686FA7E599 | sha512: AC02603D6861ED2F6EB91F4EC123F44AC5F3282174CD81E921889624182205CFC15E7CB4ACAC8FB0AEE667D6C45283EFC4E07F624450809C6920A6C07A9900F7
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 343501724A1293E538683296FD0B5344 | sha1: 37CC5E89ED7A68ABFC33103926CC67902526FAB8 | sha256: E183FCEB8DD53B8A9B9E222A2876938F37348FB59DAEBA6D258A38494F6C7CEA | sha512: 092ECCA5A280E81FF9275D9BB5179C1A499C748DB9CA1D6B7B8CED9235DD6A05B997E401D91AE9CA5AC7EC7A0874D801A01F633B89C4FC1E48EEBF930DBBA355
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: D9031FD234B11EBA9FC08870D4482E46 | sha1: AC080F517DA3A50C9C4B40DEA5AF8D28C90C43C5 | sha256: 645639B4F62F30E11DBA05E659A3A8A2558746CF9D76B28F8B5F4759764564E0 | sha512: 5F20A7A82645C0846C5CC2B9B3348DC52794548F31B45495C44F6E013254163B61AC89C1076BAF459C5F72526B2AD744290DE2DAC533D7A0D4618DC7D5433A74
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: D25CF42BEE6F6382657B7A56DA6ACB53 | sha1: 9A42B2CD82E098577F272FF2E8B2B13FE5A8ADEB | sha256: 0E79CA1E17C5CFD0D7DD5543126578BE3F598F72F050793D4383AB4B4BA82888 | sha512: B567852E7667DEEE247B882FCF95CFC055EDD5E4D0AFD34881DE90BE986D4FAA8F5D0A5706C93343FF88C0209602EC2B325F6042B74ED0CF381AA1DBE9E7E30E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 235019586D7A63F2AC8BA865EA99F9CC | sha1: 6E905228301A47B4A85FF03B2FD483FA3E82DB0E | sha256: 87029FD4DBAC3E5BEF4B7BB406EC60A9B57C219789335A25971F7F929A8C451D | sha512: 5C86A1682793BD00224B8B6635ACCD71C6E069D5E948F22F0AE6B05B54B3891DD9FD48EB8A65CFCA2587853169F731D523935D53328A62364C914265DFA91970
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 2B5E2B38823F203FE7F0E22AEAE46098 | sha1: 018F53D1DB7D388E535C00D5A2C9D416FFD8149C | sha256: CF3B1A4F248A0F5E0363EDCCB91C31DEBDC5E19044AD915463AD36C9102C7DB4 | sha512: 0F52F4AD90EE151BC2FA0324C6E79916617DB26371A2289B3D461DC75B602804FCBF6DD36AEAF97362DDFEB30B81F495C719D9F40EE21BA8E73420FE64B2011A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 17CA1BF244995C371A4F6D3B37D56066 | sha1: 551047CC43D9D5D5C17136D89E839B3180169301 | sha256: 193426CDAC079118E88A8097C7868BD2A102EF1F5011F455F9225557F3FEB63B | sha512: 91264C4685C35EF8E46718E5351FFEC17E962DA79D81CD5AE7C2E2B775A978BE0F2D0C78A44D1127114E9A1099595409B6D2E3FBF37E988C83ADD47D9470F5B6
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 1A3BC99482399F220EC989889A90885F | sha1: EA52A01710364BABF6174268D40F0DC8198A72A1 | sha256: 2FEF5BE67859A4C4D5A5B112AD648B95D3D6140C9259DB4F04950BFC85CF6A2A | sha512: 8988C43647F74230FBAF10B23B62AB63C36C17389155968AEA070363DCD1C5A6A196A7CA7706C0B98F3F19E84DC5F86A4A6BBCBBEFA88694E07747A7E9D07054
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: D280C06A1612853D30A1B1D86708042C | sha1: CC40A0E53D6A6D25A31DFE330EA4FB17132D6294 | sha256: A1860ABE59045C2DF27820F40055FEDE7EA1F7AEBB2B7F487E7949CA38E2471F | sha512: 69EB9547D9DFFF370E450C59E905EF18B16A4F494CA201EE575F0A302E1F76FAECE2D3EEAB1C6DB42797FA2CA8C9E490C6B041644CC3C95ECA8858C779C0A02F
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 15689A3C757BE2DEC4EEDF5ED8F132A5 | sha1: 79A610D581BF90D74E2F91D638EC3F0EA1DADF7C | sha256: C9F923DA0700F3256F8F9C10C192126FC26BD684671F2375934BAC470D1CCDC4 | sha512: 6978BC3F2C2FE2857982CC9D3E728A88B2DA8FF4FB2D06C9123831F77CB069C95273B3A0815997FE1A478D3F9F8A363E3DD7503FFDE3CA9A5CD39E8692F8F1AC
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: F2220A85F94A4A141CC9F867C759F03E | sha1: 93A10BAECD1C5B82A7326583C9EC14C86517CA33 | sha256: 7935D7A3096AFC6DBB4EA552C83A47A20919F57850D5C31DA3974EEE95CCC093 | sha512: C72BC44B21AA73F69684034635EDDB135ECE68FE99F384072AF13DE4C86A97C26B8603EEEB6788222C71624746492578E7ACE501C8B5611C46D6E3C973E9AA16
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 9C183464F452E99C427D40FEEDA30C36 | sha1: BB93631703D5348059F5FFCC0532A2CD59BA326D | sha256: 6ED6BC54DC0E29EA6363F97AC5D8E6BEDD0B64432495A4CE7D3C4CF907ACB398 | sha512: 31C45110044CFC061C88EB26D1B99757FE8F4E1EF27C76A7257F1793088A63C3511C46F89200EF2C0B198B22F80CF73F1909E19F3793D0E4045C43FB2E88A3F9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Client.resources.dll
md5: 833460C438ED653938CD32105C46071A | sha1: E104CC9FA817866E5334DEB5CB210AD83F8CACE0 | sha256: 60B43CC7AFB955B320B67359385DB459FA93BD5F3F801563D29F7061435AEF83 | sha512: 98820CB1A520FE1DCE24AA82FCBEC443A87744FD7F93C2894EE486937F42981997617E56986390946DF091662B2B01FAA3FB1894601F9059DD428031B8B151B6
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Common.resources.dll
md5: B145C8D2BC9868A5143BC473F4F87BE0 | sha1: B2D3BD61D4DA92F878DA3737A5CD13B7C3D9B7BF | sha256: 2D5B3F3F5F34FA1D5B4FFFF44AD95BC9277E6B1BD9BFE88A105347D912B5D5F2 | sha512: 9E8DE5C33517E55C3D82D10820643CB439915479884251B86798BB7FEF1C404F37F37FA52BE40774A27F600212D2CEF998F4583B9B5A9DCAC62401089F3E5871
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 3E5B6193BDDA1CA6F120D0D17DD7FB1B | sha1: EF5A2AFF1A794EFC403329EC96DC25D673F2EB33 | sha256: 7AF0C4E777748A1780D4A0134174367102A8C63416F1E41C8D4AB0FC04182766 | sha512: 63A5B058614029CB4BA0DBBEC8A438E1D7D77B11DA3A5838B20B20093FEE967DB56633BE436AFA86641E952428A5D3071317AE59BA615767E2613FCA42D713C8
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 746B331D8874915F0D2F4BAFEDAC0A94 | sha1: DF4A57C4E6E851B935204882E53F0C0AC0AB6B4C | sha256: F2A25950609467D349C6B418A09CCCAD342997FC6F54344330950C3E8DAB314A | sha512: E41F9969F5AB536EFB446B700F1621F0C88A39393C05BEB4C78E6F7A5E64EAECBC1B95C298CF4FBCF09CB96ABDE83BE0BE5C61A562D741862CF6291FC4C869F9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: C26C6F23F4D378C79955977BFD3B39E7 | sha1: 1A1E0737237A2403B4A631B581EFCBA2532C2A72 | sha256: 32B65AF6EF5BD592038B8E3DE12D278EE5333AC3C98E0F9569BDA37BB9E5D1D7 | sha512: 76A08DE3D4FA61E735E23B20E513C023A8352AB7DD85EB55BF54D73FF4DEBF1B2DCDF3818691F71A2846E4EEA3FF9B3157C4067CFD82E6396FCB5CC081D9476E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: F43E52839776D031DDF521356FFB5C9A | sha1: E37D03446F1C36A68BC9E86A982E6B0FEC2BC7D8 | sha256: 6DA4C89349A03D8990881F56A6E27FEEBB8B90964E4E0C7DC8D60ADA20304CCA | sha512: F20F21A0101CB74B762A2A23072DA53A62A3462E0DD53AE3C35559357F19FABB22AC52E4644623D5D5E57FC0A96AAC3A3069CFD0C72469D2BE8D89E495527015
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 445A4C9FC84C78E2BDDBFDFCFEF2F8F8 | sha1: 2E17DF46B6935868DDA440218B9711DE254EF2B0 | sha256: 9B961FE02BC3F5727CB4FBD23DD327F6623E2A25EB0393AA8FD1534E4A694315 | sha512: 7276388C01D9067FCD689BC705DAAE6921FF10E3101161031F136A8CBDFF10284A8CCED0FC0457DB2A394EE6CEA32A4587B88293F9E96F8216F939269A8C07B9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: C9D123126D1B97B626AD690B9C1E57C4 | sha1: 0D7D1EFD0E1C3DA48BD389D85AE6C6DAD7DE8992 | sha256: 636F622C0DBFE9154C7B0C71267D95642021374F943C3416A46D87F41DD65EC7 | sha512: 74708934066713E8059A6688C17252C560CFDE9AC564474C4ABABCE5645F3693EA726EBBF528F728AA32A2405B7A1CE0A69894A97AF37507EEBF57C4F5C81F57
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 539C682FBCAFD4CD42620AA0DD6574E4 | sha1: E0D5EDB7B75BEF552D0E5ED86484C812EA08B62C | sha256: FF7CF39DDE590BFD1F337AA778E0F0FF76416F85948C159B548199BB9D498663 | sha512: CACFF03408C7C8CB06709183C5873C0D2EDDCD3E866E10E54DDA9FEFC817EB519449FF48B498FE1CB231D8E3F44CB39578A64DFB93602794C81C7C26FDB1442D
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 19B15B06B523B6D01806DEC8511C81A3 | sha1: BB568659EDABFCA94F8AD1B8A5E89FD80E2C4C88 | sha256: 3A82ED9DAD2657F868DCE09136951AA9C38A87A90D895690DD0F1CF23AC0379B | sha512: 86C7DE3DC6CD877DB560747C5DFEFACE26E5D70C41951EA655C8848DA3F9564175805096BF781EEB0D8E6157E2DC52187A65A0C700F13134C8F7B09A81EF9779
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 47078CE223E7E7A6610EFE52561FCBF8 | sha1: 015C27B4774F37527038166A9FEB9CAD8848996B | sha256: 0BAADFCBDEDC04F5402F6EEAA6DEA7A9E2034275FFD818DC8B4C8166641A8B82 | sha512: A9F9B5166E36621552A97F167422D4555D0D37D01A3511184D0AF8A49CDB49F45BFD4F8231AEA30D4E9646FC1FCF7198FC73A278813BCC4D33597BA1D3BC95D1
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 8FEA691C060C51B9BB0B0EFE27EB8B24 | sha1: 600AF781547422C3978AD6DBC6CAE7760B850601 | sha256: 6A8FBA10BC8D6E81A5A2E35B7992D052C3212C2B1861C6D362D830E9D6D1B3D7 | sha512: 3A854A17976BAA39A3272C460A7D28A15DF6BB531CEBF51FBF74D7C0BA83EBBA26AB70B732CF5F623A9D19C2CD90478E1BDA6FE0C8150EED80E1480C0E001E41
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: A0F744549CCD9D9CD2F5204C5CB4CAAD | sha1: 08F9369DA38CA45C494160C3F610987B9C637F37 | sha256: 3DB79021BEA4463A2C6CBFCF944BBE32A91212FE03348705BEBD12F7247B762E | sha512: 64F89D3B219E02C35D1D2B4946716A3433453CAA0E22C6E76A030DDC8EC37C99497BDBFF6CC25F625786C4367A37D5A5AD06AC9D21A383C90A517DDB9B88058B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 33AF37C255481216ECCA6068BB856FC4 | sha1: 1E2A040FE731D649522957D0D8F8F2CF100D5E35 | sha256: 70C7EE15DB61C5DF4F1A6D05205EE841532F8238F15CF27E5D51B1CE23204E57 | sha512: 08480F5C98B98C51428197535FEEB075A46A177A41B2A1274F8FACAD48794B0FD0DA4A11673233F3245AC5FDFB410D7F535CE1D5CF59371A7E7571357C4E6FAE
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: FE140465CECB202B9525614701AE3B09 | sha1: B4865922E4084E8703976CD5067738BBE3E99E98 | sha256: EB0F9E6EE18F9F2E508E8FF85A40C92F9446A6BE7AD6A6F8F58B069C2489D0BC | sha512: F4C0E65D4A6420699D8FB6005338D0238308A184383178F89B0613D295CD3CCC4661299CCDCF5A0AE3916DA427B6E49657ED4AD1F10A83BC2CBF4768962FA219
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: BC1545E7BF761374F4CCB9DAF16BB0E1 | sha1: B6A69A1A29EB954F4B4977573E96693A6766C3DB | sha256: EC0A526AE7A6F2586B0DA628DE277CE8AA77A72735AF17B6A44C747493360771 | sha512: 463D6A033159E5BE24D6FCB12EACEF75EABEBF3CD4F53A962B1979F4124D002D6915D7915CCA5B69BB8FD90ED945995B529DD2B2345E4ACC89A1465B37649357
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: F1C8811FAAB0B2854E2DC671651FC898 | sha1: 171E529B997B29132012954A3D2D5BD070FD3388 | sha256: 4F7E94AAFF043572A6503FAB2356F337015447C0CD6F122885FAC1948FB950BB | sha512: D40700EF3054D073679E71D35A674137F8538819269BA340506E2C38FF5AF6AC9EE0763504CD98A3401A246A25CBEA58EA32E2ABF92D11661019CAFACA272939
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: A957EB23020849B10187D6A598E9115F | sha1: C2A4A18F2A85F0C9E55471F0FDE6A3D34BB21316 | sha256: 38745A26F6FCCA6048D28ED2AF638C68E85B130E592442026F3CD8F9ED5E91F1 | sha512: B0DBBB510B98C1A3923BE25E5DA67FBA2C45C4E3FCCDBDAE42D50D7839BBC6F6D763F9CA9CC838792167A71989A954F7CC982666482C0861B545945A959EB8E9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: FC96F73B3E488912D687BAEE572404BA | sha1: 1E144EB4F9A7BBD018539A4E4082EF9F526AD61C | sha256: 1B14FF3826B72E7B0C61E3202A9D30E56DBECEF0CB172D547752E33729A27837 | sha512: F2A5D12AE2E0F8E0BB8EC3686F55E000FFBD24CF9762AF18ABB9A00973C161C5CE131FA2D5116582CB8F2314929732CF650D4B23C131E3CF93A24903B3E1B559
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 1560292CD1B0287A2B33F85BE9920E5F | sha1: E2818432CBC7E63C8690BA6134BC4906C7520487 | sha256: 599B3F410AFB4126FD54FEE4B56E4970741D6AA1FAC0BE0BE997738245E6A205 | sha512: 37275ADC02FA6AF7F38B81D9D2E83971537A6116671EE608C3502560D927EEB9FF59E4C64841D77173130436DE4C5B3DF44FF2465B2A6C04D9D69AEC6816EE02
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 8A5FD83E4114A3AD58F39DB51C0FAD07 | sha1: B39C4D089C983D570C6C7EEF547042EB46F70A17 | sha256: EF2ECDF6AF2D954258C5C94F35A12B33D14ACCDC526EB4778B106E78DEB7E432 | sha512: 8E8355EE59B4F2960261F764C3AD034E11003FA96038DF54B12F81AE3BB29E86D2829C64B943BAC01E00B4DEA084AAA7467E2B7F2B155B9E126D0A0C21DAA566
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 80541FA8CDA8514DCA2C1B47DDB9B41F | sha1: 4BE16FB60BD0F5C5BD1732A83A72B48DD74EA7EA | sha256: F4A0C24AC7B6C1A673F9DD8777F2D4888FD30B4AEFC7AA595D7F39628D192184 | sha512: B290D4B5565BFCA62F6EDFA51D47BFE5E38A91F94F56005FBB68896B8784EB4FBCC56E26C1C9FB0344CD1E2629912BF09DBE9369A3774DA41C3B49314F210291
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: CFED6E7A1F1EBE8592DB0D5A43ED465F | sha1: 58FC4BDC38DE5069BCD7FF0333F11C6D25A9073F | sha256: F645C957C13F7FA1BBABDB99A2227887B2DD880829F1CDCDE84C659E755B1386 | sha512: 4C3C44E5EF37067B2DCE7A42BF54900E9ADA7439D06AD4EC311DA27EEDA310D3D0291901FFC868476D35E84A221F1F5BC95A26252E04F556D21EC0D5869AF690
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: A3E05FAA9F66166CBDAD126B4F89FD1C | sha1: 5A5E18506A846782F0A22FF330248B8E92DC1EAA | sha256: E20C8FF41858FD8002013B4ED9484156E34F30FBDF5B03F1174482A2486986E3 | sha512: E1CC61AC46D651EC45E69C0A723E8EB9582075FD5D4B7D70777BFB5F7D5E5A2D59B04513BABD49F5DD7F60881AB973EB1509A92C9CF1328A4141FBFA19B50881
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 6DB5D1B31E51788DB9FBA35576618D5E | sha1: 43F17579EE608C50FBEE710B3ED4117A46EB0D4D | sha256: A02B1B61F52A6633519035835DA7A073C9F2E83C7E0EA9DA4CBDA7EAEA27487D | sha512: 13277A1F6A632B1369BA171E1325F25BA30B70646F7CC1CB449E1FC635748470FF333D30551B07C9E6E387E62452A57351DE02EFF16908FED0B6464B1826CC2F
tools\TfsCmdlets\LICENSE.md
The MIT License (MIT)

Copyright (c) 2014 Igor Abade de Vasconcellos Leite

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\TfsCmdlets\Private\Admin.psm1
Function _GetInstallationPath($Version, $Component = 'BaseInstallation')
{
	if(-not $Version)
	{
		foreach($v in 20..8)
		{
			if(Test-Path "HKLM:\Software\Microsoft\TeamFoundationServer\${v}.0")
            {
				$Version = "${v}.0"
				break
			}
		}
    
		if(-not $Version)
		{
			throw "No Team Foundation Server installation found in computer $([Environment]::MachineName)"
		}
	}

	$rootKeyPath = "HKLM:\Software\Microsoft\TeamFoundationServer\$Version"

	if ($Component -eq 'BaseInstallation')
	{
		$componentPath = $rootKeyPath
	}
	else
	{
		$componentPath = "$rootKeyPath\InstalledComponents\$Component"
	}

	if (-not (Test-Path $rootKeyPath))
	{
		throw "Team Foundation Server is not installed in computer $([Environment]::MachineName)"
	}

	if (-not (Test-Path $componentPath))
	{
		throw "Team Foundation Server component '$Component' is not installed in computer $([Environment]::MachineName)"
	}

	return _GetRegistryValue -Path $componentPath -Value 'InstallPath'
}

Function _GetConnectionString($Version)
{
	$path = _GetInstallationPath -Version $Version -Component ApplicationTier
	$webConfigPath = Join-Path $path 'Web Services/Web.config'
	$webConfig = [xml] (Get-Content $webConfigPath)

	return (Select-Xml -Xml $webConfig -XPath '/configuration/appSettings/add[@key="applicationDatabase"]/@value').Node.Value
}

Function _GetRegistryValue($Path, $Value)
{
    return Get-ItemProperty -Path $Path -ErrorAction Continue | Select-Object -ExpandProperty $Value
}

Function _TestRegistryValue($Path, $Value)
{
    try
    {
        _GetRegistryValue -Path $Path -Value $Value | Out-Null
        return $true
    }
    finally {}

    return $false
}

tools\TfsCmdlets\Private\Aliases.psm1
Set-Alias -Name 'ctfs' -Value 'Connect-TfsTeamProjectCollection'
tools\TfsCmdlets\Private\Prompt.ps1
Function prompt {
 
    $defaultPsPrompt = "$($ExecutionContext.SessionState.Path.CurrentLocation)$('>' * ($NestedPromptLevel + 1)) "

    $escBgBlue = "$([char]0x1b)[44m"
    $escBgCyan = "$([char]0x1b)[46m"
    $escBgMagenta = "$([char]0x1b)[45m"
    $escBgGray = "$([char]0x1b)[40;1m"

    $escFgGray = "$([char]0x1b)[30;1m"
    $escFgWhite = "$([char]0x1b)[37;1m"
    $escReset = "$([char]0x1b)[40m$([char]0x1b)[0m"

    try {
        $tpc = (Get-TfsTeamProjectCollection -Current)
        $tp = (Get-TfsTeamProject -Current)
        $t = (Get-TfsTeam -Current)

        if (-not $tpc) {
            return "${escBgGray}${escFgGray}[Not connected]$escReset" + [System.Environment]::NewLine + $defaultPsPrompt
        }

        $serverName = $tpc.Uri.Host;
        
        if ($tpc.AuthorizedIdentity.UniqueName) {
            $userName = $tpc.AuthorizedIdentity.UniqueName
        }
        else {
            $userName = $tpc.AuthorizedIdentity.Properties['Account']
        }

        if ($serverName -like '*.visualstudio.com') {
            $tpcName = $serverName.SubString(0, $serverName.IndexOf('.'))
            $promptPrefix = "${escBgCyan}${escFgWhite}[$tpcName.visualstudio.com"
        }
        elseif ($serverName -eq 'dev.azure.com') {
            $tpcName = $tpc.Uri.Segments[1]
            $promptPrefix = "${escBgCyan}${escFgWhite}[dev.azure.com > $tpcName"
        }
        else {
            $promptPrefix = "${escBgMagenta}${escFgWhite}[$($tpc.Uri.Host)"

            if ($tpc) {
                if ($tpc.Name) {
                    $promptPrefix += " > $($tpc.Name)"
                }
                else {
                    $promptPrefix += " > $($tpc.Uri.Segments[-1])"
                }
            }
        }

        if ($tp) {
            $promptPrefix += " > $($tp.Name)"
        }

        if ($t) {
            $promptPrefix += " > $($t.Name)"
        }

        if ($userName) {
            $promptPrefix += " ${escFgGray}(${userName})$escFgWhite"
        }

        $promptPrefix += "]$escReset"
    }
    catch { }

    return $promptPrefix + [System.Environment]::NewLine + $defaultPsPrompt
}
tools\TfsCmdlets\Prompt.ps1
Function prompt {
 
    $defaultPsPrompt = "$($ExecutionContext.SessionState.Path.CurrentLocation)$('>' * ($NestedPromptLevel + 1)) "

    $escBgBlue = "$([char]0x1b)[44m"
    $escBgCyan = "$([char]0x1b)[46m"
    $escBgMagenta = "$([char]0x1b)[45m"
    $escBgGray = "$([char]0x1b)[40;1m"

    $escFgGray = "$([char]0x1b)[30;1m"
    $escFgWhite = "$([char]0x1b)[37;1m"
    $escReset = "$([char]0x1b)[40m$([char]0x1b)[0m"

    try {
        $tpc = (Get-TfsTeamProjectCollection -Current)
        $tp = (Get-TfsTeamProject -Current)
        $t = (Get-TfsTeam -Current)

        if (-not $tpc) {
            return "${escBgGray}${escFgGray}[Not connected]$escReset" + [System.Environment]::NewLine + $defaultPsPrompt
        }

        $serverName = $tpc.Uri.Host;
        
        if ($tpc.AuthorizedIdentity.UniqueName) {
            $userName = $tpc.AuthorizedIdentity.UniqueName
        }
        else {
            $userName = $tpc.AuthorizedIdentity.Properties['Account']
        }

        if ($serverName -like '*.visualstudio.com') {
            $tpcName = $serverName.SubString(0, $serverName.IndexOf('.'))
            $promptPrefix = "${escBgCyan}${escFgWhite}[$tpcName.visualstudio.com"
        }
        elseif ($serverName -eq 'dev.azure.com') {
            $tpcName = $tpc.Uri.Segments[1]
            $promptPrefix = "${escBgCyan}${escFgWhite}[dev.azure.com > $tpcName"
        }
        else {
            $promptPrefix = "${escBgMagenta}${escFgWhite}[$($tpc.Uri.Host)"

            if ($tpc) {
                if ($tpc.Name) {
                    $promptPrefix += " > $($tpc.Name)"
                }
                else {
                    $promptPrefix += " > $($tpc.Uri.Segments[-1])"
                }
            }
        }

        if ($tp) {
            $promptPrefix += " > $($tp.Name)"
        }

        if ($t) {
            $promptPrefix += " > $($t.Name)"
        }

        if ($userName) {
            $promptPrefix += " ${escFgGray}(${userName})$escFgWhite"
        }

        $promptPrefix += "]$escReset"
    }
    catch { }

    return $promptPrefix + [System.Environment]::NewLine + $defaultPsPrompt
}
tools\TfsCmdlets\README.md
# TfsCmdlets: PowerShell Cmdlets for Azure DevOps and Team Foundation Server

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/igoravl/tfscmdlets/master/LICENSE.md) [![Build status](https://github.com/igoravl/TfsCmdlets/actions/workflows/main.yml/badge.svg?label=Build)](https://github.com/igoravl/TfsCmdlets/actions/workflows/main.yml) [![GitHub release](https://img.shields.io/github/release/igoravl/tfscmdlets.svg)](https://github.com/igoravl/tfscmdlets/releases) [![Issues](https://img.shields.io/github/issues/igoravl/tfscmdlets.svg)](https://github.com/igoravl/tfscmdlets/issues) [![Forks](https://img.shields.io/github/forks/igoravl/tfscmdlets.svg)](https://github.com/igoravl/tfscmdlets/forks) [![Stars](https://img.shields.io/github/stars/igoravl/tfscmdlets.svg)](https://github.com/igoravl/tfscmdlets/stargazers)

[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/tfscmdlets?label=PSGallery)](https://www.powershellgallery.com/packages/TfsCmdlets) [![NuGet](https://img.shields.io/nuget/dt/TfsCmdlets.svg?label=Nuget)](http://nuget.org/packages/tfscmdlets) [![Chocolatey](https://img.shields.io/chocolatey/dt/TfsCmdlets.svg?label=Chocolatey)](http://chocolatey.org/packages/tfscmdlets) ![GitHub all releases](https://img.shields.io/github/downloads/igoravl/tfscmdlets/total?label=GitHub)

## What is TfsCmdlets?

TfsCmdlets is a PowerShell module which provides many commands ("cmdlets" in PowerShell parlance) to simplify automated interaction with Team Foundation Server (2010 to 2018) and Azure DevOps (Server 2019+ and Services).

By using TfsCmdlets, Azure DevOps administrators and/or power users can create scripts to automate many different tasks, ranging from retrieving work items to creating new team project collections.

TfsCmdlets is available in many installation formats. It also includes **Azure DevOps Shell**, a PowerShell window pre-configured to make interacting with Azure DevOps via command line a joy!

![Azure DevOps Shell](Assets/TfsShell.png)

## Quick start guide

Do you have an Azure DevOps account created? Awesome! If not, you might want to [create one](https://azure.microsoft.com/en-us/services/devops/).

> **HINT**: Optionally, you may consider to leverage the [Azure DevOps Demo Generator](https://azuredevopsdemogenerator.azurewebsites.net/) to fill a team project with sample data, in order to have a sandbox to play with. The examples below will assume that you created a team project called **PartsUnlimited**, based on the namesake template available at the Azure DevOps Generator web site.

Next, install TfsCmdlets in your computer (see section "_How to install_", below), open a PowerShell window and try the following commands:

```PowerShell
# Connect to your Azure DevOps organization
# (Will be used as default for the -Collection argument when required by a cmdlet)
Connect-TfsTeamProjectCollection http://dev.azure.com/<your_organization_name>

# Get a list of team projects in the currently connected organization
Get-TfsTeamProject

# List the existing iterations in the PartsUnlimited team project
Get-TfsIteration -Project PartsUnlimited

# Connect to the PartsUnlimited team project
# (will be used as default for the -Project argument when required by a cmdlet)
Connect-TfsTeamProject PartsUnlimited

# Create a new iteration
New-TfsIteration 'Sprint 7'

# Get all bugs in the current team project
Get-TfsWorkItem -WorkItemType 'Bug'

# Create a new PBI in the 'Sprint 7' iteration
New-TfsWorkItem -Title 'New product backlog item' -Type 'Product Backlog Item' -Iteration 'Sprint 7'
```

## How to install

TfsCmdlets can be obtained from many different sources and in many different formats. Choose the one most suitable to you!

### PowerShell Gallery

If you're using Windows 10, Windows Server 2016 (or later) or have installed Windows Management Framework 5 (or later) then the simplest way to install TfsCmdlets is via [PowerShell Gallery](https://www.powershellgallery.com/).

Open an elevated PowerShell prompt and type:

```PowerShell
Install-Module TfsCmdlets
```

Optionally, you can install it locally in your user profile. That is particularly useful when you can't run as an administrator or don't want to make the module available to all users in the computer:

```PowerShell
Install-Module TfsCmdlets -Scope CurrentUser
```

[Package details](https://www.powershellgallery.com/packages/TfsCmdlets/)

### Windows Package Manager (winget)

The new [Windows Package Manager](https://github.com/microsoft/winget-cli) ("winget") is a command line tool that enables developers to discover, install, upgrade, remove and configure applications on Windows 10 computers. This tool is the client interface to the Windows Package Manager service.

To install TfsCmdlets via `winget`, open a command prompt and type:

```PowerShell
winget install TfsCmdlets
```

[Package details](https://github.com/microsoft/winget-pkgs/tree/master/manifests/i/Igoravl/TfsCmdlets/)

### Chocolatey

Using [Chocolatey](https://www.chocolatey.org/)? Then open an elevated PowerShell prompt and type:

```PowerShell
choco install TfsCmdlets
```

[Package details](https://community.chocolatey.org/packages/TfsCmdlets/)

### Nuget

Nuget is a great option if you need to integrate TfsCmdlets with your continuous integration process (e.g. you need to create a TFS work item during the execution of an automated build).

To add TfsCmdlets to your solution, search for **TfsCmdlets** in the Visual Studio "_Manage Nuget packages for solution..._" dialog.

- Note: To add the latest pre-release version of TfsCmdlets, don't forget check the "Include prerelease" checkbox

[Package details](http://www.nuget.org/packages/tfscmdlets)

### Offline installation

When the target machine is not connected to the internet, none of the options above are available. In that case, your best bet is one of the offline installation alternatives below.

You can get one of the offline installers listed below from the [GitHub Releases](https://github.com/igoravl/tfscmdlets/releases) page.

#### Full installer (MSI-based)

The full installer will install the module files to the Program Files folder in your computer, make the module available to PowerShell and create the **Azure DevOps Shell** icon in the Start Menu.

**To install the full installer**:

- Download the MSI file from the [Releases](https://github.com/igoravl/tfscmdlets/releases) page;
- Open the downloaded MSI file

> **NOTE**: If Windows SmartScreen flags the file as insecure and refuses to run it, you can click the "More info" button/link in the dialog and select the "Run anyway" option.

**To uninstall the full installer**:

- Use the _Programs and Features_ (formerly "Add and remove programs") function in the Windows Control Panel.

#### Portable installer

The portable installer is a zip file containing all the required the module files.

**To install the portable installer**:

- Download the zip file from the [Releases](https://github.com/igoravl/tfscmdlets/releases) page;
- Open your Documents folder in Windows, then open folder `WindowsPowerShell` (for PowerShell 5.1) or `PowerShell` (for PowerShell 6+);
- Inside the PowerShell folder, create a new folder called `Modules` in it (if missing) and then create a new folder called `TfsCmdlets` in `Modules`;
- Extract the contents of the zip file to the `TfsCmdlets` folder.

You must end up with a folder structure similar to `[Documents]\[Windows]PowerShell\Modules\TfsCmdlets`. Files such as `TfsCmdlets.psd1` must be located in the TfsCmdlets folder.

To test the installation, open a new PowerShell window and type:

```PowerShell
Import-Module TfsCmdlets
```

**To uninstall the portable installer**:

- Close all PowerShell windows where you were using TfsCmdlets (to free files in use);
- Delete the `TfsCmdlets` folder from the `[Documents]\[Windows]PowerShell\Modules` folder.

## Contribution Guidelines

- [Contributor Guide](CONTRIBUTING.md)
- [Code of Conduct](CODE_OF_CONDUCT.md)

## Additional Information

- [Online Documentation](https://tfscmdlets.dev/)
- [Release Notes](https://github.com/igoravl/TfsCmdlets/blob/master/RELEASENOTES.md)
tools\TfsCmdlets\RELEASENOTES.md
# TfsCmdlets Release Notes

## Version 2.1.4 (_30/Nov/2021_)

This release fixes a couple issues in `Get-TfsIdentity` and `Invoke-TfsRestApi`.

## Fixes

- **Error when using Get-TfsIdentity with Azure DevOps Services**: Get-TfsIdentity is a cmdlet that helps to deal with legacy APIs, such as the Azure DevOps Security API. To fetch an identiy, it connected to a configuration server (the "root" of an Azure DevOps installation) and called the required API. However, connecting to a configuration server is not supported when using Azure DevOps Services. Now, when used with Azure DevOps Services, Get-TfsIdentity will use the collection (organization) scope for the API, whereas calls to the on-prem server still target the configuration server.

- **Error calling Invoke-TfsRestApi for alternate hosts under Windows PowerShell (Desktop)**: There was a bug in the implementation of Invoke-TfsRestApi that caused it to fail when using alternate hosts in Windows PowerShell. This has been fixed.

-----------------------

## Previous Versions

### Version 2.1.3 (_25/Nov/2021_)

See release notes [here](Docs/ReleaseNotes/2.1.3.md).

### Version 2.1.2 (_10/Sep/2021_)

See release notes [here](Docs/ReleaseNotes/2.1.2.md).

### Version 2.1.1 (_08/Sep/2021_)

See release notes [here](Docs/ReleaseNotes/2.1.1.md).

### Version 2.1.0 (_13/Aug/2021_)

See release notes [here](Docs/ReleaseNotes/2.1.0.md).

### Version 2.0.1 (_02/Aug/2021_)

See release notes [here](Docs/ReleaseNotes/2.0.1.md).

### Version 2.0.0 (_02/Aug/2021_)

See release notes [here](Docs/ReleaseNotes/2.0.0.md).

### Version 2.0.0-rc.5 (_17/Apr/2021_)

See release notes [here](Docs/ReleaseNotes/2.0.0-rc.5.md).

### Version 2.0.0-rc.4 (_05/Apr/2021_)

See release notes [here](Docs/ReleaseNotes/2.0.0-rc.4.md).

### Version 2.0.0-rc.3 (_19/Feb/2021_)

See release notes [here](Docs/ReleaseNotes/2.0.0-rc.3.md).

### Version 2.0.0-rc.2 (_30/Nov/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-rc.2.md).

### Version 2.0.0-rc.1 (_21/Nov/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-rc.1.md).

### Version 2.0.0-beta.16 (_26/Oct/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.16.md).

### Version 2.0.0-beta.15 (_21/Jul/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.15.md).

### Version 2.0.0-beta.14 (_19/Jul/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.14.md).

### Version 2.0.0-beta.13 (_18/Jul/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.13.md).

### Version 2.0.0-beta.12 (_14/Jul/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.12.md).

### Version 2.0.0-beta.11 (_21/Jan/2020_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.11.md).

### Version 2.0.0-beta.10 (_12/Sep/2019_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.10.md).

### Version 2.0.0-beta.9 (_10/Sep/2019_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.9.md).

### Version 2.0.0-beta.8 (_06/Sep/2019_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.8.md).

### Version 2.0.0-beta.6 (_02/Sep/2019_)

See release notes [here](Docs/ReleaseNotes/2.0.0-beta.6.md).

### 1.0.0-alpha7 (_22/Oct/2015_)

See release notes [here](Docs/ReleaseNotes/1.0.0-alpha7.md).

### 1.0.0-alpha6 (_22/Oct/2015_)

See release notes [here](Docs/ReleaseNotes/1.0.0-alpha6.md).

### 1.0.0-alpha5 (_10/Sep/2015_)

See release notes [here](Docs/ReleaseNotes/1.0.0-alpha5.md).

### 1.0.0-alpha4 (_03/Sep/2015_)

See release notes [here](Docs/ReleaseNotes/1.0.0-alpha4.md).

### 1.0.0-alpha3 (_03/Sep/2015_)

See release notes [here](Docs/ReleaseNotes/1.0.0-alpha3.md).
tools\TfsCmdlets\TfsCmdlets.dll-Help.xml
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
  <!-- Cmdlet: Get-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Get-TfsArea</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsArea</dev:code>
        <dev:remarks>
          <maml:para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsArea '\**\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Move-TfsArea</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>New-TfsArea</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Creates a new Work Item Area in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Remove-TfsArea</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: MoveTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
          <maml:name>MoveTo</maml:name>
          <maml:description>
            <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes node(s) recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: MoveTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>NewPath</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          <maml:para>This is an alias of the MoveTo parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes node(s) recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Rename-TfsArea</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Renames a Work Area. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Test-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Test-TfsArea</command:name>
      <command:verb>Test</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Determines whether the specified Work Area exist. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Test-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
    <command:details>
      <command:name>Get-TfsBuildDefinitionFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Gets one or more build/pipeline definition folders in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
          </maml:description>
          <command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
        </maml:description>
        <command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Get-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
    <command:details>
      <command:name>New-TfsBuildDefinitionFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Creates a new build/pipeline definition folder </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any child folders. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/New-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
    <command:details>
      <command:name>Remove-TfsBuildDefinitionFolder</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Deletes one or more build/pipeline definition folders. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Remove-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsConfigurationServer</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Connects to a configuration server. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, it is represented by the Tfs_Configuration database. Operations that should be performed on a server level (such as setting server-level permissions) require a connection to a TFS configuration server. Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. NOTE: Currently it is only supported in Windows PowerShell. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</dev:code>
        <dev:remarks>
          <maml:para>Connects to the TFS server specified by the URL in the Server argument</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsConfigurationServer -Server vsalm</dev:code>
        <dev:remarks>
          <maml:para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsConfigurationServer</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected configuration server. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsConfigurationServer</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
    <command:details>
      <command:name>Get-TfsConfigurationServer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Gets information about a configuration server. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by server -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by server">
        <maml:name>Get-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsConfigurationServer</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsConfigurationServerConnectionString -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsConfigurationServerConnectionString</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsConfigurationServerConnectionString</command:noun>
      <maml:description>
        <maml:para>Gets the configuration server database connection string. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Use computer name -->
      <command:syntaxItem tfscmdlets:parameterSet="Use computer name">
        <maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
        <!-- Parameter: ComputerName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ComputerName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>localhost</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use session -->
      <command:syntaxItem tfscmdlets:parameterSet="Use session">
        <maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
        <!-- Parameter: Session -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Session</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSSession</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ComputerName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ComputerName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>localhost</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Session -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Session</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSSession</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSCredential</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCredential</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsConfigurationServerConnectionString</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Online version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TfsInstallationPath</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsCredential -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>New-TfsCredential</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsCredential</command:noun>
      <maml:description>
        <maml:para>Provides credentials to use when you connect to a Team Foundation Server or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Url -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Url</maml:name>
        <maml:description>
          <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Uri</command:parameterValue>
        <dev:type>
          <maml:name>System.Uri</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: VssCredentials -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Common.VssCredentials</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/New-TfsCredential</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitBranch -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Branch">
    <command:details>
      <command:name>Get-TfsGitBranch</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitBranch</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more branches in a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by name">
        <maml:name>Get-TfsGitBranch</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default">
        <maml:name>Get-TfsGitBranch</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default branch in the given repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default branch in the given repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitBranchStats -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Branch/Get-TfsGitBranch</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitBranchPolicy -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
    <command:details>
      <command:name>Get-TfsGitBranchPolicy</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitBranchPolicy</command:noun>
      <maml:description>
        <maml:para>Gets the Git branch policy configuration of the given Git branches. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitBranchPolicy</maml:name>
        <!-- Parameter: PolicyType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>PolicyType</maml:name>
          <maml:description>
            <maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: PolicyType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>PolicyType</maml:name>
        <maml:description>
          <maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PolicyConfiguration -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitBranchPolicy</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitPolicyType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
    <command:details>
      <command:name>Get-TfsGitPolicyType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitPolicyType</command:noun>
      <maml:description>
        <maml:para>Gets one or more Git branch policies supported by the given team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitPolicyType</maml:name>
        <!-- Parameter: PolicyType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>PolicyType</maml:name>
          <maml:description>
            <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: PolicyType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>PolicyType</maml:name>
        <maml:description>
          <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
          <maml:para>This is an alias of the PolicyType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PolicyType -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyType</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitPolicyType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Disable-TfsGitRepository</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Disables one or more Git repositories. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Disables access to the repository. When a repository is disabled it cannot be accessed (including clones, pulls, pushes, builds, pull requests etc) but remains discoverable, with a warning message stating it is disabled. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Disable-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Enable-TfsGitRepository</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Enables one or more Git repositories. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlets re-enables access to a repository. When a repository is disabled it cannot be accessed (including clones, pulls, pushes, builds, pull requests etc) but remains discoverable, with a warning message stating it is disabled. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Enable-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Get-TfsGitRepository</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Get-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>New-TfsGitRepository</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Creates a new Git repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new repository </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/New-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Remove-TfsGitRepository</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Git repositories from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Remove-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Rename-TfsGitRepository</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Renames a Git repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Rename-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Export-TfsGlobalList</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Exports the contents of one or more Global Lists to XML. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlets generates an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist" </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>To export or list global lists, you must be a member of the Project Collection Valid Users group or have your View collection-level information permission set to Allow. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsGlobalList | Out-File "gl.xml"</dev:code>
        <dev:remarks>
          <maml:para>Exports all global lists in the current project collection to a file called gl.xml.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsGlobalList -Name "Builds - *"</dev:code>
        <dev:remarks>
          <maml:para>Exports all build-related global lists (with names starting with "Build - ") and return the resulting XML document.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Export-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Get-TfsGlobalList</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more Global Lists. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: GlobalList -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.GlobalList</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Get-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Import-TfsGlobalList</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Imports one or more Global Lists from an XML document </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdletsimports an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist" </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsGlobalList</maml:name>
        <!-- Parameter: InputObject -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
          <maml:name>InputObject</maml:name>
          <maml:description>
            <maml:para>XML document object containing one or more global list definitions. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite a global list that already exists. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: InputObject -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
        <maml:name>InputObject</maml:name>
        <maml:description>
          <maml:para>XML document object containing one or more global list definitions. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
        <maml:name>Xml</maml:name>
        <maml:description>
          <maml:para>XML document object containing one or more global list definitions. </maml:para>
          <maml:para>This is an alias of the InputObject parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite a global list that already exists. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>XML document object containing one or more global list definitions. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:alertSet>
      <maml:para>To import global lists, you must be a member of the Project Collection Administrators security group. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-Content gl.xml | Import-GlobalList</dev:code>
        <dev:remarks>
          <maml:para>Imports the contents of an XML document called gl.xml to the current project collection</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Import-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>New-TfsGlobalList</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Creates a new Global List. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Items -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
          <maml:name>Items</maml:name>
          <maml:description>
            <maml:para>Specifies the contents (items) of the new global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new global list. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Items -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
        <maml:name>Items</maml:name>
        <maml:description>
          <maml:para>Specifies the contents (items) of the new global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new global list. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the contents (items) of the new global list. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PSCustomObject -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCustomObject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/New-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Remove-TfsGlobalList</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Global Lists. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Remove-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Rename-TfsGlobalList</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Changes either the name or the contents of a Global List. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Rename-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Set-TfsGlobalList</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Changes the contents of a Global List. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global list to be changed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Add -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Add</maml:name>
          <maml:description>
            <maml:para>Specifies a list of items to be added to the global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Creates a new list if the specified one does not exist. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Remove -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Remove</maml:name>
          <maml:description>
            <maml:para>Specifies a list of items to be removed from the global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be changed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be changed. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Add -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Add</maml:name>
        <maml:description>
          <maml:para>Specifies a list of items to be added to the global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Remove -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Remove</maml:name>
        <maml:description>
          <maml:para>Specifies a list of items to be removed from the global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Creates a new list if the specified one does not exist. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the global list to be changed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Set-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Add-TfsGroupMember</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Adds group members to an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsGroupMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to which the member is added. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to which the member is added. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Add-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Get-TfsGroupMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a Azure DevOps group </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGroupMember</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group fom which to get its members. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group fom which to get its members. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the group fom which to get its members. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Get-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Remove-TfsGroupMember</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Removes a member from an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGroupMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group from which the member is removed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group from which the member is removed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Remove-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsIdentity -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity">
    <command:details>
      <command:name>Get-TfsIdentity</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsIdentity</command:noun>
      <maml:description>
        <maml:para>Gets one or more identities that represents either users or groups in Azure DevOps. This cmdlet resolves legacy identity information for use with older APIs such as the Security APIs. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get Identity -->
      <command:syntaxItem tfscmdlets:parameterSet="Get Identity">
        <maml:name>Get-TfsIdentity</maml:name>
        <!-- Parameter: Identity -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Identity</maml:name>
          <maml:description>
            <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
            <maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryMembership</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Direct</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current user -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current user">
        <maml:name>Get-TfsIdentity</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Identity -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Identity</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryMembership -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryMembership</maml:name>
        <maml:description>
          <maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
          <maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryMembership</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Direct</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Get-TfsIdentity</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsIdentitySync -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Start-TfsIdentitySync</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsIdentitySync</command:noun>
      <maml:description>
        <maml:para>Triggers an Identity Sync server job. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsIdentitySync</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Wait -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Wait</maml:name>
          <maml:description>
            <maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Wait -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Wait</maml:name>
        <maml:description>
          <maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Start-TfsIdentitySync</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsInstallationPath -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsInstallationPath</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsInstallationPath</command:noun>
      <maml:description>
        <maml:para>Gets the installation path of a given Team Foundation Server component. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Many times a Team Foundation Server admin needs to retrieve the location where TFS is actually installed. That can be useful, for instance, to locate tools like TfsSecurity or TfsServiceControl. That information is recorded at setup time, in a well-known location in the Windows Registry of the server where TFS is installed. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Use computer name -->
      <command:syntaxItem tfscmdlets:parameterSet="Use computer name">
        <maml:name>Get-TfsInstallationPath</maml:name>
        <!-- Parameter: Component -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Component</maml:name>
          <maml:description>
            <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
            <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
          </maml:description>
          <command:parameterValue required="true">TfsComponent</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.TfsComponent</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>BaseInstallation</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: ComputerName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ComputerName</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>localhost</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use session -->
      <command:syntaxItem tfscmdlets:parameterSet="Use session">
        <maml:name>Get-TfsInstallationPath</maml:name>
        <!-- Parameter: Session -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Session</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSSession</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Component -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Component</maml:name>
          <maml:description>
            <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
            <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
          </maml:description>
          <command:parameterValue required="true">TfsComponent</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.TfsComponent</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>BaseInstallation</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ComputerName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ComputerName</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>localhost</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Session -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Session</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSSession</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Component -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Component</maml:name>
        <maml:description>
          <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
          <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
        </maml:description>
        <command:parameterValue required="true">TfsComponent</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.TfsComponent</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>BaseInstallation</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSCredential</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCredential</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsInstallationPath -Version 2017</dev:code>
        <dev:remarks>
          <maml:para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</dev:code>
        <dev:remarks>
          <maml:para>Gets the location where the SharePoint Extensions have been installed in the remote server SPTFSSRV, prompting for admin credentials to be used for establishing a PS Remoting session to the server</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsInstallationPath</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Get-TfsIteration</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration</dev:code>
        <dev:remarks>
          <maml:para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration '\**\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Move-TfsIteration</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration</dev:code>
        <dev:remarks>
          <maml:para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration '\\**\\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>New-TfsIteration</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Creates a new Iteration in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FinishDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FinishDate</maml:name>
          <maml:description>
            <maml:para>Sets the finish date of the iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FinishDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FinishDate</maml:name>
        <maml:description>
          <maml:para>Sets the finish date of the iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Remove-TfsIteration</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: MoveTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
          <maml:name>MoveTo</maml:name>
          <maml:description>
            <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes node(s) recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: MoveTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>NewPath</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          <maml:para>This is an alias of the MoveTo parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes node(s) recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Rename-TfsIteration</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Renames a Iteration. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Set-TfsIteration</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Modifies the dates of an iteration. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FinishDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>FinishDate</maml:name>
          <maml:description>
            <maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FinishDate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>FinishDate</maml:name>
        <maml:description>
          <maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Set-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Test-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Test-TfsIteration</command:name>
      <command:verb>Test</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Determines whether the specified Iteration exist. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Test-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Export-TfsProcessTemplate</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Exports a XML-based process template definition to disk. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlet offers a functional replacement to the "Export Process Template" feature found in Team Explorer. All files pertaining to the specified process template (work item defininitons, reports, saved queries, process configuration and so on) are downloaded from the given Team Project Collection and saved in a local directory, preserving the directory structure required to later re-import it. This is specially handy to do small changes to a process template or to create a new process template based on an existing one. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationPath</maml:name>
          <maml:description>
            <maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NewDescription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewDescription</maml:name>
          <maml:description>
            <maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template.  When omitted, the original description is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationPath</maml:name>
        <maml:description>
          <maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewDescription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewDescription</maml:name>
        <maml:description>
          <maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template.  When omitted, the original description is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</dev:code>
        <dev:remarks>
          <maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Export-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Get-TfsProcessTemplate</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more process templates. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by name">
        <maml:name>Get-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default process -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default process">
        <maml:name>Get-TfsProcessTemplate</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default process template in the given orgnization / project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default process template in the given orgnization / project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Process -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Get-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Import-TfsProcessTemplate</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Imports a process template definition from disk. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsProcessTemplate</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Visible</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Visible</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Import-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>New-TfsProcessTemplate</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Creates a new inherited process. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process to create. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new process. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Parent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Parent</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ReferenceName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ReferenceName</maml:name>
          <maml:description>
            <maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new process. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ReferenceName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ReferenceName</maml:name>
        <maml:description>
          <maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Parent -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Parent</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Process -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/New-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegisteredConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
    <command:details>
      <command:name>Get-TfsRegisteredConfigurationServer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegisteredConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Gets one or more Team Foundation Server addresses registered in the current computer. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegisteredConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
          <maml:para>This is an alias of the Server parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: RegisteredConfigurationServer -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Client.RegisteredConfigurationServer</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsRegisteredConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegisteredTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Get-TfsRegisteredTeamProjectCollection</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegisteredTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Gets one or more Team Project Collection addresses registered in the current computer. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegisteredTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsRegisteredTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegistryValue -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
    <command:details>
      <command:name>Get-TfsRegistryValue</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegistryValue</command:noun>
      <maml:description>
        <maml:para>Gets the value of a given Team Foundation Server registry entry. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. </maml:para>
      <maml:para>Registry entries can be scoped to the server, to a collection or to a specific user. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegistryValue</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the full path of the TFS Registry key </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
            <maml:para>Possible values: User, Collection, Server</maml:para>
          </maml:description>
          <command:parameterValue required="true">RegistryScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.RegistryScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Server</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the full path of the TFS Registry key </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
          <maml:para>Possible values: User, Collection, Server</maml:para>
        </maml:description>
        <command:parameterValue required="true">RegistryScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.RegistryScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Server</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Object -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
      <maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
        <dev:remarks>
          <maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Get-TfsRegistryValue</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsRegistryValue -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
    <command:details>
      <command:name>Set-TfsRegistryValue</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsRegistryValue</command:noun>
      <maml:description>
        <maml:para>Sets the value of a given Team Foundation Server registry entry. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the value specified in the command. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsRegistryValue</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the full path of the TFS Registry key </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Value -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Value</maml:name>
          <maml:description>
            <maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
            <maml:para>Possible values: User, Collection, Server</maml:para>
          </maml:description>
          <command:parameterValue required="true">RegistryScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.RegistryScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Server</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the full path of the TFS Registry key </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Value -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Value</maml:name>
        <maml:description>
          <maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
          <maml:para>Possible values: User, Collection, Server</maml:para>
        </maml:description>
        <command:parameterValue required="true">RegistryScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.RegistryScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Server</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Object -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
      <maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
        <dev:remarks>
          <maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Set-TfsRegistryValue</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsReleaseDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Get-TfsReleaseDefinition</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsReleaseDefinition</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more release definitions in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsReleaseDefinition</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: ReleaseDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.ReleaseDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Get-TfsReleaseDefinitionFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Gets one or more Release/pipeline definition folders in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, Ascending, Descending</maml:para>
          </maml:description>
          <command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, Ascending, Descending</maml:para>
        </maml:description>
        <command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>New-TfsReleaseDefinitionFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Creates a new release definition folder. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/New-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Remove-TfsReleaseDefinitionFolder</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Deletes one or more release definition folders. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Remove-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Invoke-TfsRestApi -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
    <command:details>
      <command:name>Invoke-TfsRestApi</command:name>
      <command:verb>Invoke</command:verb>
      <command:noun>TfsRestApi</command:noun>
      <maml:description>
        <maml:para>Invoke an Azure DevOps REST API. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Invoke-TfsRestApi can automatically parse an example URL from https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens (such as {organization}, {project} and {team}) as long as collection / project / team information are available via either the their respective arguments in this command or the corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted from the supplied example, when available. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Invoke-TfsRestApi</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AdditionalHeaders -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AdditionalHeaders</maml:name>
          <maml:description>
            <maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ApiVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ApiVersion</maml:name>
          <maml:description>
            <maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>4.1</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: AsTask -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsTask</maml:name>
          <maml:description>
            <maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Body -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
          <maml:name>Body</maml:name>
          <maml:description>
            <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Method -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Method</maml:name>
          <maml:description>
            <maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>GET</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoAutoUnwrap -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoAutoUnwrap</maml:name>
          <maml:description>
            <maml:para>Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryParameters -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryParameters</maml:name>
          <maml:description>
            <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Raw -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Raw</maml:name>
          <maml:description>
            <maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: RequestContentType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RequestContentType</maml:name>
          <maml:description>
            <maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>application/json</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ResponseContentType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ResponseContentType</maml:name>
          <maml:description>
            <maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>application/json</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UseHost -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseHost</maml:name>
          <maml:description>
            <maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Method -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Method</maml:name>
        <maml:description>
          <maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>GET</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Body -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
        <maml:name>Body</maml:name>
        <maml:description>
          <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
        <maml:name>Content</maml:name>
        <maml:description>
          <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
          <maml:para>This is an alias of the Body parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: RequestContentType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RequestContentType</maml:name>
        <maml:description>
          <maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>application/json</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ResponseContentType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ResponseContentType</maml:name>
        <maml:description>
          <maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>application/json</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AdditionalHeaders -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AdditionalHeaders</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryParameters -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryParameters</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ApiVersion -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ApiVersion</maml:name>
        <maml:description>
          <maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>4.1</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UseHost -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>UseHost</maml:name>
        <maml:description>
          <maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoAutoUnwrap -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoAutoUnwrap</maml:name>
        <maml:description>
          <maml:para>Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Raw -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Raw</maml:name>
        <maml:description>
          <maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsTask -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsTask</maml:name>
        <maml:description>
          <maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</dev:code>
        <dev:remarks>
          <maml:para>Calls the API described by an example extracted from the docs.microsoft.com web site. HTTP method, host name and API version are all set based on the supplied values; Tokens {organization}, {project} and {team} are properly replaced with the corresponding values provided by the current connection context (via previous calls to Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 3  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Invoke-TfsRestApi</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRestClient -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
    <command:details>
      <command:name>Get-TfsRestClient</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRestClient</command:noun>
      <maml:description>
        <maml:para>Gets an Azure DevOps HTTP Client object instance. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication information supplied by their parent connection object and can be used as a more convenient mechanism to issue API calls. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Get by collection -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by collection">
        <maml:name>Get-TfsRestClient</maml:name>
        <!-- Parameter: TypeName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
          <maml:name>TypeName</maml:name>
          <maml:description>
            <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by server -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by server">
        <maml:name>Get-TfsRestClient</maml:name>
        <!-- Parameter: TypeName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
          <maml:name>TypeName</maml:name>
          <maml:description>
            <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TypeName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
        <maml:name>TypeName</maml:name>
        <maml:description>
          <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          <maml:para>This is an alias of the TypeName parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: VssHttpClientBase -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssHttpClientBase</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Get-TfsRestClient</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookConsumer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookConsumer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookConsumer</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook consumers. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Service hook consumers are the services that can consume (receive) notifications triggered by Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookConsumer</maml:name>
        <!-- Parameter: Consumer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Consumer</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Consumer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Consumer</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          <maml:para>This is an alias of the Consumer parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          <maml:para>This is an alias of the Consumer parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Consumer -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Consumer</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookConsumer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookNotificationHistory -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookNotificationHistory</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookNotificationHistory</command:noun>
      <maml:description>
        <maml:para>Gets the notification history for a given service hook subscription </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookNotificationHistory</maml:name>
        <!-- Parameter: Subscription -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Subscription</maml:name>
          <maml:description>
            <maml:para>Specifies the subscription to get the notification history from. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: From -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>From</maml:name>
          <maml:description>
            <maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Status -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Status</maml:name>
          <maml:description>
            <maml:para>Specifies the notification status to filter on. </maml:para>
            <maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
          </maml:description>
          <command:parameterValue required="true">NotificationStatus</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: To -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>To</maml:name>
          <maml:description>
            <maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Subscription -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Subscription</maml:name>
        <maml:description>
          <maml:para>Specifies the subscription to get the notification history from. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: From -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>From</maml:name>
        <maml:description>
          <maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: To -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>To</maml:name>
        <maml:description>
          <maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Status -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Status</maml:name>
        <maml:description>
          <maml:para>Specifies the notification status to filter on. </maml:para>
          <maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
        </maml:description>
        <command:parameterValue required="true">NotificationStatus</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the subscription to get the notification history from. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Notification -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Notification</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookNotificationHistory</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookPublisher -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookPublisher</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookPublisher</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook publishers. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookPublisher</maml:name>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Publisher -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Publisher</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookPublisher</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookSubscription -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookSubscription</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookSubscription</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook subscriptions </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookSubscription</maml:name>
        <!-- Parameter: Subscription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Subscription</maml:name>
          <maml:description>
            <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Consumer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Consumer</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: EventType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>EventType</maml:name>
          <maml:description>
            <maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Subscription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Subscription</maml:name>
        <maml:description>
          <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
          <maml:para>This is an alias of the Subscription parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Consumer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Consumer</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: EventType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>EventType</maml:name>
        <maml:description>
          <maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Subscription -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Subscription</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookSubscription</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enter-TfsShell -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
    <command:details>
      <command:name>Enter-TfsShell</command:name>
      <command:verb>Enter</command:verb>
      <command:noun>TfsShell</command:noun>
      <maml:description>
        <maml:para>Activates the Azure DevOps Shell </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enter-TfsShell</maml:name>
        <!-- Parameter: DoNotClearHost -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DoNotClearHost</maml:name>
          <maml:description>
            <maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoLogo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoLogo</maml:name>
          <maml:description>
            <maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: WindowTitle -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>WindowTitle</maml:name>
          <maml:description>
            <maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WindowTitle -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>WindowTitle</maml:name>
        <maml:description>
          <maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DoNotClearHost -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DoNotClearHost</maml:name>
        <maml:description>
          <maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NoLogo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoLogo</maml:name>
        <maml:description>
          <maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Enter-TfsShell</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Exit-TfsShell -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
    <command:details>
      <command:name>Exit-TfsShell</command:name>
      <command:verb>Exit</command:verb>
      <command:noun>TfsShell</command:noun>
      <maml:description>
        <maml:para>Deactivates the Azure DevOps Shell </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Exit-TfsShell</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Exit-TfsShell</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsTeam</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Connects to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsTeam</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected team. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeam cmdlet removes the connection previously set by its counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" as provided by "Get-TfsTeam -Current" will no longer work after a call to this cmdlet, unless their -Team argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeam</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Get-TfsTeam</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more teams. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by team -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by team">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default team -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default team">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryMembership -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryMembership</maml:name>
        <maml:description>
          <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeSettings</maml:name>
        <maml:description>
          <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default team in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Get-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>New-TfsTeam</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Creates a new team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogIteration</maml:name>
          <maml:description>
            <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultAreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
          <maml:name>DefaultAreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultIterationMacro -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DefaultIterationMacro</maml:name>
          <maml:description>
            <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>@CurrentIteration</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description of the new team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NoBacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoBacklogIteration</maml:name>
          <maml:description>
            <maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoDefaultArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoDefaultArea</maml:name>
          <maml:description>
            <maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultAreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>DefaultAreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>TeamFieldValue</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
          <maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoDefaultArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoDefaultArea</maml:name>
        <maml:description>
          <maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogIteration</maml:name>
        <maml:description>
          <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultIterationMacro -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DefaultIterationMacro</maml:name>
        <maml:description>
          <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>@CurrentIteration</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NoBacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoBacklogIteration</maml:name>
        <maml:description>
          <maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description of the new team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/New-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Remove-TfsTeam</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Deletes a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Remove-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Rename-TfsTeam</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Renames a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Rename-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Set-TfsTeam</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Changes the details of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Set team settings -->
      <command:syntaxItem tfscmdlets:parameterSet="Set team settings">
        <maml:name>Set-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogIteration</maml:name>
          <maml:description>
            <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BacklogVisibilities -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogVisibilities</maml:name>
          <maml:description>
            <maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BugsBehavior -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BugsBehavior</maml:name>
          <maml:description>
            <maml:para>Specifies how bugs should behave when added to a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultAreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
          <maml:name>DefaultAreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultIterationMacro -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DefaultIterationMacro</maml:name>
          <maml:description>
            <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>@CurrentIteration</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: WorkingDays -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>WorkingDays</maml:name>
          <maml:description>
            <maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
          </maml:description>
          <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Set default team -->
      <command:syntaxItem tfscmdlets:parameterSet="Set default team">
        <maml:name>Set-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Sets the specified team as the default team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Sets the specified team as the default team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a new description </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultAreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>DefaultAreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>TeamFieldValue</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
          <maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogIteration</maml:name>
        <maml:description>
          <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultIterationMacro -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DefaultIterationMacro</maml:name>
        <maml:description>
          <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>@CurrentIteration</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BugsBehavior -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BugsBehavior</maml:name>
        <maml:description>
          <maml:para>Specifies how bugs should behave when added to a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BacklogVisibilities -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogVisibilities</maml:name>
        <maml:description>
          <maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkingDays -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>WorkingDays</maml:name>
        <maml:description>
          <maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
        </maml:description>
        <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Set-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Add-TfsTeamAdmin</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Adds a new administrator to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to add to the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to add to the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the administrator to add to the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamAdmins -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Add-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Get-TfsTeamAdmin</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Gets the administrators of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamAdmin</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Get-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Remove-TfsTeamAdmin</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Removes an administrator from a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to remove from the team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to remove from the team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the administrator to remove from the team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamAdmins -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Remove-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBacklogLevel -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Backlog">
    <command:details>
      <command:name>Get-TfsTeamBacklogLevel</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBacklogLevel</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more backlog levels of a given team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBacklogLevel</maml:name>
        <!-- Parameter: Backlog -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Backlog</maml:name>
          <maml:description>
            <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Backlog -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Backlog</maml:name>
        <maml:description>
          <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
          <maml:para>This is an alias of the Backlog parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BacklogLevelConfiguration -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BacklogLevelConfiguration</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Backlog/Get-TfsTeamBacklogLevel</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBoard -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Get-TfsTeamBoard</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBoard</command:noun>
      <maml:description>
        <maml:para>Gets one or more team boards. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBoard</maml:name>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
          <maml:para>This is an alias of the Board parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Board -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.Board</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoard</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBoardCardRule -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Get-TfsTeamBoardCardRule</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBoardCardRule</command:noun>
      <maml:description>
        <maml:para>Gets one or more team board card rules. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: Rule -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Rule</maml:name>
          <maml:description>
            <maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: RuleType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RuleType</maml:name>
          <maml:description>
            <maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
            <maml:para>Possible values: CardColor, TagColor, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">CardRuleType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.CardRuleType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Rule -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Rule</maml:name>
        <maml:description>
          <maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: RuleType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RuleType</maml:name>
        <maml:description>
          <maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
          <maml:para>Possible values: CardColor, TagColor, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">CardRuleType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.CardRuleType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the board name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Rule -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.Rule</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoardCardRule</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeamBoardCardRuleSetting -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Set-TfsTeamBoardCardRuleSetting</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamBoardCardRuleSetting</command:noun>
      <maml:description>
        <maml:para>Set the card rule settings of the specified backlog board. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsTeamBoardCardRuleSetting</maml:name>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BoardCardRuleSettings -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Set-TfsTeamBoardCardRuleSetting</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Add-TfsTeamMember</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Adds new members to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to which the member is added. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team to which the member is added. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamAdmins -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Add-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Get-TfsTeamMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamMember</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team from which to get its members. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team from which to get its members. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the team from which to get its members. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Get-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Remove-TfsTeamMember</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Removes a member from a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team from which the member is removed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team from which the member is removed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Remove-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsTeamProject</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Connects to a Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsTeamProject</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected team project. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" as provided by "Get-TfsTeamProject -Current" will no longer work after a call to this cmdlet, unless their -Project argument is provided or a new call to Connect-TfsTeamProject is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeamProject</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Get-TfsTeamProject</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-TfsTeamProject cmdlets gets one or more Team Project objects (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied Team Project Collection. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Get by project -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by project">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Get-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>New-TfsTeamProject</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Creates a new team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description for the new team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SourceControl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SourceControl</maml:name>
          <maml:description>
            <maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Git</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description for the new team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: SourceControl -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SourceControl</maml:name>
        <maml:description>
          <maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Git</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/New-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Remove-TfsTeamProject</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Deletes one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Hard -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Hard</maml:name>
          <maml:description>
            <maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Hard -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Hard</maml:name>
        <maml:description>
          <maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Remove-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Rename-TfsTeamProject</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Renames a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project to rename. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to rename. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to rename. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Rename-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Set-TfsTeamProject</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Changes the details of a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AvatarImage -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AvatarImage</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). To remove a previously set image, pass $null to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AvatarImage -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AvatarImage</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). To remove a previously set image, pass $null to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Set-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsTeamProjectCollection</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Connects to a TFS team project collection or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or Azure DevOps organization. </maml:para>
      <maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsTeamProjectCollection. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssConnection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their -Collection argument in order to access a TFS instance. Those cmdlets will use the connection opened by Connect-TfsTeamProjectCollection as their "default connection". </maml:para>
      <maml:para>In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection provided by Connect-TfsTeamProjectCollection by default. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" using the cached credentials of the logged-on user</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a Team Foundation server called "tfs", firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsTeamProjectCollection</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected TFS team project collection or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to this cmdlet, unless their -Collection argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Dismount-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Dismount-TfsTeamProjectCollection</command:name>
      <command:verb>Dismount</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Detaches a team project collection database from a Team Foundation Server installation. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Before you move a collection, you must first detach it from the deployment of TFS on which it is running. It's very important that you do not skip this step. When you detach a collection, all jobs and services are stopped, and then the collection database is stopped. In addition, the detach process copies over the collection-specific data from the configuration database and saves it as part of the team project collection database. This configuration data is what allows the collection database to be attached to a different deployment of TFS. If that data is not present, you cannot attach the collection to any deployment of TFS except the one from which it originated. If detachment succeeds, this cmdlets returns the original database connection string. It is required to re-attach the collection to TFS. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Dismount-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the collection to detach. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the collection to detach. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Timeout -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Timeout</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">TimeSpan</command:parameterValue>
        <dev:type>
          <maml:name>System.TimeSpan</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the collection to detach. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>Detaching a collection prevents users from accessing any projects in that collection. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</dev:code>
        <dev:remarks>
          <maml:para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Dismount-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Get-TfsTeamProjectCollection</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Gets one of more team project collections (organizations in Azure DevOps). </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by collection -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by collection">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssConnection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Mount-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Mount-TfsTeamProjectCollection</command:name>
      <command:verb>Mount</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Attaches a team project collection database to a Team Foundation Server installation. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Use database server -->
      <command:syntaxItem tfscmdlets:parameterSet="Use database server">
        <maml:name>Mount-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DatabaseName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the collection database. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DatabaseServer -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseServer</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Clone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Clone</maml:name>
          <maml:description>
            <maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: InitialState -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>InitialState</maml:name>
          <maml:description>
            <maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Started</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <maml:description>
            <maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>5</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use connection string -->
      <command:syntaxItem tfscmdlets:parameterSet="Use connection string">
        <maml:name>Mount-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ConnectionString -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ConnectionString</maml:name>
          <maml:description>
            <maml:para>Specifies the connection string of the collection database. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Clone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Clone</maml:name>
          <maml:description>
            <maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: InitialState -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>InitialState</maml:name>
          <maml:description>
            <maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Started</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <maml:description>
            <maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>5</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DatabaseServer -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseServer</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DatabaseName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the collection database. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ConnectionString -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ConnectionString</maml:name>
        <maml:description>
          <maml:para>Specifies the connection string of the collection database. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: InitialState -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>InitialState</maml:name>
        <maml:description>
          <maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Started</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Clone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Clone</maml:name>
        <maml:description>
          <maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: PollingInterval -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>PollingInterval</maml:name>
        <maml:description>
          <maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>5</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Timeout -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Timeout</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">TimeSpan</command:parameterValue>
        <dev:type>
          <maml:name>System.TimeSpan</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Mount-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>New-TfsTeamProjectCollection</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Creates a new team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Connection -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Connection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/New-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Remove-TfsTeamProjectCollection</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Deletes a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Remove-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Start-TfsTeamProjectCollection</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Starts an offline team project collection and make it online. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Start-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Stop-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Stop-TfsTeamProjectCollection</command:name>
      <command:verb>Stop</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Stops a team project collection and make it offline. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Stop-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Stop-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsTeamProjectRemoval -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Undo-TfsTeamProjectRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsTeamProjectRemoval</command:noun>
      <maml:description>
        <maml:para>Undeletes one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsTeamProjectRemoval</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Undo-TfsTeamProjectRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Copy-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Copy-TfsTestPlan</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Clone a test plan and, optionally, its test suites and test cases. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other. When you clone a test suite, the following objects are copied from the source test plan to the destination test plan: * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information); * Shared steps referenced by cloned test cases; * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations); * Action Recordings linked from a cloned test case; * Links and Attachments; * Test configuration. The items below are only copied when using -CloneRequirements: * Requirements-based suites; * Requirements work items (product backlog items or user stories); * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the test plan to clone. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CloneRequirements -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CloneRequirements</maml:name>
          <maml:description>
            <maml:para>Clones requirements referenced by the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CopyAncestorHierarchy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CopyAncestorHierarchy</maml:name>
          <maml:description>
            <maml:para>Copies ancestor hierarchy. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: DeepClone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DeepClone</maml:name>
          <maml:description>
            <maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationWorkItemType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationWorkItemType</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the workitem type of the clone. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Test Case</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Clone all test suites recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: RelatedLinkComment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RelatedLinkComment</maml:name>
          <maml:description>
            <maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SuiteIds -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SuiteIds</maml:name>
          <maml:description>
            <maml:para>Clones only the specified suites. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DeepClone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DeepClone</maml:name>
        <maml:description>
          <maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Clone all test suites recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CopyAncestorHierarchy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CopyAncestorHierarchy</maml:name>
        <maml:description>
          <maml:para>Copies ancestor hierarchy. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CloneRequirements -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CloneRequirements</maml:name>
        <maml:description>
          <maml:para>Clones requirements referenced by the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationWorkItemType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationWorkItemType</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the workitem type of the clone. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Test Case</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: SuiteIds -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SuiteIds</maml:name>
        <maml:description>
          <maml:para>Clones only the specified suites. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: RelatedLinkComment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RelatedLinkComment</maml:name>
        <maml:description>
          <maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</dev:code>
        <dev:remarks>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Copy-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Get-TfsTestPlan</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Active -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Active</maml:name>
          <maml:description>
            <maml:para>Get only the active plans. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NoPlanDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoPlanDetails</maml:name>
          <maml:description>
            <maml:para>Get only basic properties of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Owner -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Owner</maml:name>
          <maml:description>
            <maml:para>Gets only the plans owned by the specified user. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Owner -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Owner</maml:name>
        <maml:description>
          <maml:para>Gets only the plans owned by the specified user. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoPlanDetails -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoPlanDetails</maml:name>
        <maml:description>
          <maml:para>Get only basic properties of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Active -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Active</maml:name>
        <maml:description>
          <maml:para>Get only the active plans. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Get-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>New-TfsTestPlan</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Creates a new test plan. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: EndDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>EndDate</maml:name>
          <maml:description>
            <maml:para>Specifies the end date of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Owner -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Owner</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: EndDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>EndDate</maml:name>
        <maml:description>
          <maml:para>Specifies the end date of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Owner -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Owner</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/New-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Remove-TfsTestPlan</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Deletes one or more test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Remove-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Rename-TfsTestPlan</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Renames a test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Rename-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsVersion -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsVersion</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsVersion</command:noun>
      <maml:description>
        <maml:para>Gets the version information about Team Foundation / Azure DevOps servers and Azure DevOps Services organizations. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsVersion</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ServerVersion -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Util.ServerVersion</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsVersion</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>Get-TfsWiki</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Wiki repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get all wikis -->
      <command:syntaxItem tfscmdlets:parameterSet="Get all wikis">
        <maml:name>Get-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Get Project Wiki">
        <maml:name>Get-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WikiV2 -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Get-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>New-TfsWiki</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Creates a new Wiki repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Create Code Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Create Code Wiki">
        <maml:name>New-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new Wiki </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Provision Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Provision Project Wiki">
        <maml:name>New-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: WikiV2 -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/New-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>Remove-TfsWiki</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Git repositories from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Remove code wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Remove code wiki">
        <maml:name>Remove-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the Wiki to be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Remove Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Remove Project Wiki">
        <maml:name>Remove-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Remove-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Copy-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Copy-TfsWorkItem</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Creates a copy of a work item, optionally changing its type. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) that is of the specified work item type. </maml:para>
      <maml:para>By default, the copy retains the same type of the original work item, unless the Type argument is specified </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationProject -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationProject</maml:name>
          <maml:description>
            <maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeAttachments -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeAttachments</maml:name>
          <maml:description>
            <maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NewType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewType</maml:name>
          <maml:description>
            <maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Copy</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewType</maml:name>
        <maml:description>
          <maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeAttachments -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeAttachments</maml:name>
        <maml:description>
          <maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeLinks -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeLinks</maml:name>
        <maml:description>
          <maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationProject -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationProject</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Copy</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Copy-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Get-TfsWorkItem</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Query by revision -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by revision">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Revision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
          <maml:name>Revision</maml:name>
          <maml:description>
            <maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ShowWindow -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowWindow</maml:name>
          <maml:description>
            <maml:para>Opens the specified work item in the default web browser. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by date -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by date">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsOf -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsOf</maml:name>
          <maml:description>
            <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get deleted -->
      <command:syntaxItem tfscmdlets:parameterSet="Get deleted">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Gets deleted work items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Simple query -->
      <command:syntaxItem tfscmdlets:parameterSet="Simple query">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsOf -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsOf</maml:name>
          <maml:description>
            <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ChangedBy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ChangedBy</maml:name>
          <maml:description>
            <maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ChangedDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ChangedDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date of the latest change to the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CreatedBy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CreatedBy</maml:name>
          <maml:description>
            <maml:para>Specifies the name or email of the user that created the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Object[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CreatedDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CreatedDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date when the work item was created. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Ever -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Ever</maml:name>
          <maml:description>
            <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StateChangeDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StateChangeDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns  work items that contain ANY ofthe supplied tags. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: WorkItemType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
          <maml:name>WorkItemType</maml:name>
          <maml:description>
            <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by WIQL -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by WIQL">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by filter -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by filter">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: Where -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Where</maml:name>
          <maml:description>
            <maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: WorkItemType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
        <maml:name>WorkItemType</maml:name>
        <maml:description>
          <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the WorkItemType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CreatedBy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CreatedBy</maml:name>
        <maml:description>
          <maml:para>Specifies the name or email of the user that created the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Object[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CreatedDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CreatedDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date when the work item was created. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ChangedBy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ChangedBy</maml:name>
        <maml:description>
          <maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ChangedDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ChangedDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date of the latest change to the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StateChangeDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StateChangeDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns  work items that contain ANY ofthe supplied tags. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Ever -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Ever</maml:name>
        <maml:description>
          <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Revision -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
        <maml:name>Revision</maml:name>
        <maml:description>
          <maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
        <maml:name>rev</maml:name>
        <maml:description>
          <maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
          <maml:para>This is an alias of the Revision parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsOf -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsOf</maml:name>
        <maml:description>
          <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>WIQL</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>QueryText</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>SavedQuery</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>QueryPath</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Where -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Where</maml:name>
        <maml:description>
          <maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TimePrecision -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TimePrecision</maml:name>
        <maml:description>
          <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ShowWindow -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ShowWindow</maml:name>
        <maml:description>
          <maml:para>Opens the specified work item in the default web browser. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Gets deleted work items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeLinks -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeLinks</maml:name>
        <maml:description>
          <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Get-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Move-TfsWorkItem</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Moves a work item to a different team project in the same collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Comment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Comment</maml:name>
          <maml:description>
            <maml:para>Specifies a comment to be added to the history </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
          <maml:para>This is an alias of the Project parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Comment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Comment</maml:name>
        <maml:description>
          <maml:para>Specifies a comment to be added to the history </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Move-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>New-TfsWorkItem</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Creates a new work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItem</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies the type of the new work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AssignedTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AssignedTo</maml:name>
          <maml:description>
            <maml:para>Specifies the user this work item is assigned to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardLane -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardLane</maml:name>
          <maml:description>
            <maml:para>Specifies the board lane of the work item </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BypassRules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BypassRules</maml:name>
          <maml:description>
            <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the type of the new work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AssignedTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AssignedTo</maml:name>
        <maml:description>
          <maml:para>Specifies the user this work item is assigned to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BoardLane -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardLane</maml:name>
        <maml:description>
          <maml:para>Specifies the board lane of the work item </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BypassRules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BypassRules</maml:name>
        <maml:description>
          <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the type of the new work item. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/New-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Remove-TfsWorkItem</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Deletes a work item from a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies the work item to remove. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destroy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destroy</maml:name>
          <maml:description>
            <maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destroy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destroy</maml:name>
        <maml:description>
          <maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Remove-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Search-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Search-TfsWorkItem</command:name>
      <command:verb>Search</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Search-TfsWorkItem</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Results -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Results</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>100</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Results -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Results</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>100</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Search-TfsWorkItem</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Set-TfsWorkItem</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Sets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AssignedTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AssignedTo</maml:name>
          <maml:description>
            <maml:para>Specifies the user this work item is assigned to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardLane -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardLane</maml:name>
          <maml:description>
            <maml:para>Specifies the board lane of the work item </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BypassRules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BypassRules</maml:name>
          <maml:description>
            <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AssignedTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AssignedTo</maml:name>
        <maml:description>
          <maml:para>Specifies the user this work item is assigned to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BoardLane -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardLane</maml:name>
        <maml:description>
          <maml:para>Specifies the board lane of the work item </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BypassRules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BypassRules</maml:name>
        <maml:description>
          <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Set-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemAttachment -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Export-TfsWorkItemAttachment</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemAttachment</command:noun>
      <maml:description>
        <maml:para>Downloads one or more attachments from work items </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsWorkItemAttachment</maml:name>
        <!-- Parameter: Attachment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Attachment</maml:name>
          <maml:description>
            <maml:para>Specifies the attachment to download. Wildcards are supported. When omitted, all attachments in the specified work item are downloaded. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the directory to save the attachment to. When omitted, defaults to the current directory. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Attachment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Attachment</maml:name>
        <maml:description>
          <maml:para>Specifies the attachment to download. Wildcards are supported. When omitted, all attachments in the specified work item are downloaded. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the directory to save the attachment to. When omitted, defaults to the current directory. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Export-TfsWorkItemAttachment</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemHistory -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.History">
    <command:details>
      <command:name>Get-TfsWorkItemHistory</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemHistory</command:noun>
      <maml:description>
        <maml:para>Gets the history of changes of a work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemHistory</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: PSCustomObject -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCustomObject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/History/Get-TfsWorkItemHistory</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsWorkItemLink -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Add-TfsWorkItemLink</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsWorkItemLink</command:noun>
      <maml:description>
        <maml:para>Adds a link between two work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsWorkItemLink</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Add-TfsWorkItemLink</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemLink -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Get-TfsWorkItemLink</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLink</command:noun>
      <maml:description>
        <maml:para>Gets the links in a work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemLink</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeAttachments -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeAttachments</maml:name>
          <maml:description>
            <maml:para>Includes attachment information alongside links. When omitted, only links are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: LinkType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>LinkType</maml:name>
          <maml:description>
            <maml:para>Returns only the specified link types. When omitted, returns all link types. </maml:para>
            <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy</maml:para>
          </maml:description>
          <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: LinkType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>LinkType</maml:name>
        <maml:description>
          <maml:para>Returns only the specified link types. When omitted, returns all link types. </maml:para>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy</maml:para>
        </maml:description>
        <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: IncludeAttachments -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeAttachments</maml:name>
        <maml:description>
          <maml:para>Includes attachment information alongside links. When omitted, only links are retrieved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemRelation -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemRelation</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLink</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemLinkEndType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Get-TfsWorkItemLinkEndType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLinkEndType</command:noun>
      <maml:description>
        <maml:para>Gets the work item link end types of a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemLinkEndType</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLinkEndType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Export-TfsWorkItemQuery</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Exports a saved work item query to XML. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Work item queries can be exported to XML files (.WIQ extension) in order to be shared and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use this cmdlet to generate WIQ files compatible with the format supported by Team Explorer. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Export to file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <maml:name>Export-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Encoding -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Encoding</maml:name>
          <maml:description>
            <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>UTF-8</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: FlattenFolders -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FlattenFolders</maml:name>
          <maml:description>
            <maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Export to output stream -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
        <maml:name>Export-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsXml -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsXml</maml:name>
          <maml:description>
            <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Encoding -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Encoding</maml:name>
        <maml:description>
          <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>UTF-8</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: FlattenFolders -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FlattenFolders</maml:name>
        <maml:description>
          <maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsXml -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsXml</maml:name>
        <maml:description>
          <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Export-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Get-TfsWorkItemQuery</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Gets the definition of one or more work item saved queries. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Returns deleted items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Returns deleted items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>New-TfsWorkItemQuery</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Create a new work items query in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Personal</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Wiql -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
          <maml:name>Wiql</maml:name>
          <maml:description>
            <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Wiql -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
        <maml:name>Wiql</maml:name>
        <maml:description>
          <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
          <maml:para>This is an alias of the Wiql parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Personal</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemQueryFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Get-TfsWorkItemQueryFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemQueryFolder</command:noun>
      <maml:description>
        <maml:para>Gets the definition of one or more work item saved queries. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemQueryFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Returns deleted items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Returns deleted items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemQueryFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>New-TfsWorkItemQueryFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemQueryFolder</command:noun>
      <maml:description>
        <maml:para>Create a new work items query in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemQueryFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Personal</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Personal</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Get-TfsWorkItemTag</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Gets one or more work item tags. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeInactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeInactive</maml:name>
          <maml:description>
            <maml:para>Includes tags not associated to any work items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeInactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeInactive</maml:name>
        <maml:description>
          <maml:para>Includes tags not associated to any work items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Get-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>New-TfsWorkItemTag</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Creates a new work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new tag. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/New-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Remove-TfsWorkItemTag</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Deletes one or more work item tags. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Remove-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Rename-TfsWorkItemTag</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Renames a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the work item tag to rename. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Rename-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Export-TfsWorkItemType</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Exports an XML work item type definition from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Export to output stream -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
        <maml:name>Export-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: AsXml -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsXml</maml:name>
          <maml:description>
            <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeGlobalLists -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeGlobalLists</maml:name>
          <maml:description>
            <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Export to file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <maml:name>Export-TfsWorkItemType</maml:name>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeGlobalLists -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeGlobalLists</maml:name>
          <maml:description>
            <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          <maml:para>This is an alias of the Type parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeGlobalLists -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeGlobalLists</maml:name>
        <maml:description>
          <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsXml -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsXml</maml:name>
        <maml:description>
          <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Export-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Get-TfsWorkItemType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Type definitions from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by type -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by type">
        <maml:name>Get-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by work item -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by work item">
        <maml:name>Get-TfsWorkItemType</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
          <maml:para>This is an alias of the Type parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemType -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Get-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Import-TfsWorkItemType</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Imports a work item type definition into a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsWorkItemType</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Import-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsXamlBuild -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.XamlBuild">
    <command:details>
      <command:name>Start-TfsXamlBuild</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsXamlBuild</command:noun>
      <maml:description>
        <maml:para>Queues a XAML Build. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsXamlBuild</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/XamlBuild/Start-TfsXamlBuild</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
</helpItems>
tools\TfsCmdlets\TfsCmdlets.Format.ps1xml
 
tools\TfsCmdlets\TfsCmdlets.psd1
#
# Module manifest for module 'TfsCmdlets'
#
# Generated by: Igor Abade V. Leite
#
# Generated on: 11/30/2021
#

@{

# Script module or binary module file associated with this manifest.
RootModule = if($PSEdition -eq "Core") { "Lib/Core/TfsCmdlets.dll" } else { "Lib/Desktop/TfsCmdlets.dll" }

# Version number of this module.
ModuleVersion = '2.1.4'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = 'bd4390dc-a8ad-4bce-8d69-f53ccf8e4163'

# Author of this module
Author = 'Igor Abade V. Leite'

# Company or vendor of this module
CompanyName = 'Igor Abade V. Leite'

# Copyright statement for this module
Copyright = '(c) 2014 Igor Abade V. Leite. All rights reserved.'

# Description of the functionality provided by this module
Description = 'PowerShell Cmdlets for Azure DevOps and Team Foundation Server'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.1'

# Name of the PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
DotNetFrameworkVersion = '4.7.1'

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# ClrVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = 'TfsCmdlets.Types.ps1xml'

# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = 'TfsCmdlets.Format.ps1xml'

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('TfsCmdlets.psm1')

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @()

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = 'Add-TfsGroupMember', 'Add-TfsTeamAdmin', 'Add-TfsTeamMember', 
               'Add-TfsWorkItemLink', 'Connect-TfsConfigurationServer', 
               'Connect-TfsTeam', 'Connect-TfsTeamProject', 
               'Connect-TfsTeamProjectCollection', 'Copy-TfsTestPlan', 
               'Copy-TfsWorkItem', 'Disable-TfsGitRepository', 
               'Disconnect-TfsConfigurationServer', 'Disconnect-TfsTeam', 
               'Disconnect-TfsTeamProject', 'Disconnect-TfsTeamProjectCollection', 
               'Dismount-TfsTeamProjectCollection', 'Enable-TfsGitRepository', 
               'Enter-TfsShell', 'Exit-TfsShell', 'Export-TfsGlobalList', 
               'Export-TfsProcessTemplate', 'Export-TfsWorkItemAttachment', 
               'Export-TfsWorkItemQuery', 'Export-TfsWorkItemType', 'Get-TfsArea', 
               'Get-TfsBuildDefinitionFolder', 'Get-TfsConfigurationServer', 
               'Get-TfsConfigurationServerConnectionString', 'Get-TfsGitBranch', 
               'Get-TfsGitBranchPolicy', 'Get-TfsGitPolicyType', 
               'Get-TfsGitRepository', 'Get-TfsGlobalList', 'Get-TfsGroupMember', 
               'Get-TfsIdentity', 'Get-TfsInstallationPath', 'Get-TfsIteration', 
               'Get-TfsProcessTemplate', 'Get-TfsRegisteredConfigurationServer', 
               'Get-TfsRegisteredTeamProjectCollection', 'Get-TfsRegistryValue', 
               'Get-TfsReleaseDefinition', 'Get-TfsReleaseDefinitionFolder', 
               'Get-TfsRestClient', 'Get-TfsServiceHookConsumer', 
               'Get-TfsServiceHookNotificationHistory', 
               'Get-TfsServiceHookPublisher', 'Get-TfsServiceHookSubscription', 
               'Get-TfsTeam', 'Get-TfsTeamAdmin', 'Get-TfsTeamBacklogLevel', 
               'Get-TfsTeamBoard', 'Get-TfsTeamBoardCardRule', 'Get-TfsTeamMember', 
               'Get-TfsTeamProject', 'Get-TfsTeamProjectCollection', 
               'Get-TfsTestPlan', 'Get-TfsVersion', 'Get-TfsWiki', 'Get-TfsWorkItem', 
               'Get-TfsWorkItemHistory', 'Get-TfsWorkItemLink', 
               'Get-TfsWorkItemLinkEndType', 'Get-TfsWorkItemQuery', 
               'Get-TfsWorkItemQueryFolder', 'Get-TfsWorkItemTag', 
               'Get-TfsWorkItemType', 'Import-TfsGlobalList', 
               'Import-TfsProcessTemplate', 'Import-TfsWorkItemType', 
               'Invoke-TfsRestApi', 'Mount-TfsTeamProjectCollection', 'Move-TfsArea', 
               'Move-TfsIteration', 'Move-TfsWorkItem', 'New-TfsArea', 
               'New-TfsBuildDefinitionFolder', 'New-TfsCredential', 
               'New-TfsGitRepository', 'New-TfsGlobalList', 'New-TfsIteration', 
               'New-TfsProcessTemplate', 'New-TfsReleaseDefinitionFolder', 
               'New-TfsTeam', 'New-TfsTeamProject', 'New-TfsTeamProjectCollection', 
               'New-TfsTestPlan', 'New-TfsWiki', 'New-TfsWorkItem', 
               'New-TfsWorkItemQuery', 'New-TfsWorkItemQueryFolder', 
               'New-TfsWorkItemTag', 'Remove-TfsArea', 
               'Remove-TfsBuildDefinitionFolder', 'Remove-TfsGitRepository', 
               'Remove-TfsGlobalList', 'Remove-TfsGroupMember', 
               'Remove-TfsIteration', 'Remove-TfsReleaseDefinitionFolder', 
               'Remove-TfsTeam', 'Remove-TfsTeamAdmin', 'Remove-TfsTeamMember', 
               'Remove-TfsTeamProject', 'Remove-TfsTeamProjectCollection', 
               'Remove-TfsTestPlan', 'Remove-TfsWiki', 'Remove-TfsWorkItem', 
               'Remove-TfsWorkItemTag', 'Rename-TfsArea', 'Rename-TfsGitRepository', 
               'Rename-TfsGlobalList', 'Rename-TfsIteration', 'Rename-TfsTeam', 
               'Rename-TfsTeamProject', 'Rename-TfsTestPlan', 
               'Rename-TfsWorkItemTag', 'Search-TfsWorkItem', 'Set-TfsGlobalList', 
               'Set-TfsIteration', 'Set-TfsRegistryValue', 'Set-TfsTeam', 
               'Set-TfsTeamBoardCardRuleSetting', 'Set-TfsTeamProject', 
               'Set-TfsWorkItem', 'Start-TfsIdentitySync', 
               'Start-TfsTeamProjectCollection', 'Start-TfsXamlBuild', 
               'Stop-TfsTeamProjectCollection', 'Test-TfsArea', 'Test-TfsIteration', 
               'Undo-TfsTeamProjectRemoval'

# Variables to export from this module
# VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'

# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
FileList = 
               'Lib\Core\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll', 
               'Lib\Core\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll', 
               'Lib\Core\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll', 
               'Lib\Core\runtimes\win-arm64\native\sni.dll', 
               'Lib\Core\runtimes\win-x64\native\sni.dll', 
               'Lib\Core\runtimes\win-x86\native\sni.dll', 
               'Lib\Core\Ben.Demystifier.dll', 'Lib\Core\HtmlAgilityPack.dll', 
               'Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll', 
               'Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll', 
               'Lib\Core\Microsoft.IdentityModel.Clients.ActiveDirectory.dll', 
               'Lib\Core\Microsoft.IdentityModel.JsonWebTokens.dll', 
               'Lib\Core\Microsoft.IdentityModel.Logging.dll', 
               'Lib\Core\Microsoft.IdentityModel.Tokens.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Build2.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Common.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Common.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll', 
               'Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll', 
               'Lib\Core\Newtonsoft.Json.Bson.dll', 'Lib\Core\Newtonsoft.Json.dll', 
               'Lib\Core\System.Configuration.ConfigurationManager.dll', 
               'Lib\Core\System.Data.SqlClient.dll', 
               'Lib\Core\System.IdentityModel.Tokens.Jwt.dll', 
               'Lib\Core\System.Net.Http.Formatting.dll', 
               'Lib\Core\System.Security.Cryptography.ProtectedData.dll', 
               'Lib\Core\System.Xml.XPath.XmlDocument.dll', 
               'Lib\Core\TfsCmdlets.deps.json', 'Lib\Core\TfsCmdlets.dll', 
               'Lib\Core\TfsCmdlets.pdb', 'Lib\Core\TfsCmdlets.xml', 
               'Lib\Desktop\Ben.Demystifier.dll', 
               'Lib\Desktop\HtmlAgilityPack.dll', 
               'Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll', 
               'Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll', 
               'Lib\Desktop\Microsoft.IdentityModel.Clients.ActiveDirectory.dll', 
               'Lib\Desktop\Microsoft.IdentityModel.JsonWebTokens.dll', 
               'Lib\Desktop\Microsoft.IdentityModel.Logging.dll', 
               'Lib\Desktop\Microsoft.IdentityModel.Tokens.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Build.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Build.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Build2.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Core.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Dashboards.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.DeleteTeamProject.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Diff.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Discussion.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Git.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Lab.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Lab.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Lab.TestIntegration.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Pipelines.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll', 
               'Lib\Desktop\Microsoft.WITDataStore32.dll', 
               'Lib\Desktop\Microsoft.WITDataStore64.dll', 
               'Lib\Desktop\Newtonsoft.Json.dll', 
               'Lib\Desktop\System.Collections.Immutable.dll', 
               'Lib\Desktop\System.Data.Common.dll', 
               'Lib\Desktop\System.Diagnostics.StackTrace.dll', 
               'Lib\Desktop\System.Diagnostics.Tracing.dll', 
               'Lib\Desktop\System.Globalization.Extensions.dll', 
               'Lib\Desktop\System.IdentityModel.Tokens.Jwt.dll', 
               'Lib\Desktop\System.IO.Compression.dll', 
               'Lib\Desktop\System.Management.Automation.dll', 
               'Lib\Desktop\System.Net.Http.dll', 
               'Lib\Desktop\System.Net.Http.Formatting.dll', 
               'Lib\Desktop\System.Net.Sockets.dll', 
               'Lib\Desktop\System.Reflection.Metadata.dll', 
               'Lib\Desktop\System.Runtime.Serialization.Primitives.dll', 
               'Lib\Desktop\System.Security.Cryptography.Algorithms.dll', 
               'Lib\Desktop\System.Security.SecureString.dll', 
               'Lib\Desktop\System.Threading.Overlapped.dll', 
               'Lib\Desktop\System.Web.Http.dll', 
               'Lib\Desktop\System.Web.Http.WebHost.dll', 
               'Lib\Desktop\System.Xml.XPath.XDocument.dll', 
               'Lib\Desktop\TfsCmdlets.dll', 'Lib\Desktop\TfsCmdlets.pdb', 
               'Lib\Desktop\TfsCmdlets.xml', 'Private\Admin.psm1', 
               'Private\Aliases.psm1', 'Private\Prompt.ps1', 'ACKNOWLEDGEMENTS.md', 
               'chocolateyInstall.ps1', 'chocolateyUninstall.ps1', 
               'CODE_OF_CONDUCT.md', 'CONTRIBUTING.md', 'LICENSE.md', 'Prompt.ps1', 
               'README.md', 'RELEASENOTES.md', 'TfsCmdlets.dll-Help.xml', 
               'TfsCmdlets.Format.ps1xml', 'TfsCmdlets.psd1', 'TfsCmdlets.psm1', 
               'TfsCmdlets.Types.ps1xml', 'TfsCmdletsShell.ico'

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

    #Core of this module
    Core = 'netcoreapp3.1'

    #Version of this module
    Version = '2.1.4+1'

    #TfsClientVersion of this module
    TfsClientVersion = '16.194.0-preview'

    #Branch of this module
    Branch = 'main'

    #Build of this module
    Build = '2.1.4+2594.1'

    #Commit of this module
    Commit = '7e92953dd3b41149ef86f7456493aba47764594e'

    #Desktop of this module
    Desktop = 'net471'

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = 'TfsCmdlets','TFS','VSTS','PowerShell','Azure','AzureDevOps','DevOps','ALM','TeamFoundationServer'

        # A URL to the license for this module.
        LicenseUri = 'https://github.com/igoravl/TfsCmdlets/blob/master/LICENSE.md'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/igoravl/tfscmdlets/'

        # A URL to an icon representing this module.
        IconUri = 'https://tfscmdlets.dev/assets/images/TfsCmdlets_Icon_128.png'

        # ReleaseNotes of this module
        ReleaseNotes = 'For release notes, see https://github.com/igoravl/TfsCmdlets/blob/master/RELEASENOTES.md'

        # Prerelease string of this module
        # Prerelease = ''

        # Flag to indicate whether the module requires explicit user acceptance for install/update/save
        # RequireLicenseAcceptance = $false

        # External dependent modules of this module
        # ExternalModuleDependencies = @()

    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}


tools\TfsCmdlets\TfsCmdlets.psm1
# Private functions

Function _GetInstallationPath($Version, $Component = 'BaseInstallation')
{
	if(-not $Version)
	{
		foreach($v in 20..8)
		{
			if(Test-Path "HKLM:\Software\Microsoft\TeamFoundationServer\${v}.0")
            {
				$Version = "${v}.0"
				break
			}
		}
    
		if(-not $Version)
		{
			throw "No Team Foundation Server installation found in computer $([Environment]::MachineName)"
		}
	}

	$rootKeyPath = "HKLM:\Software\Microsoft\TeamFoundationServer\$Version"

	if ($Component -eq 'BaseInstallation')
	{
		$componentPath = $rootKeyPath
	}
	else
	{
		$componentPath = "$rootKeyPath\InstalledComponents\$Component"
	}

	if (-not (Test-Path $rootKeyPath))
	{
		throw "Team Foundation Server is not installed in computer $([Environment]::MachineName)"
	}

	if (-not (Test-Path $componentPath))
	{
		throw "Team Foundation Server component '$Component' is not installed in computer $([Environment]::MachineName)"
	}

	return _GetRegistryValue -Path $componentPath -Value 'InstallPath'
}

Function _GetConnectionString($Version)
{
	$path = _GetInstallationPath -Version $Version -Component ApplicationTier
	$webConfigPath = Join-Path $path 'Web Services/Web.config'
	$webConfig = [xml] (Get-Content $webConfigPath)

	return (Select-Xml -Xml $webConfig -XPath '/configuration/appSettings/add[@key="applicationDatabase"]/@value').Node.Value
}

Function _GetRegistryValue($Path, $Value)
{
    return Get-ItemProperty -Path $Path -ErrorAction Continue | Select-Object -ExpandProperty $Value
}

Function _TestRegistryValue($Path, $Value)
{
    try
    {
        _GetRegistryValue -Path $Path -Value $Value | Out-Null
        return $true
    }
    finally {}

    return $false
}

Set-Alias -Name 'ctfs' -Value 'Connect-TfsTeamProjectCollection'
Function _EscapeArgumentValue {
    param
    (
        [Parameter(ValueFromPipeline = $true)]
        [string]
        $InputObject    
    )

    Process {
        if ($InputObject.Contains(' ') -or $InputObject.Contains("'") -or $InputObject.Contains('"')) {
            $InputObject = "'" + $InputObject.Replace("'", "''") + "'"
        }
        
        return $InputObject
    }
}
Register-ArgumentCompleter -ParameterName Node -Verbose -ScriptBlock {
    
    param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)

    if ($commandName -notlike '*-Tfs*') {
        return
    }

    if ($fakeBoundParameter['Collection']) {
        $tpc = Get-TfsTeamProjectCollection -Collection $fakeBoundParameter['Collection'] -Server $fakeBoundParameter['Server']
    }
    elseif ((Get-TfsTeamProjectCollection -Current)) {
        $tpc = (Get-TfsTeamProjectCollection -Current)
    }
    else {
        return
    }
 
    if ($fakeBoundParameter['Project']) {
        $tp = Get-TfsTeamProject -Collection $fakeBoundParameter['Project'] -Collection $tpc
    }
    elseif ((Get-TfsTeamProject -Current)) {
        $tp = (Get-TfsTeamProject -Current)
    }
    else {
        return
    }

    if ($commandName -like '*Area') {
        return Get-TfsArea -Node "\$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty RelativePath | Sort-Object | _EscapeArgumentValue
    }
    elseif ($commandName -like '*Iteration') {
        return Get-TfsIteration -Node "\$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty RelativePath | Sort-Object | _EscapeArgumentValue
    }
}
# Project

Register-ArgumentCompleter -ParameterName Project -Verbose -ScriptBlock {
    
    param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)

    if ($commandName -notlike '*-Tfs*') {
        return
    }

    if ($fakeBoundParameter['Collection']) {
        $tpc = Get-TfsTeamProjectCollection -Collection $fakeBoundParameter['Collection'] -Server $fakeBoundParameter['Server']
    }
    elseif ((Get-TfsTeamProjectCollection -Current)) {
        $tpc = (Get-TfsTeamProjectCollection -Current)
    }
    else {
        return
    }
 
    if ($tpc) {
        return Get-TfsTeamProject -Project "$wordToComplete*" -Collection $tpc -Deleted:($commandName -eq 'Undo-TfsTeamProjectRemoval') | Select-Object -ExpandProperty Name | Sort-Object | _EscapeArgumentValue
    }
}
Register-ArgumentCompleter -ParameterName Team -Verbose -ScriptBlock {
    
    param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)

    if ($commandName -notlike '*-Tfs*') {
        return
    }

    if ($fakeBoundParameter['Collection']) {
        $tpc = Get-TfsTeamProjectCollection -Collection $fakeBoundParameter['Collection'] -Server $fakeBoundParameter['Server']
    }
    elseif ((Get-TfsTeamProjectCollection -Current)) {
        $tpc = (Get-TfsTeamProjectCollection -Current)
    }
    else {
        return
    }
 
    if ($fakeBoundParameter['Project']) {
        $tp = Get-TfsTeamProject -Collection $fakeBoundParameter['Project'] -Collection $tpc
    }
    elseif ((Get-TfsTeamProject -Current)) {
        $tp = (Get-TfsTeamProject -Current)
    }
    else {
        return
    }

    return Get-TfsTeam -Team "$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty Name | Sort-Object | _EscapeArgumentValue
}
tools\TfsCmdlets\TfsCmdlets.Types.ps1xml
 
tools\TfsCmdlets\TfsCmdletsShell.ico
 
tools\VERIFICATION.txt
VERIFICATION
============

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the TfsCmdlets Project itself. Any binaries will be 
identical to other package types published by the project.

Third-party binary files contained in this package are .NET assembly references 
and can be compared against their respective NuGet source packages.




Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
TfsCmdlets 2.5.1 48 Monday, August 22, 2022 Approved
TfsCmdlets 2.5.0 45 Wednesday, August 3, 2022 Approved
TfsCmdlets 2.4.1 53 Thursday, July 21, 2022 Approved
TfsCmdlets 2.4.0 75 Monday, May 23, 2022 Approved
TfsCmdlets 2.3.2 49 Wednesday, May 18, 2022 Approved
TfsCmdlets 2.3.1 58 Saturday, April 9, 2022 Approved
TfsCmdlets 2.3.0 49 Sunday, April 3, 2022 Approved
TfsCmdlets 2.2.1 57 Friday, February 11, 2022 Approved
TfsCmdlets 2.2.0 49 Saturday, February 5, 2022 Approved
TfsCmdlets 2.1.4 75 Tuesday, November 30, 2021 Approved
TfsCmdlets 2.1.3 52 Thursday, November 25, 2021 Approved
TfsCmdlets 2.1.2 71 Friday, September 10, 2021 Approved
TfsCmdlets 2.1.1 62 Wednesday, September 8, 2021 Approved
TfsCmdlets 2.0.0 64 Tuesday, August 3, 2021 Approved
TfsCmdlets 2.0.0-rc0005 71 Sunday, April 18, 2021 Exempted
TfsCmdlets 2.0.0-rc0004 72 Monday, April 5, 2021 Exempted
TfsCmdlets 2.0.0-rc0003 55 Friday, February 19, 2021 Exempted
TfsCmdlets 2.0.0-rc0002 60 Tuesday, December 1, 2020 Exempted
TfsCmdlets 2.0.0-beta0015 69 Tuesday, July 21, 2020 Exempted
TfsCmdlets 2.0.0-beta0014 51 Sunday, July 19, 2020 Exempted
TfsCmdlets 2.0.0-beta0013 56 Saturday, July 18, 2020 Exempted
TfsCmdlets 2.0.0-beta0010 137 Thursday, September 12, 2019 Exempted
TfsCmdlets 2.0.0-beta0009 81 Tuesday, September 10, 2019 Exempted
TfsCmdlets 2.0.0-beta0008 90 Friday, September 6, 2019 Exempted
TfsCmdlets 2.0.0-beta0004 103 Thursday, August 29, 2019 Exempted
TfsCmdlets 1.0.0.894-beta1 376 Thursday, April 6, 2017 Exempted
TfsCmdlets 1.0.0-alpha9 321 Saturday, December 24, 2016 Exempted
TfsCmdlets 1.0.0-alpha7 285 Thursday, October 22, 2015 Exempted
TfsCmdlets 1.0.0-alpha6 265 Thursday, October 22, 2015 Exempted
TfsCmdlets 1.0.0-alpha5 242 Thursday, September 10, 2015 Exempted
TfsCmdlets 1.0.0-alpha4 226 Friday, September 4, 2015 Exempted
TfsCmdlets 1.0.0-alpha3 297 Thursday, September 3, 2015 Exempted
TfsCmdlets 1.0.0-alpha1 295 Friday, July 31, 2015 Exempted

This package has no dependencies.

Discussion for the TfsCmdlets Package

Ground Rules:

  • This discussion is only about TfsCmdlets and the TfsCmdlets package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or TfsCmdlets, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus