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,209

Downloads of v 2.2.1:

58

Last Update:

11 Feb 2022

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.2.1 | Updated: 11 Feb 2022

Downloads:

4,209

Downloads of v 2.2.1:

58

Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

TfsCmdlets 2.2.1

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.2.1'" [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.2.1'" 
$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.2.1'
    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.2.1'
end

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


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

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


package { 'tfscmdlets':
  ensure   => '2.2.1',
  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 as a trusted package on 12 Feb 2022.

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: 01421FED84CDD73E2F749E6D1AF60CE4 | sha1: FAE1B5E71BABB2DD85F221E20396350519FC6961 | sha256: FA350B029CFCBA978F9CA4B92E18E6E7574DA1B8C07C92FBA2552702AA9860E2 | sha512: EDD21E6B18A4D038660BA2E7C340F3D73C91ED2493EA24C8D5EEBF898B0A3649E141AEE9A9A2A730D9617249A92AFB6626AD5F8CB71AB75313777DE0AB909087
tools\TfsCmdlets\Lib\Core\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: B23B2DAE0070E38F6874549FE0D7002A | sha1: 1D9C4B513A984CAA287FD84E0FADCAFB7BB59B27 | sha256: 792B5EB16D04E2C321B58A8313FD17D1D097D04691136939DA60708B32902420 | sha512: 52F73628279D932D4A60696ED900A665374E060E65D3D1C20B26A8FDF4F71F4459FDF0763EB1495365221BDEF77A88EA8D46B2A298C5DC488993D91A6A044868
tools\TfsCmdlets\Lib\Core\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: B0ABCB1D9A61222DFCE21E742C912849 | sha1: B2811D198435F7434AFE926AC9D4417526ADF882 | sha256: 5E0255317F8A8DCCFCC78333A0C7111FF3484B402152DABBE519DE89947FA5E5 | sha512: B4D223EA9B0313ED2ABFFE7B81E2E5D82DA146C008DCD4CD0EAE646AD1D3B31BE34CFFC6F8E122542DC524F0D6D7F35206DF771C8DE15888BCC3DB45718F55D6
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: 855AA0E4FBF1AAB135542A68DAD34914 | sha1: 0BCE737073C189BC3349B7B9DD1E5A42C6814356 | sha256: 45B8D3369DF2CF1992FB0241DD370D293DD596645B4CDCB566592B55559C10D2 | sha512: F624BF111791CA911B39FCC4384284238EA258FFA942112003C4D8EDD2907500CAFF956CE2D374477B33A8E9F8BF77428F996E1DB0C9BBDFD900AA61DE6C13C4
tools\TfsCmdlets\Lib\Core\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A77204972237FF2FF274ED5BEF270CCB | sha1: 9983BCC01CBFF4FCB29233B99BCC3754F9AE484A | sha256: 0813B3F3BB1D39BD9D34BE871EA7C1453CFB4A870FB7F6601EDBDF8381A87A2B | sha512: 4D8F99281C5657CB56CE7523D13BCD77753F89E90BE5B49A55C87E8554693AE4E287A942CF82BF35180EE7D60EEBE3742B5782CC3F8F1D1BB3CC743C53C0542A
tools\TfsCmdlets\Lib\Core\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 13F443222518F78AC79FEF3B23AA0DEB | sha1: FD759733A69B8C697128791A9B1A77A0C94E81CC | sha256: F32EBDF06A4931E1D478C7681C374A4052B6646C8BF555D4D4A0500F8F8C0B82 | sha512: AB1BC5F7995168B345F7CBE45D837F9013B6319602FCFB71BC7C297B8D8F79B05B1A9C779CCFC62ECAFD5303BBDCE177CDB5449D2C0A470C5CFF5D56966370BC
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 06B9864B0CBFF63003CEABB5F26401DD | sha1: E957E6AAD40A384D648202A9436C644003013542 | sha256: 51868F0350ED9254F268E6FCB7AD51F28720E7810D9093DA227D74A7568333B8 | sha512: AB32AAFE4B841D6C5CB220122F9F321841609C22333A12E0560327A840DCDB5390204205667F0C56523907A1D85477F48DCB196FC005F7DC9A7264C662D1C75D
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll
md5: D03053CCBE324ABFDE2E7EF9FD1E2B83 | sha1: 48D3ECFA1E987249CD624674DD660A1B7FD7828D | sha256: D1D1A5AC032C5F47196D718C663BECC345A3158939469A42007FFC580194EDDD | sha512: 5C9E4389364BB41C9E56EB82BD2F1133D3E97680C03FCA0894B24C0ACA0C59E8DC0BE2A447720BDB1016AB607E59642291EA247DDF88322919083BF7F19E3185
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: F18CA3CEDA31AC8AC4BB50F86EEF8292 | sha1: 038F9F1A620D3101E30D39E869E0DEA1FE63DCEE | sha256: 8B2BF2318AB07AD16BC37488BCC7C035CB9FEE2D87B11F15C9AC8049EDD1E938 | sha512: A8F99089F6AD4A289EAA254E7423ABFF17C1313D1D09D151608E28C94F9A13E5FB9CCB240BD3264092DFB359CFB8A240D42FFE1FED458265E6B667918C167456
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Common.dll
md5: CF42D954E58F88ABC20B2D89120925EB | sha1: 77D04C240B11C11AAD36A0509C569199D5156892 | sha256: FF977004DC3D08925229F099B1707CB1BB850F3201316AAA04F6E570FEB3337B | sha512: 78D6D2433EF70DE7714FEBA3AA97F47F13BFF91792EF37186CE0A38667B4C42CCF76BEE10C0FE6F6BF8B6BFBEB05187E2E34A45ACCCD80A5EC9CD642CF66921C
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 861A77E8BA9ED322B49F505975BCFD93 | sha1: 2C11BF8DBC3E1959A7403B3A5D97E7FC1DEBE254 | sha256: D7DDBB83A593E88CAEAFD6414300F75793B980789B4278A92272F96C427E85F3 | sha512: 4BA307FF6AF3EA7BE2C71FF9805C33CA644463BA694FCFC0007B242096A1985A3311DD2710B2CB9A404DE4BD93BE287DC79CC2B39D3EF9009AA0C731CCA58D3B
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: AC91B36C14EF9D34B78D68061F761871 | sha1: 715B1AB35BBF05B4D13C944BA51965ABFA99315D | sha256: A0DCD59B90F62C3BBD9091A5690BA6FF937CE224D64813EF500AB09551F737B2 | sha512: 3119FF44AC53115163AAE06400DBFEDFFFDC49ECBAC87CEB6CC60D578A9B9FE9086A37E307B04CB52F916A211BB75756D7419F83A283E321BD4F616E45A8FC03
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: C8D55CEFC1737BC2875C4286B4932178 | sha1: 25A931A1F3259389B6FE97D1379AEE89F870E89B | sha256: A916601C9732F94B16EA9054E66E97199DAF398850D4DAC1984CABC76CB7F6C5 | sha512: 45FF95E9B9447504C0D177DCF6E1642EE951EF60F61D6F7FB30F3B87EDB2AC6ECB88FC8E50D00331B7E8E2D5EC1C431715C629DF6D7684AEAC42FC4984B473C1
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 5DEECB21C570753390EDF60715C89D95 | sha1: 7D621E824C392E5001B549470E609F2238E760CB | sha256: F58ACF27BC9685BDE4F296238E57778A0F5E7F05AC26F58CAC311D5B7E5A60AB | sha512: 9CC03ECB4B9D55F3398B9E0312BFEEED58D22084193812265AAEA08936EED3679B66399AE52E85AD9576F5F03BC85FB48B65E918633691AF1082D9F0F6814638
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: A93C71C8739BFF4664E07BDE5A51DC33 | sha1: 7B57E7F6D2056D427B188AE7AD3FC640DD725DAB | sha256: 77DFA2700E67B607C7EB2061ACD7EE82488DC07CF37357CFC5BEB86BEF3D2532 | sha512: 7DC30578DA24B5EA9DCEFF23BDD4F87F451A0F3C47D971F86643B46FD81FAA7EBF08BEC0DED2C34670EC57C3DE1D7365558C9ABAEBCB63E703D017C2B643DB6F
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll
md5: 004256D2A7F243801891D5DCAC9ED9C5 | sha1: 8544D18F8A7C2B110DDFD3A85BA931CC330032D0 | sha256: 3D63A83D078CA294AD719AB980E050F55693592E1316C77A6D67B35304FBA0C6 | sha512: 862E12162B4C1203EE7A3E84368CC1D45FCDE333066B975D806387049AFB03B577BAC6359DD127B0C8CBBCA0191E909075AAE8FD88024B53AAD3545F2CEC143B
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 52F2054956E719732EFDFE62B20803B6 | sha1: C752CC3B0180D057B1692467163BB3BC312BC411 | sha256: 13D3E1ED27620F24EDA956311C2A0724E76A21339A53A1448BFE1AD431DE80C6 | sha512: 066CB7CFAD20A03FEE6AB1D5CBD9A7B5978CCC6D7CD4F0E227EFA76576DD5F26E9DA84602177B20B6812A67FF9CA318867946A127389199ED0545D8F6CDBB55D
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 42643AA861F09F7FD4EAB5649AB3F76C | sha1: E1CDFC5ECF3777315AF7DFA0024F245F5C489068 | sha256: C08BBCCB80DA1868680BDC3F884D2A28FDA824174ADAA38CA62810AFCD956B12 | sha512: 0AC444ECB2D7A9E4DA4A46EAB5D639F797AA12AEEBB0104FA5BB602C5AF3FB42A936DA2470F25D6F1DD8B3040DAE88BB96AA263CC1FA03B397827008B6014C61
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 3984939B7CE6CEB10AA3801C2279C785 | sha1: E8C3CE70D84018131EFE7630DEE0D5041AA3C77F | sha256: E6BF1BB28C987123C5A2FA5F48C320FEBCA43AA9FC537670ED66BE5D4A0EFF93 | sha512: 58A188CA1B14E270884E59628CDE7DA52C54304B85617133848EA8B155223D1438143B9D93AF0930DF90EDA83E872817187BC433227EA5A622D632232EA9B573
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 19E47C435026AD83C336481CA0F178B0 | sha1: DCAA69EE865261D4D1791CC5D5AC9E456E8BA87F | sha256: 2FE519DDB8F1101CDD55A66AF98021CDB979CE6C2D41577EF734F62901A49997 | sha512: 0F54451D4D10BC6CD95C37CC7CC84E0AD76511EA36DB364809F8768499FFFA961031E469F5AEFB68BD1E3279DAE62496E79F0F9AEB1ACEAC688D450398D8AB52
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: 446892B5FCEA6043E3D3DC15B6CEAAA8 | sha1: 520FE16A944CEF034697D9E6F2A577FAFE249AC7 | sha256: C302DFEDA2F942A4205DE770BE67A537063C52E1F5F1A392CFB2F5F72D387D1A | sha512: 82EDDAB17E284662FCA3D23660F4883087CA7B3C465FDABB8DEEB75012DF1F7A792C87B93DA9274FD25F941DED446AAEBF5DC7E9B3A5822F6D815D7A4CBB5A01
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: DC6EE2234975D79B2B3FF9C527530D2A | sha1: E5FC5873A5179D69A450484008EE1B9A3F0DC7A3 | sha256: 7979910F723D66EB68DD17B818C169F09F26FD29BFA1E6E2E43D93E4968196A4 | sha512: D69B0B05F320D9F6529860D362FD15D90C39A02B2227EFE31BB0DD99BC3FFB9BB276BCEB68AB09E3932C5A6B6BB279280BBA0484724D0D272A1D7E73D79BDE27
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Common.dll
md5: CA502633496545DE46CF47AEFFB3378E | sha1: 0CA12D357895E7FF47825FB738A02E31A1E6C5EA | sha256: 3CE09AD33B47D1C7DB6E1067EA0456941AE3F06FB28DF641723F18DD88F735D4 | sha512: E742C3F2E2902B8AA9E8720098CC8E327266AB9CC6B7E4E3F60E429019F3CE17F920389B12C428BFFBC5D57CA69DB62F13BA56F4D13A45B141BB989E30716031
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll
md5: 778FE6A1228E876692B0E2AC91C1BD7E | sha1: 0FB912E71DF72497B8CC2EF36350E44F0614E9F1 | sha256: E67C255D0CDAD681C53E4ABB99E06AB91038C57E5812AF40ADA6A5F201CB510D | sha512: 9888AAEBD9E3C687458E91CE68BD5F50804AD2BB6A08C341B6C078FDC8649AFD9AF42D85777A8ADDFF66CFE4E348ED433D57F2F3344E436F9417BBFC2A98AC00
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Gallery.WebApi.dll
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 41D6F2FC1D44E4C77FBC0072F28CE3F6 | sha1: 316B53E6DF293468B83288965D182497929DCC66 | sha256: 83EB2668DD4FCB5FD4F26965654D642ED0B779E1D8DFB2659D4E0F795425D3E3 | sha512: 653620F38E5311B4EB2C67DDA2D3321726B20D0279E19396C396015C414BD0AB9D7D8010C11259F6A83EEEC8F40F779420937C73EFE44439DA87558F112AC5A6
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: 1B1261AC52110E7CAB25AE6550773483 | sha1: 7AAA6858F1E7068B8CBB939C707209E2943A3E0B | sha256: D805FA2FC970B9E233D11733D98C2076C21E8C50622A6B59527FD7C0A3B151B2 | sha512: B88C627D3F6D19F71BDE2EAC1355FEA4F867BD24AC609E60988CA8E94225B072EE0F21F4102909C498115D8D2DB9B6A087584DE81B457AD803E23672C5CCFF00
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: E103A5FBE2D91B0BD3FC0AE881708F30 | sha1: 062A32DFABE6CBF90F9C58302940953C5DC56F51 | sha256: 9E1D6B5F6EECABCA2A3122BF21E7B299E1C114FAF7C18C81D807A0807DE12E77 | sha512: 57DDF87E4CEF17A993820ADB34FE02C799471DA6200EF8B82E3E8B76EF8C2E2CC400CC1B0663BF44345FC8D96B6BA56E707AF6BD841C42B9E1C46522B576A64E
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: 3CD6519A7EC649F7AB387FD495240DF2 | sha1: F834AC07EBA5B4297D8FBA4A63DFC1E60E961BAA | sha256: 3FE4ADD142E97FB75B2913CA29982625B199570C0E5B56D9A9F3D4833B29DE36 | sha512: FDF73145CCB96F64ADC5E88650577C2C4E271327078D5D0C708B0051E9B3E86EE413DBBF81F1522DB19515B012E980807047020659B2FC46788BBEB435512925
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: 3FED4391119D99F24EABABF06AF3096A | sha1: C8CF6DB52C9A7F560044C74B7FCEB273B3EFE00F | sha256: 8D1EBC6A2E483B5FD4B6302CE95854448DAAB691A2D32C83207E5CBF8E0E935C | sha512: 8265F916A9B8958C07DDD6A0E7D61BFE48855846C4B0B41726324BE16E5B38413BDBAC42678B965907777241A270EB933CBB78397FEE753FB352BB0C642CC856
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: F7BDC4F4F701C983BBC26BE3DF16637C | sha1: 966A6887893DB5980F1AB8ED77E553D387BC22DB | sha256: B90DC56B2F2A7EF2A15C6F8D2CE5D6C3DD04F568E9D845ECACC8658D31896B7B | sha512: DDD6B3FFD6D358F5606360766B3E6633C83E219B0CDF91D237F604171CC89E0CA9A813DF3EC12263349702C54C903C6B33B7352F01C21E63F9B533E83BE2E8A6
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 49B4492534596D0EC62644C4C5091E07 | sha1: CA68CBB8774403C19D81E3132169EABF7B07712A | sha256: 7211C000BE94EE255F05AC30E2BBEDC505C7875E7D31532562C48B56B1D8F2F9 | sha512: 4392FA609713A6C9ECED099B64C00A726B487836D4B15A304AE0674024B84ED45419FC175256764CA4036D58C23FE6E2FB9681F9F6390A60518887A32A7AA96D
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll
md5: 0C14EAE93DE63EEE83EBAFA794EEA0CD | sha1: 3E3FD1E3855C82A8AE184774BDB63E08E7667FBF | sha256: 9E197BC2D22E3330C30F1D4B6627E60180EF22BE23F504FF468A01A301F73E07 | sha512: 652DD8146387C2258C82FBD72E8D6812E3FAC5B353625C8CAD0D10FA44120588C07F7CB96A3E332871FE6D63DB28C79436751CA8659A00860814D3802CE71E2D
tools\TfsCmdlets\Lib\Core\Microsoft.Win32.Registry.dll
md5: E1D9A5B63A29E0BE888CA6952700AB83 | sha1: 819607A0C5ACD057219E22CC1174A2E3078B9D6F | sha256: 340933AD6701077AE9B8035E4671803D86074AB32F2DE8165ACFDB954BD260F6 | sha512: 5E153BC90195E20E503C8C04B1361598947DE3500C8C6F6FD6BAF0E245AA5AFC7D84BF55787D11914A28C0E8186A29360A94FCC8B816F482045B7032EA8738D3
tools\TfsCmdlets\Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll
md5: F754EC6EF5CA903F4CEA8B165C45411D | sha1: A145083EB481AE88C8DC899661D5FC68C6452D34 | sha256: 31A881968F7D90091B68594938F7A5BA3BCF3C6A9714646D115B94492FE1B09F | sha512: B466F88F1D0DEE29751B92C8C9F5FB83A8AE4AF5322817379010F8542E068857DC1A6C0DD4BA6EC3894F1C26CB80667FEBD71F0FC31A96432F14D9936FE98A2B
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: 1663DCF055D58D69FD34E426023E7810 | sha1: 442DCC571DE24FEA1A581466C8F4F9C008E18D2F | sha256: BD3060EE962427263F5B5145FFAE884C7692350BA392B9202A55F31FB639B1F8 | sha512: 1B48105C33620ACF9E98577D4CE3909B600A654DD5042AC8B021210A9F4D16F68C4AB16A5EB216DDB0F7E6F3EFEF8EDF3EC8FA73EBBCC4B58D471EAA943ABCAA
tools\TfsCmdlets\Lib\Core\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
md5: 0035B12417DFD1D22D43D696968CB54F | sha1: 76AE451BE0B87AC0A7CD5DE80EDBE117AE191535 | sha256: F470C7EE0F99F5CEAA25F51970988CFBCDDBE0F8DD8491CA3E9CF4F9F52FDB75 | sha512: 600A2CE00F779D0A2F87CA23CF3C6D280067666879A3978923056B094815830AEA9CABA7A5E32BFC6A0B973C8D2A6D706EEA1F73658EAD840CC05AE705841F43
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\netcoreapp2.0\System.Security.AccessControl.dll
md5: 5CA4F84F2270A788FA2BEEF07A4789B1 | sha1: 10471C83F8F24880EDC09CCFDE4464119CA7E9FA | sha256: 94D32FBE707C5A162C1F7E37B092F0EC39F5C03152609A140C9F85AA4F8768EC | sha512: E5B7F40396515DB845E48967F704438EA06359A4E4FF728FE98E44807A935BF44AA0E1C26D1976A4EE8D587F970CDB40F95F0659910FCDA6F8F935968882042A
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
md5: E9F61F68DF63CF7AC8353CA16A4DBD26 | sha1: 0B94FA28A00C427536CC948E2B0ECD1F6A67A010 | sha256: 0ADD93A25FD4E011DB55CAC9E7C062B807D98447BC8272CF3A24B06B7437C16C | sha512: 793A139769F93D74B59F7D46846D3023DC46E129C88A6BACE865BE9D97806832433248E65886C8D080E241201AD4AA04B4B664DB42E612AD5408838AFA4AF89E
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.dll
md5: F775A8103A6034D25FBB2934F5E1B979 | sha1: E449296D1AE86C6417B3067F6AA5108946C5E15A | sha256: 5738F1E014D65979898848781075DB25EEDE1F14D7E38D68CEA6A4C49BC2B2C4 | sha512: 9F52DD9E4CD78FFC240A794752C57158A504071EE45284EE71F93D25B938554C999D60324FDBDBD5B2602429297DF4EF6175DA44B076A7D6AAB1FEAD5A8A53AB
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.Composition.AttributedModel.dll
md5: 0E24D79FE08AA7B71D19FE6AD14C295D | sha1: BA1275DE8F071678DC90B22B61F060F8BA001993 | sha256: AB4FECCCA563E375682A7DB7CC9506C453C22AD8120185E4E1992F26286E078D | sha512: 4978AFA0C5ABF65A842305226A008297E39FD4092F371F382A51EAB75D0AEA0E95FF011A01669F8A76D977F4EA058C0061BB1982A0ECD3DCB1DF60136DC680A5
tools\TfsCmdlets\Lib\Core\System.Composition.Convention.dll
md5: F508D33D0B7441FF0F73817ECC73970A | sha1: 8B198FF1DAA027EF2C78BA207B93025CD630C251 | sha256: 3FD2082C5E23B60422134820E26EB28C4BAF9A3942F22B67BE4BE3D50370C3B7 | sha512: AFFDA34D71E95429C083820B549354E0363A61F10D0D18B5ACC6648CA10EECB7482AFCA7DED86240C838E6DB3781924193E8BC4FDAD8D5234EF23F44FBC63D2D
tools\TfsCmdlets\Lib\Core\System.Composition.Hosting.dll
md5: 08DB7806F11AB10392BDBA09EECAE479 | sha1: 2330C6560A0AAA0A28A9E0E6FD6A26B2ACA8FA30 | sha256: 60877E1ACA971565A3D9F23510DECB6CF66F8C1316329C4F825502E5FD868BE1 | sha512: 22B38A353E3EF844F4BC310432A29E77566E25E870864A9A8800065D95A2455E92D05D752E1C0BC92C3AB39B1041E64B8CA026D1BA745F045F832EA86E8C38CD
tools\TfsCmdlets\Lib\Core\System.Composition.Runtime.dll
md5: 1E62006B129E3A07DD291E1AB7103F34 | sha1: 239B95812A5EB827DCD257A9E493DC45724BC60A | sha256: 264B6532B92801B3B3D1F84CE6A041F623698799AB3FA155A594848D2908D9E1 | sha512: 31A2026BAC940FDCAB19A5AAE0494C6C66166B330B9A334EBA80C78014D9FAA6DF532052EC4F1F3E1CE4D1A58BB5E5E96156138A21DEF34BB935C81D1D9E877D
tools\TfsCmdlets\Lib\Core\System.Composition.TypedParts.dll
md5: 731CBB9F66DFB988DD269E3B405F467C | sha1: 0D0650D6A2E2F74A914E0D2595A10139B50D9803 | sha256: 9739319C404D5E20F204CE7EBEC63EAD07F5A7AE165A70CECD58E3E01A0AA94E | sha512: 8C4C46E172821A660612C7AD079FE9BE62F1D6BDBC3B57CAEDF540B558B91DA56B829DB07880BB130103B42A3D2F4E3CCF450BC7462DC72F53B477C15034058A
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.AccessControl.dll
md5: 2AA3BE1A5E32B7FC89EE5460A2C4DB18 | sha1: FF27582916B77D75DF896399EDE0B9E8FFE369EF | sha256: 93084849C17A21F641C13C9F17545CFE18C1EC097561F3F0EBBBE26F358BA120 | sha512: F470FE10E0033A8D96DE8A747243EB1F90E07108873270D4CA538A02F46AB20232FD715B05A2F23357C0D58B0C845C4E7EA35F453B90AEDA2942F36D57D6D498
tools\TfsCmdlets\Lib\Core\System.Security.Cryptography.ProtectedData.dll
md5: D3AD09FBF202167B7E6B5F0E1296380B | sha1: 2C099DB9745C21754B03A4C9AF55213A1A4444F5 | sha256: 81A0385CF1FED22F3153789D4AE1FEE75719F23E72CD543EDBA1AF48926FBF24 | sha512: 0B660A4ACB24D382BBD7058E2A3D21CDD741E7ED0A9D60672B0B667A75E145E229A594D302C78AECB5A729830092BA0117187665F8043A6590F8829D86991395
tools\TfsCmdlets\Lib\Core\System.Security.Principal.Windows.dll
md5: A1F634780387AB0B5219A8741366F4A2 | sha1: 0CF42E1BD78443AE1D6C16223A7FF463C5105D21 | sha256: 7828DFD952A9FD49404477BAFF714849177D9F18C0654ADAFADBDCAFB4B21F47 | sha512: 77A1A74ED08C746C0DE4D523D0128233EBE8AF601127BFF5A2531A8F062AC83D2E6C792B54AB17ECB0CD4EF4A9CE3216975953CEAE8EBAF26374BF809A79BFD0
tools\TfsCmdlets\Lib\Core\System.Xml.XPath.XmlDocument.dll
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
tools\TfsCmdlets\Lib\Core\TfsCmdlets.Common.dll
md5: 42F32F61F6CEEF2B0603A0CA7FDE0DF4 | sha1: E67403741E6FDC9A03F48C044FE5B8569B3D0827 | sha256: 08DF648FE86ADDE211DBF4D6519E41E041C4BED81414942F57FCB7A1B0CD4015 | sha512: 5296E088A86D4BAF748A489A7CF4C27A9FCA7D98ECC1A35701D4405C7921A3E33831DE6F845EF4C516E579A1D40E5C858F9C04EE557354DDBB03D8BB44DEBC46
tools\TfsCmdlets\Lib\Core\TfsCmdlets.Common.pdb
 
tools\TfsCmdlets\Lib\Core\TfsCmdlets.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "TfsCmdlets/2.2.1.2667": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.196.0-preview",
          "Microsoft.Win32.Registry": "5.0.0",
          "PowerShellStandard.Library": "7.0.0-preview.1",
          "System.Composition": "5.0.1",
          "System.Composition.Hosting": "5.0.1",
          "System.IO.Compression.ZipFile": "4.3.0",
          "TfsCmdlets.Common": "2.2.1.2667"
        },
        "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/5.0.0": {},
      "Microsoft.NETCore.Targets/1.1.3": {},
      "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.196.0-preview": {
        "dependencies": {
          "Microsoft.VisualStudio.Services.Client": "16.196.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          }
        }
      },
      "Microsoft.TeamFoundationServer.Client/16.196.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.196.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.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.Azure.Pipelines.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Client/16.196.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": "5.0.0",
          "System.Xml.XPath.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi/16.196.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Gallery.WebApi": "16.196.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Gallery.WebApi/16.196.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.196.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Gallery.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.InteractiveClient/16.196.0-preview": {
        "dependencies": {
          "Ben.Demystifier": "0.1.2",
          "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
          "Microsoft.VisualStudio.Services.Client": "16.196.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.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Release.Client/16.196.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.196.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Search.Client/16.196.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.196.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.196.32001.5"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          }
        },
        "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.196.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.196.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.196.0-preview": {
        "dependencies": {
          "HtmlAgilityPack": "1.6.5",
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.196.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.196.32001.5"
          }
        }
      },
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/5.0.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.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": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.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.Composition/5.0.1": {
        "dependencies": {
          "System.Composition.AttributedModel": "5.0.1",
          "System.Composition.Convention": "5.0.1",
          "System.Composition.Hosting": "5.0.1",
          "System.Composition.Runtime": "5.0.1",
          "System.Composition.TypedParts": "5.0.1"
        }
      },
      "System.Composition.AttributedModel/5.0.1": {
        "runtime": {
          "lib/netstandard2.0/System.Composition.AttributedModel.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.220.61120"
          }
        }
      },
      "System.Composition.Convention/5.0.1": {
        "dependencies": {
          "System.Composition.AttributedModel": "5.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Composition.Convention.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.220.61120"
          }
        }
      },
      "System.Composition.Hosting/5.0.1": {
        "dependencies": {
          "System.Composition.Runtime": "5.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Composition.Hosting.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.220.61120"
          }
        }
      },
      "System.Composition.Runtime/5.0.1": {
        "runtime": {
          "lib/netstandard2.0/System.Composition.Runtime.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.220.61120"
          }
        }
      },
      "System.Composition.TypedParts/5.0.1": {
        "dependencies": {
          "System.Composition.AttributedModel": "5.0.1",
          "System.Composition.Hosting": "5.0.1",
          "System.Composition.Runtime": "5.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Composition.TypedParts.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.220.61120"
          }
        }
      },
      "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": "5.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": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0",
          "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": "5.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": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.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": "5.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": "5.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": "5.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": "5.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": "5.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": "5.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": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.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": "5.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": "5.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": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Security.AccessControl.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.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": "5.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": "5.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": "5.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/5.0.0": {
        "runtime": {
          "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          },
          "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.SecureString/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.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": "5.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": "5.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"
          }
        }
      },
      "TfsCmdlets.Common/2.2.1.2667": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.196.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.196.0-preview",
          "Microsoft.Win32.Registry": "5.0.0",
          "System.Composition": "5.0.1",
          "System.Composition.Hosting": "5.0.1",
          "System.IO.Compression.ZipFile": "4.3.0"
        },
        "runtime": {
          "TfsCmdlets.Common.dll": {}
        }
      }
    }
  },
  "libraries": {
    "TfsCmdlets/2.2.1.2667": {
      "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/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
      "path": "microsoft.netcore.platforms/5.0.0",
      "hashPath": "microsoft.netcore.platforms.5.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.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LtsbZGDJPCwBM79zkyGYklvnBZbkc7HTXPpfREfgkk+XPNwOH9Ilqgu9B33auavmFI7pb0igDz8DpJLC8nuy8A==",
      "path": "microsoft.teamfoundation.distributedtask.common.contracts/16.196.0-preview",
      "hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.TeamFoundationServer.Client/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QhKQMmctxI6D1thNSYwCXJFF9pA4GJlY7+7to3RlY4Z31uTfRumhy/XOBCrD0mXGEGTV3POgAQBg/IIBTmBp7g==",
      "path": "microsoft.teamfoundationserver.client/16.196.0-preview",
      "hashPath": "microsoft.teamfoundationserver.client.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Client/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mrqA/HXbh7cfwfHbao8fPKv1h0s2Y3qylHlb/ZKI0qZMabfHFw1hHRaBwALI8iul0LI8roLwAiMzdY46fPqUpQ==",
      "path": "microsoft.visualstudio.services.client/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.client.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6ZNm4ZtSOEUnkexy3KkznaNio4A6VUoqB2Pp5uhx0lW1IkJVlq9CPya7EawT8jwkOujeCMAdFDg5iCfgLjqMNg==",
      "path": "microsoft.visualstudio.services.extensionmanagement.webapi/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.extensionmanagement.webapi.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Gallery.WebApi/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-EioLU+QkGud07EI0AYX2cELMdine2R0OT163TubYl6dblS8q3QF2FyXORcUo4wTlc8g8g46bI1S9QGKA/MFWTA==",
      "path": "microsoft.visualstudio.services.gallery.webapi/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.gallery.webapi.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.InteractiveClient/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6+wlT2CPYNgsR9rUn9RpZ/H30w5RdSjj1ZCakBog8iLRiNZq4eawFgS/sRWJvqQny1O+mSnLPaQ0bGaohGSJZQ==",
      "path": "microsoft.visualstudio.services.interactiveclient/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.interactiveclient.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Release.Client/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SzalgRnopHrkIJ19/Kn65BxmmwcYLoYQvEnfbiO8Im/P8AmKEIaF9nnk3r2Mmir2owWa7hboT+d/2AsrdeC+BA==",
      "path": "microsoft.visualstudio.services.release.client/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.release.client.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Search.Client/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qg/RhIgrerUFSmHabu5iTgT5IebrU76RW+ECdL5ndc040t0cXAlRjehxhxlmAZJpEHJ/UZVPvybWh9qNbPnEXA==",
      "path": "microsoft.visualstudio.services.search.client/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.search.client.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FU8rRfpV2EIcbOLZhVIPRY6T0X5lrPGz4xbpAjaZKj9bvPUdg4vqEZZwQvGtJQMAbho81BxRQdI+1rWQ+/XuCQ==",
      "path": "microsoft.visualstudio.services.serviceendpoints.webapi/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.serviceendpoints.webapi.16.196.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.196.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1jrzrelqa3JBqOHkkRfOEpDh7+c7XWLQgxXVAjA/eF4UaQsAPNbCL2Wm0bEMojWr8UzIDR4ceEBW0E9DJNpYhg==",
      "path": "microsoft.visualstudio.services.servicehooks.webapi/16.196.0-preview",
      "hashPath": "microsoft.visualstudio.services.servicehooks.webapi.16.196.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/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
      "path": "microsoft.win32.registry/5.0.0",
      "hashPath": "microsoft.win32.registry.5.0.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.Composition/5.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UrYuixgW4c09lYLabyfGPS0VAtxtqCNRCSy3NaX0Hd0GRRldRM6UH4zRzjHSGxdZ2r1f6w++6/3LW27TB4CrQg==",
      "path": "system.composition/5.0.1",
      "hashPath": "system.composition.5.0.1.nupkg.sha512"
    },
    "System.Composition.AttributedModel/5.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZjxeoyKxyr36D1n+m5OxTQE8ESFMZ7HgzsXlGwuVfkap1lM/bYzwcTR+zXgSwPmYJmVgvgkJCVjLeBe9UG7Ppw==",
      "path": "system.composition.attributedmodel/5.0.1",
      "hashPath": "system.composition.attributedmodel.5.0.1.nupkg.sha512"
    },
    "System.Composition.Convention/5.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-q5R43Uv/xp3Ecq8umhKRlMqjPddL1Ywys1qXDw0hvk1e1pDQMfcJI5Uw4KXrFx0025jXFO3SS+IX6JZ0y1VEwg==",
      "path": "system.composition.convention/5.0.1",
      "hashPath": "system.composition.convention.5.0.1.nupkg.sha512"
    },
    "System.Composition.Hosting/5.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ItDUoBBt8l8d7KPNsDWycfv1KU93ce+R/MBdQ4gDNx253eKRfUh669g+kUMVLk7+bgkG5ne2HADS2RFYny/vAA==",
      "path": "system.composition.hosting/5.0.1",
      "hashPath": "system.composition.hosting.5.0.1.nupkg.sha512"
    },
    "System.Composition.Runtime/5.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-EO6feKp2tZpF6FMOPUc9bNu5B6K2lJN4ceCbrPzVFwxBTD+kESMvEEIez/bsZwOOt51/HK2elH9E5SbwoHu89w==",
      "path": "system.composition.runtime/5.0.1",
      "hashPath": "system.composition.runtime.5.0.1.nupkg.sha512"
    },
    "System.Composition.TypedParts/5.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bcMXgG5ipPN0RlHYJuytrOJQz7/sR3dnquT3ZyuJWtYuZFJ7dgUNvAkPz2mxdf1itolEMTiHunAUxd17ofvPwQ==",
      "path": "system.composition.typedparts/5.0.1",
      "hashPath": "system.composition.typedparts.5.0.1.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/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
      "path": "system.security.accesscontrol/5.0.0",
      "hashPath": "system.security.accesscontrol.5.0.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/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
      "path": "system.security.principal.windows/5.0.0",
      "hashPath": "system.security.principal.windows.5.0.0.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"
    },
    "TfsCmdlets.Common/2.2.1.2667": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\TfsCmdlets\Lib\Core\TfsCmdlets.dll
md5: 794560D1E22E8A5864F1FA2CF514D35B | sha1: 50D95F7DE70171AAA9AB1A19162D0DB3924D5638 | sha256: F2E7934965F3865F89E7B9DA99CC1F05ABD12FAB8AE8AE45BA21382E8FA48557 | sha512: 8A7395DA23DF139B333AADFD11E9A350B3FB927D084148A0DBBD3A39348E5FE236A335297629737455E592B55DB45E7FEA44704921C19C61A19C986D70153A0E
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.Admin.GetConfigurationConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationConnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.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.GetConfigurationConnectionString.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.GetConfigurationConnectionString.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.GetConfigurationConnectionString.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="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="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="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </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="T:TfsCmdlets.Cmdlets.Credential.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.Credential.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension">
            <summary>
            Disables an extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension">
            <summary>
            Enables a previously disabled extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension">
            <summary>
            Gets one or more installed extensions in the specified collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.IncludeDisabledExtensions">
            <summary>
            Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension">
            <summary>
            Installs an extension in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to install.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Version">
            <summary>
            Specifies the version of the extension to install. When omitted, installs the latest version.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension">
            <summary>
            Uninstalls one of more extensions from the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to uninstall.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit">
            <summary>
            Gets information from one or more Git commits in a remote repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Author">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Committer">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.CompareVersion">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ItemPath">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ExcludeDeletes">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeLinks">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludePushData">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeUserImageUrl">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ShowOldestCommitsFirst">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Skip">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Top">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Default">
            <summary>
            Returns the default repository in the given team project.
            The default repository is the one that is created when a team project is created, and has the same name as the team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.IncludeParent">
            <summary>
            Returns details about the repository's parent (forked) repository, if it has one.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Item.GetGitItem">
            <summary>
            Gets information from one or more items (folders and/or files) in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Item">
            <summary>
            Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. 
            When omitted, all items in the root of the Git repository are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.ForkFrom">
            <summary>
            Forks the specified reposity. To fork a repository from another team project, 
            specify the repository name in the form "project/repository" or pass in the result of a 
            previous call to Get-TfsGitRepository that returns the source repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.SourceBranch">
            <summary>
            Forks the specified branch in the source repository. When omitted, forks all branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P: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="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </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 cmdlets 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="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="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroup">
            <summary>
            Gets one or more Azure DevOps groups.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Group">
            <summary>
            Specifies the group to be retrieved. Supported values are: 
            Group name or ID. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Recurse">
            <summary>
            Searches recursively for groups in the scopes under the specified scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.NewGroup">
            <summary>
            Creates a new Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Group">
            <summary>
            Specifies the name of the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Description">
            <summary>
            Specifies a description for the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Scope">
            <summary>
            Specifies the scope under which to create the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup">
            <summary>
            Removes an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Group">
            <summary>
            Specifies the group to be removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.User.GetUser">
            <summary>
            Gets information about one or more Azure DevOps users.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.User">
            <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.User.GetUser.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.User.GetUser.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.ConnectOrganization">
            <summary>
            Connects to an Azure DevOps organization or a TFS Team Project Collection. 
            </summary>
            <remarks>
            The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization
            or a TFS Team Project Collection.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsOrganization.
            </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-TfsOrganization 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-TfsOrganization by default.
            </notes>
            <example>
              <code>Connect-TfsOrganization -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-TfsOrganization -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-TfsOrganization 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Organization">
            <summary>
             Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organization by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.DisconnectOrganization">
            <summary>
            Disconnects from the currently connected Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsOrganization cmdlet removes the connection previously set by its 
            counterpart Connect-TfsOrganization. Therefore, cmdlets relying on a "default organization/collection" 
            as provided by "Get-TfsOrganization -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="T:TfsCmdlets.Cmdlets.Organization.GetOrganization">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Organization">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Current">
            <summary>
            Returns the organization specified in the last call to 
            Connect-TfsOrganization (i.e. the "current" organization)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition">
            <summary>
            Disables a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition">
            <summary>
            Enables a previously disabled build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.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.Folder.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Definition">
            <summary>
            Specifies the pipeline path. Wildcards are supported. 
            When omitted, all pipelines definitions in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition">
            <summary>
            Resumes (unpauses) a previously suspended build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition">
            <summary>
            Suspends (pauses) a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="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.Destination">
            <summary>
            Saves the API response to a file. If omitted, the response will be written to the stardard output stream.
            </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="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoProfile">
            <summary>
            Do not load the user profile TfsCmdlets.Profile.ps1 (if present) when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.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.TeamProjectCollection.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.TeamProjectCollection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.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="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.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="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar">
            <summary>
            Exports the current avatar (image) of the specified team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the file where the avatar image will be saved. 
            When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar">
            <summary>
            Imports and sets a new team project avatar (image).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the image file to import. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar">
            <summary>
            Removes the team project avatar, resetting it to the default.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.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.TeamProject.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.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="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.Process">
            <summary>
            Returns only those team projects matching the specified process template(s).
            Wildcards are supported. When omitted returns all team projects, regardless of process template.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.IncludeDetails">
            <summary>
            Includes details about the team projects, such as the process template name and other properties.
            Specifying this argument signficantly increases the time it takes to complete the operation.
            </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="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </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="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.WebApiBoard">
            <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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.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.Team.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.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="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.IncludeMembers">
            <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 team settings (fills the Settings, TeamField, and IterationPaths properties).
            </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="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.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </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="P:TfsCmdlets.Cmdlets.Team.NewTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.RenameTeam.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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 path(s) that are associated with this team. Wildcards are supported. 
            When the path ends with an asterisk, all child area paths will be included recursively. 
            Otherwise, only the area itself (without its children) will be included.
            To include the children of the default area path, use the wildcard character (*) without a path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteAreaPaths">
            <summary>
            Replaces the existing area paths with the specified list of area paths. 
            When omitted, the new area paths are added alongside the previously defined ones.
            </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.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration path(s) that are associated with this team. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteIterationPaths">
            <summary>
            Replaces the existing iteration paths with the specified list of iteration paths. 
            When omitted, the new iteration paths are added alongside the previously defined ones.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days.
            </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="P:TfsCmdlets.Cmdlets.Team.SetTeam.Force">
            <summary>
            Allows the cmdlet to create target area and/or iteration nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.Team">
            <summary>
            HELP_PARAM_TEAM
            </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="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
            HELP_PARAM_TEAM
            </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="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
            HELP_PARAM_TEAM
            </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="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </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.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Branch">
            <summary>
            Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Path">
            <summary>
            Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder.
            </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="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea">
            <summary>
            Copies one or more Work Item Areas recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the area to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration">
            <summary>
            Copies one or more Iterations recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the iteration to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Moves one or more Work Item Areas to a new parent node
            </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.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Moves one or more Iterations to a new parent node
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.RemoveArea.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.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.RemoveIteration.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea">
            <summary>
            Renames an area path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration">
            <summary>
            Renames an iteration path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Length">
            <summary>
            Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>B
            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.Wiql">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.SavedQuery">
            <summary>
            Specifies the path of a saved query to be executed. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.QueryParameters">
            <summary>
            Specifies the path of a saved query to be executed. 
            </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. 
            To retrive all fields, pass an asterisk ('*') to this argument.
            </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="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.AreaPath">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.IterationPath">
            <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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
            HELP_PARAM_FORCE_OVERWRITE
            </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="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.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.Folder.GetWorkItemQueryFolder.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.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.Folder.NewWorkItemQueryFolder.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.Folder.NewWorkItemQueryFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.GetWorkItemQuery.Deleted">
            <summary>
            Returns deleted items.
            </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.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag">
            <summary>
            Disables (deactivates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Tag">
            <summary>
            Specifies the tag to disable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag">
            <summary>
            Enables (activates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Tag">
            <summary>
            Specifies the tag to enable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval">
            <summary>
            Restores a deleted work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.WorkItem">
            <summary>
            Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </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="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.ResumeBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.SuspendBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionController">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionFolderController">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolderController">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.ProcessTemplate.GetProcessTemplateController">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.AddWorkItemLinkController">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.GetWorkItemLinkTypeController">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.GetWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.NewWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RemoveWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RenameWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.WorkItemType.GetWorkItemTypeController">
            <summary>
            Exports an XML work item type definition from a team project.
            </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:JetBrains.Annotations.CanBeNullAttribute">
            <summary>
            Indicates that the value of the marked element could be <c>null</c> sometimes,
            so checking for <c>null</c> is required before its usage.
            </summary>
            <example><code>
            [CanBeNull] object Test() => null;
            
            void UseTest() {
              var p = Test();
              var s = p.ToString(); // Warning: Possible 'System.NullReferenceException'
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotNullAttribute">
            <summary>
            Indicates that the value of the marked element can never be <c>null</c>.
            </summary>
            <example><code>
            [NotNull] object Foo() {
              return null; // Warning: Possible 'null' assignment
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemNotNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can never be null.
            </summary>
            <example><code>
            public void Foo([ItemNotNull]List&lt;string&gt; books)
            {
              foreach (var book in books) {
                if (book != null) // Warning: Expression is always true
                 Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemCanBeNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can be null.
            </summary>
            <example><code>
            public void Foo([ItemCanBeNull]List&lt;string&gt; books)
            {
              foreach (var book in books)
              {
                // Warning: Possible 'System.NullReferenceException'
                Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.StringFormatMethodAttribute">
            <summary>
            Indicates that the marked method builds string by the format pattern and (optional) arguments.
            The parameter, which contains the format string, should be given in the constructor. The format string
            should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form.
            </summary>
            <example><code>
            [StringFormatMethod("message")]
            void ShowError(string message, params object[] args) { /* do something */ }
            
            void Foo() {
              ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="M:JetBrains.Annotations.StringFormatMethodAttribute.#ctor(System.String)">
            <param name="formatParameterName">
            Specifies which parameter of an annotated method should be treated as the format string
            </param>
        </member>
        <member name="T:JetBrains.Annotations.StructuredMessageTemplateAttribute">
            <summary>
            Indicates that the marked parameter is a message template where placeholders are to be replaced by the following arguments
            in the order in which they appear
            </summary>
            <example><code>
            void LogInfo([StructuredMessageTemplate]string message, params object[] args) { /* do something */ }
            
            void Foo() {
              LogInfo("User created: {username}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueProviderAttribute">
             <summary>
             Use this annotation to specify a type that contains static or const fields
             with values for the annotated property/field/parameter.
             The specified type will be used to improve completion suggestions.
             </summary>
             <example><code>
             namespace TestNamespace
             {
               public class Constants
               {
                 public static int INT_CONST = 1;
                 public const string STRING_CONST = "1";
               }
            
               public class Class1
               {
                 [ValueProvider("TestNamespace.Constants")] public int myField;
                 public void Foo([ValueProvider("TestNamespace.Constants")] string str) { }
            
                 public void Test()
                 {
                   Foo(/*try completion here*/);//
                   myField = /*try completion here*/
                 }
               }
             }
             </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueRangeAttribute">
            <summary>
            Indicates that the integral value falls into the specified interval.
            It's allowed to specify multiple non-intersecting intervals.
            Values of interval boundaries are inclusive.
            </summary>
            <example><code>
            void Foo([ValueRange(0, 100)] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NonNegativeValueAttribute">
            <summary>
            Indicates that the integral value never falls below zero.
            </summary>
            <example><code>
            void Foo([NonNegativeValue] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.InvokerParameterNameAttribute">
            <summary>
            Indicates that the function argument should be a string literal and match one
            of the parameters of the caller function. For example, ReSharper annotates
            the parameter of <see cref="T:System.ArgumentNullException"/>.
            </summary>
            <example><code>
            void Foo(string param) {
              if (param == null)
                throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotifyPropertyChangedInvocatorAttribute">
             <summary>
             Indicates that the method is contained in a type that implements
             <c>System.ComponentModel.INotifyPropertyChanged</c> interface and this method
             is used to notify that some property value changed.
             </summary>
             <remarks>
             The method should be non-static and conform to one of the supported signatures:
             <list>
             <item><c>NotifyChanged(string)</c></item>
             <item><c>NotifyChanged(params string[])</c></item>
             <item><c>NotifyChanged{T}(Expression{Func{T}})</c></item>
             <item><c>NotifyChanged{T,U}(Expression{Func{T,U}})</c></item>
             <item><c>SetProperty{T}(ref T, T, string)</c></item>
             </list>
             </remarks>
             <example><code>
             public class Foo : INotifyPropertyChanged {
               public event PropertyChangedEventHandler PropertyChanged;
             
               [NotifyPropertyChangedInvocator]
               protected virtual void NotifyChanged(string propertyName) { ... }
            
               string _name;
             
               public string Name {
                 get { return _name; }
                 set { _name = value; NotifyChanged("LastName"); /* Warning */ }
               }
             }
             </code>
             Examples of generated notifications:
             <list>
             <item><c>NotifyChanged("Property")</c></item>
             <item><c>NotifyChanged(() =&gt; Property)</c></item>
             <item><c>NotifyChanged((VM x) =&gt; x.Property)</c></item>
             <item><c>SetProperty(ref myField, value, "Property")</c></item>
             </list>
             </example>
        </member>
        <member name="T:JetBrains.Annotations.ContractAnnotationAttribute">
            <summary>
            Describes dependency between method input and output.
            </summary>
            <syntax>
            <p>Function Definition Table syntax:</p>
            <list>
            <item>FDT      ::= FDTRow [;FDTRow]*</item>
            <item>FDTRow   ::= Input =&gt; Output | Output &lt;= Input</item>
            <item>Input    ::= ParameterName: Value [, Input]*</item>
            <item>Output   ::= [ParameterName: Value]* {halt|stop|void|nothing|Value}</item>
            <item>Value    ::= true | false | null | notnull | canbenull</item>
            </list>
            If the method has a single input parameter, its name could be omitted.<br/>
            Using <c>halt</c> (or <c>void</c>/<c>nothing</c>, which is the same) for the method output
            means that the method doesn't return normally (throws or terminates the process).<br/>
            Value <c>canbenull</c> is only applicable for output parameters.<br/>
            You can use multiple <c>[ContractAnnotation]</c> for each FDT row, or use single attribute
            with rows separated by the semicolon. There is no notion of order rows, all rows are checked
            for applicability and applied per each program state tracked by the analysis engine.<br/>
            </syntax>
            <examples><list>
            <item><code>
            [ContractAnnotation("=&gt; halt")]
            public void TerminationMethod()
            </code></item>
            <item><code>
            [ContractAnnotation("null &lt;= param:null")] // reverse condition syntax
            public string GetName(string surname)
            </code></item>
            <item><code>
            [ContractAnnotation("s:null =&gt; true")]
            public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty()
            </code></item>
            <item><code>
            // A method that returns null if the parameter is null,
            // and not null if the parameter is not null
            [ContractAnnotation("null =&gt; null; notnull =&gt; notnull")]
            public object Transform(object data)
            </code></item>
            <item><code>
            [ContractAnnotation("=&gt; true, result: notnull; =&gt; false, result: null")]
            public bool TryParse(string s, out Person result)
            </code></item>
            </list></examples>
        </member>
        <member name="T:JetBrains.Annotations.LocalizationRequiredAttribute">
            <summary>
            Indicates whether the marked element should be localized.
            </summary>
            <example><code>
            [LocalizationRequiredAttribute(true)]
            class Foo {
              string str = "my string"; // Warning: Localizable string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CannotApplyEqualityOperatorAttribute">
            <summary>
            Indicates that the value of the marked type (or its derivatives)
            cannot be compared using '==' or '!=' operators and <c>Equals()</c>
            should be used instead. However, using '==' or '!=' for comparison
            with <c>null</c> is always permitted.
            </summary>
            <example><code>
            [CannotApplyEqualityOperator]
            class NoEquality { }
            
            class UsesNoEquality {
              void Test() {
                var ca1 = new NoEquality();
                var ca2 = new NoEquality();
                if (ca1 != null) { // OK
                  bool condition = ca1 == ca2; // Warning
                }
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.BaseTypeRequiredAttribute">
            <summary>
            When applied to a target attribute, specifies a requirement for any type marked
            with the target attribute to implement or inherit specific type or types.
            </summary>
            <example><code>
            [BaseTypeRequired(typeof(IComponent)] // Specify requirement
            class ComponentAttribute : Attribute { }
            
            [Component] // ComponentAttribute requires implementing IComponent interface
            class MyComponent : IComponent { }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.UsedImplicitlyAttribute">
            <summary>
            Indicates that the marked symbol is used implicitly (e.g. via reflection, in external library),
            so this symbol will be ignored by usage-checking inspections. <br/>
            You can use <see cref="T:JetBrains.Annotations.ImplicitUseKindFlags"/> and <see cref="T:JetBrains.Annotations.ImplicitUseTargetFlags"/>
            to configure how this attribute is applied.
            </summary>
            <example><code>
            [UsedImplicitly]
            public class TypeConverter {}
            
            public class SummaryData
            {
              [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
              public SummaryData() {}
            }
            
            [UsedImplicitly(ImplicitUseTargetFlags.WithInheritors | ImplicitUseTargetFlags.Default)]
            public interface IService {}
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MeansImplicitUseAttribute">
            <summary>
            Can be applied to attributes, type parameters, and parameters of a type assignable from <see cref="T:System.Type"/> .
            When applied to an attribute, the decorated attribute behaves the same as <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            When applied to a type parameter or to a parameter of type <see cref="T:System.Type"/>,
            indicates that the corresponding type is used implicitly.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseKindFlags">
            <summary>
            Specifies the details of implicitly used symbol when it is marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Access">
            <summary>Only entity marked with attribute considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Assign">
            <summary>Indicates implicit assignment to a member.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature">
            <summary>
            Indicates implicit instantiation of a type with fixed constructor signature.
            That means any unused constructor parameters won't be reported as such.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedNoFixedConstructorSignature">
            <summary>Indicates implicit instantiation of a type.</summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseTargetFlags">
            <summary>
            Specifies what is considered to be used implicitly when marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.Members">
            <summary>Members of the type marked with the attribute are considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithInheritors">
            <summary> Inherited entities are considered used. </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithMembers">
            <summary>Entity marked with the attribute and all its members considered used.</summary>
        </member>
        <member name="T:JetBrains.Annotations.PublicAPIAttribute">
            <summary>
            This attribute is intended to mark publicly available API,
            which should not be removed and so is treated as used.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InstantHandleAttribute">
            <summary>
            Tells the code analysis engine if the parameter is completely handled when the invoked method is on stack.
            If the parameter is a delegate, indicates that delegate can only be invoked during method execution
            (the delegate can be invoked zero or multiple times, but not stored to some field and invoked later,
            when the containing method is no longer on the execution stack).
            If the parameter is an enumerable, indicates that it is enumerated while the method is executed.
            If <see cref="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait"/> is true, the attribute will only takes effect if the method invocation is located under the 'await' expression.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait">
            <summary>
            Require the method invocation to be used under the 'await' expression for this attribute to take effect on code analysis engine.
            Can be used for delegate/enumerable parameters of 'async' methods.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.PureAttribute">
            <summary>
            Indicates that a method does not make any observable state changes.
            The same as <c>System.Diagnostics.Contracts.PureAttribute</c>.
            </summary>
            <example><code>
            [Pure] int Multiply(int x, int y) => x * y;
            
            void M() {
              Multiply(123, 42); // Warning: Return value of pure method is not used
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MustUseReturnValueAttribute">
            <summary>
            Indicates that the return value of the method invocation must be used.
            </summary>
            <remarks>
            Methods decorated with this attribute (in contrast to pure methods) might change state,
            but make no sense without using their return value. <br/>
            Similarly to <see cref="T:JetBrains.Annotations.PureAttribute"/>, this attribute
            will help to detect usages of the method when the return value is not used.
            Optionally, you can specify a message to use when showing warnings, e.g.
            <code>[MustUseReturnValue("Use the return value to...")]</code>.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RequireStaticDelegateAttribute">
            <summary>
            This annotation allows to enforce allocation-less usage patterns of delegates for performance-critical APIs.
            When this annotation is applied to the parameter of delegate type, IDE checks the input argument of this parameter:
            * When lambda expression or anonymous method is passed as an argument, IDE verifies that the passed closure
              has no captures of the containing local variables and the compiler is able to cache the delegate instance
              to avoid heap allocations. Otherwise the warning is produced.
            * IDE warns when method name or local function name is passed as an argument as this always results
              in heap allocation of the delegate instance.
            </summary>
            <remarks>
            In C# 9.0 code IDE would also suggest to annotate the anonymous function with 'static' modifier
            to make use of the similar analysis provided by the language/compiler.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.ProvidesContextAttribute">
            <summary>
            Indicates the type member or parameter of some type, that should be used instead of all other ways
            to get the value of that type. This annotation is useful when you have some "context" value evaluated
            and stored somewhere, meaning that all other ways to get this value must be consolidated with existing one.
            </summary>
            <example><code>
            class Foo {
              [ProvidesContext] IBarService _barService = ...;
            
              void ProcessNode(INode node) {
                DoSomething(node, node.GetGlobalServices().Bar);
                //              ^ Warning: use value of '_barService' field
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.PathReferenceAttribute">
            <summary>
            Indicates that a parameter is a path to a file or a folder within a web project.
            Path can be relative or absolute, starting from web root (~).
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.SourceTemplateAttribute">
            <summary>
            An extension method marked with this attribute is processed by code completion
            as a 'Source Template'. When the extension method is completed over some expression, its source code
            is automatically expanded like a template at call site.
            </summary>
            <remarks>
            Template method body can contain valid source code and/or special comments starting with '$'.
            Text inside these comments is added as source code when the template is applied. Template parameters
            can be used either as additional method parameters or as identifiers wrapped in two '$' signs.
            Use the <see cref="T:JetBrains.Annotations.MacroAttribute"/> attribute to specify macros for parameters.
            </remarks>
            <example>
            In this example, the 'forEach' method is a source template available over all values
            of enumerable types, producing ordinary C# 'foreach' statement and placing caret inside block:
            <code>
            [SourceTemplate]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; xs) {
              foreach (var x in xs) {
                 //$ $END$
              }
            }
            </code>
            </example>
        </member>
        <member name="T:JetBrains.Annotations.MacroAttribute">
            <summary>
            Allows specifying a macro for a parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>.
            </summary>
            <remarks>
            You can apply the attribute on the whole method or on any of its additional parameters. The macro expression
            is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Expression"/> property. When applied on a method, the target
            template parameter is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Target"/> property. To apply the macro silently
            for the parameter, set the <see cref="P:JetBrains.Annotations.MacroAttribute.Editable"/> property value = -1.
            </remarks>
            <example>
            Applying the attribute on a source template method:
            <code>
            [SourceTemplate, Macro(Target = "item", Expression = "suggestVariableName()")]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; collection) {
              foreach (var item in collection) {
                //$ $END$
              }
            }
            </code>
            Applying the attribute on a template method parameter:
            <code>
            [SourceTemplate]
            public static void something(this Entity x, [Macro(Expression = "guid()", Editable = -1)] string newguid) {
              /*$ var $x$Id = "$newguid$" + x.ToString();
              x.DoSomething($x$Id); */
            }
            </code>
            </example>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Expression">
            <summary>
            Allows specifying a macro that will be executed for a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>
            parameter when the template is expanded.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Editable">
            <summary>
            Allows specifying which occurrence of the target parameter becomes editable when the template is deployed.
            </summary>
            <remarks>
            If the target parameter is used several times in the template, only one occurrence becomes editable;
            other occurrences are changed synchronously. To specify the zero-based index of the editable occurrence,
            use values >= 0. To make the parameter non-editable when the template is expanded, use -1.
            </remarks>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Target">
            <summary>
            Identifies the target parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see> if the
            <see cref="T:JetBrains.Annotations.MacroAttribute"/> is applied on a template method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC action. If applied to a method, the MVC action name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcAreaAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC area.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcControllerAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is
            an MVC controller. If applied to a method, the MVC controller name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcMasterAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC Master. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcModelTypeAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC model type. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcPartialViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is an MVC
            partial view. If applied to a method, the MVC partial view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcSuppressViewErrorAttribute">
            <summary>
            ASP.NET MVC attribute. Allows disabling inspections for MVC views within a class or a method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcDisplayTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that a parameter is an MVC display template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcEditorTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC editor template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC template.
            Use this attribute for custom wrappers similar to
            <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component. If applied to a method, the MVC view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Controller.View(Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component name.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component view. If applied to a method, the MVC view component view name is default.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionSelectorAttribute">
            <summary>
            ASP.NET MVC attribute. When applied to a parameter of an attribute,
            indicates that this parameter is an MVC action name.
            </summary>
            <example><code>
            [ActionName("Foo")]
            public ActionResult Login(string returnUrl) {
              ViewBag.ReturnUrl = Url.Action("Foo"); // OK
              return RedirectToAction("Bar"); // Error: Cannot resolve action
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RazorSectionAttribute">
            <summary>
            Razor attribute. Indicates that the marked parameter or method is a Razor section.
            Use this attribute for custom wrappers similar to
            <c>System.Web.WebPages.WebPageBase.RenderSection(String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessAttribute">
            <summary>
            Indicates how method, constructor invocation, or property access
            over collection type affects the contents of the collection.
            When applied to a return value of a method indicates if the returned collection
            is created exclusively for the caller (CollectionAccessType.UpdatedContent) or
            can be read/updated from outside (CollectionAccessType.Read | CollectionAccessType.UpdatedContent)
            Use <see cref="P:JetBrains.Annotations.CollectionAccessAttribute.CollectionAccessType"/> to specify the access type.
            </summary>
            <remarks>
            Using this attribute only makes sense if all collection methods are marked with this attribute.
            </remarks>
            <example><code>
            public class MyStringCollection : List&lt;string&gt;
            {
              [CollectionAccess(CollectionAccessType.Read)]
              public string GetFirstString()
              {
                return this.ElementAt(0);
              }
            }
            class Test
            {
              public void Foo()
              {
                // Warning: Contents of the collection is never updated
                var col = new MyStringCollection();
                string x = col.GetFirstString();
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessType">
            <summary>
            Provides a value for the <see cref="T:JetBrains.Annotations.CollectionAccessAttribute"/> to define
            how the collection method invocation affects the contents of the collection.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.None">
            <summary>Method does not use or modify content of the collection.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.Read">
            <summary>Method only reads content of the collection but does not modify it.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.ModifyExistingContent">
            <summary>Method can change content of the collection but does not add new elements.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.UpdatedContent">
            <summary>Method can add new elements to the collection.</summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionMethodAttribute">
            <summary>
            Indicates that the marked method is assertion method, i.e. it halts the control flow if
            one of the conditions is satisfied. To set the condition, mark one of the parameters with
            <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionAttribute">
            <summary>
            Indicates the condition parameter of the assertion method. The method itself should be
            marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute. The mandatory argument of
            the attribute is the assertion type.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionType">
            <summary>
            Specifies assertion type. If the assertion method argument satisfies the condition,
            then the execution continues. Otherwise, execution is assumed to be halted.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
            <summary>Marked parameter should be evaluated to true.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
            <summary>Marked parameter should be evaluated to false.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
            <summary>Marked parameter should be evaluated to null value.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
            <summary>Marked parameter should be evaluated to not null value.</summary>
        </member>
        <member name="T:JetBrains.Annotations.TerminatesProgramAttribute">
            <summary>
            Indicates that the marked method unconditionally terminates control flow execution.
            For example, it could unconditionally throw exception.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LinqTunnelAttribute">
            <summary>
            Indicates that the method is a pure LINQ method, with postponed enumeration (like Enumerable.Select,
            .Where). This annotation allows inference of [InstantHandle] annotation for parameters
            of delegate type by analyzing LINQ method chains.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.NoEnumerationAttribute">
            <summary>
            Indicates that IEnumerable passed as a parameter is not enumerated.
            Use this annotation to suppress the 'Possible multiple enumeration of IEnumerable' inspection.
            </summary>
            <example><code>
            static void ThrowIfNull&lt;T&gt;([NoEnumeration] T v, string n) where T : class
            {
              // custom check for null but no enumeration
            }
            
            void Foo(IEnumerable&lt;string&gt; values)
            {
              ThrowIfNull(values, nameof(values));
              var x = values.ToList(); // No warnings about multiple enumeration
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RegexPatternAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a regular expression pattern.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InjectedLanguage">
            <summary>
            Language of injected code fragment inside marked by <see cref="T:JetBrains.Annotations.LanguageInjectionAttribute"/> string literal.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LanguageInjectionAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is accepting a string literal
            containing code fragment in a language specified by the <see cref="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage"/>.
            </summary>
            <example><code>
            void Foo([LanguageInjection(InjectedLanguage.CSS, Prefix = "body{", Suffix = "}")] string cssProps)
            {
              // cssProps should only contains a list of CSS properties
            }
            </code></example>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage">
            <summary>Specify a language of injected code fragment.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Prefix">
            <summary>Specify a string that "precedes" injected string literal.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Suffix">
            <summary>Specify a string that "follows" injected string literal.</summary>
        </member>
        <member name="T:JetBrains.Annotations.NoReorderAttribute">
            <summary>
            Prevents the Member Reordering feature from tossing members of the marked class.
            </summary>
            <remarks>
            The attribute must be mentioned in your member reordering patterns.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the type that has <c>ItemsSource</c> property and should be treated
            as <c>ItemsControl</c>-derived type, to enable inner items <c>DataContext</c> type resolve.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemBindingOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>BindingBase</c>-derived type, that
            is used to bind some item of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemStyleOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>Style</c>-derived type, that
            is used to style items of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlOneWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>OneWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlTwoWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>TwoWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteTemplateAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a route template.
            </summary>
            <remarks>
            This attribute allows IDE to recognize the use of web frameworks' route templates
            to enable syntax highlighting, code completion, navigation, rename and other features in string literals.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteParameterConstraintAttribute">
            <summary>
            Indicates that the marked type is custom route parameter constraint,
            which is registered in application's Startup with name <c>ConstraintName</c>
            </summary>
            <remarks>
            You can specify <c>ProposedType</c> if target constraint matches only route parameters of specific type,
            it will allow IDE to create method's parameter from usage in route template
            with specified type instead of default <c>System.String</c>
            and check if constraint's proposed type conflicts with matched parameter's type
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.UriStringAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is an URI string.
            </summary>
            <remarks>
            This attribute enables code completion, navigation, rename and other features
            in URI string literals assigned to annotated parameter, field or property.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.CodeTemplateAttribute">
            <summary>
            <para>
            Defines the code search template using the Structural Search and Replace syntax.
            It allows you to find and, if necessary, replace blocks of code that match a specific pattern.
            Search and replace patterns consist of a textual part and placeholders.
            Textural part must contain only identifiers allowed in the target language and will be matched exactly (white spaces, tabulation characters, and line breaks are ignored).
            Placeholders allow matching variable parts of the target code blocks.
            A placeholder has the following format: $placeholder_name$- where placeholder_name is an arbitrary identifier.
            </para>
            <para>
            Available placeholders:
            <list type="bullet">
            <item>$this$ - expression of containing type</item>
            <item>$thisType$ - containing type</item>
            <item>$member$ - current member placeholder</item>
            <item>$qualifier$ - this placeholder is available in the replace pattern and can be used to insert qualifier expression matched by the $member$ placeholder.
            (Note that if $qualifier$ placeholder is used, then $member$ placeholder will match only qualified references)</item>
            <item>$expression$ - expression of any type</item>
            <item>$identifier$ - identifier placeholder</item>
            <item>$args$ - any number of arguments</item>
            <item>$arg$ - single argument</item>
            <item>$arg1$ ... $arg10$ - single argument</item>
            <item>$stmts$ - any number of statements</item>
            <item>$stmt$ - single statement</item>
            <item>$stmt1$ ... $stmt10$ - single statement</item>
            <item>$name{Expression, 'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$expression{'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$name{Type, 'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$type{'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$statement{1,2}$ - 1 or 2 statements</item>
            </list>
            </para>
            <para>
            Note that you can also define your own placeholders of the supported types and specify arguments for each placeholder type.
            This can be done using the following format: $name{type, arguments}$. Where 'name' - is the name of your placeholder,
            'type' - is the type of your placeholder (one of the following: Expression, Type, Identifier, Statement, Argument, Member),
            'arguments' - arguments list for your placeholder. Each placeholder type supports it's own arguments, check examples below for mode details.
            Placeholder type may be omitted and determined from the placeholder name, if name has one of the following prefixes:
            <list type="bullet">
            <item>expr, expression - expression placeholder, e.g. $exprPlaceholder{}$, $expressionFoo{}$</item>
            <item>arg, argument - argument placeholder, e.g. $argPlaceholder{}$, $argumentFoo{}$</item>
            <item>ident, identifier - identifier placeholder, e.g. $identPlaceholder{}$, $identifierFoo{}$</item>
            <item>stmt, statement - statement placeholder, e.g. $stmtPlaceholder{}$, $statementFoo{}$</item>
            <item>type - type placeholder, e.g. $typePlaceholder{}$, $typeFoo{}$</item>
            <item>member - member placeholder, e.g. $memberPlaceholder{}$, $memberFoo{}$</item>
            </list>
            </para>
            <para>
            Expression placeholder arguments:
            <list type="bullet">
            <item>expressionType - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myExpr{Expression, 'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            <item>$myExpr{Expression, 'Namespace.FooType'}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type or expressions which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myExpr{Expression}$ - defines expression placeholder, matching expressions of any type.</item>
            <item>$exprFoo{'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            </list>
            </para>
            <para>
            Type placeholder arguments:
            <list type="bullet">
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myType{Type, 'Namespace.FooType', true}$ - defines type placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            <item>$myType{Type, 'Namespace.FooType'}$ - defines type placeholder, matching 'Namespace.FooType' types or types, which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myType{Type}$ - defines type placeholder, matching any type.</item>
            <item>$typeFoo{'Namespace.FooType', true}$ - defines types placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            </list>
            </para>
            <para>
            Identifier placeholder arguments:
            <list type="bullet">
            <item>nameRegex - string value in single quotes, specifies regex to use for matching (empty string by default)</item>
            <item>nameRegexCaseSensitive - boolean value, specifies if name regex is case sensitive (true by default)</item>
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myIdentifier{Identifier, 'my.*', false, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (ignoring case) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$myIdentifier{Identifier, 'my.*', true, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$identFoo{'my.*'}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix.</item>
            </list>
            </para>
            <para>
            Statement placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of statements to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of statements to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myStmt{Statement, 1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            <item>$myStmt{Statement}$ - defines statement placeholder, matching any number of statements.</item>
            <item>$stmtFoo{1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            </list>
            </para>
            <para>
            Argument placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of arguments to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of arguments to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myArg{Argument, 1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            <item>$myArg{Argument}$ - defines argument placeholder, matching any number of arguments.</item>
            <item>$argFoo{1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            </list>
            </para>
            <para>
            Member placeholder arguments:
            <list type="bullet">
            <item>docId - string value in single quotes, specifies XML documentation id of the member to match (empty by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myMember{Member, 'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            <item>$memberFoo{'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            </list>
            </para>
            <para>
            For more information please refer to the <a href="https://www.jetbrains.com/help/resharper/Navigation_and_Search__Structural_Search_and_Replace.html">Structural Search and Replace</a> article.
            </para>
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SearchTemplate">
            <summary>
            Structural search pattern to use in the code template.
            Pattern includes textual part, which must contain only identifiers allowed in the target language,
            and placeholders, which allow matching variable parts of the target code blocks.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.Message">
            <summary>
            Message to show when the search pattern was found.
            You can also prepend the message text with "Error:", "Warning:", "Suggestion:" or "Hint:" prefix to specify the pattern severity.
            Code patterns with replace template produce suggestions by default.
            However, if replace template is not provided, then warning severity will be used.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceTemplate">
            <summary>
            Structural search replace pattern to use in code template replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceMessage">
            <summary>
            Replace message to show in the light bulb.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.FormatAfterReplace">
            <summary>
            Apply code formatting after code replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.MatchSimilarConstructs">
            <summary>
            Whether similar code blocks should be matched.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ShortenReferences">
            <summary>
            Automatically insert namespace import directives or remove qualifiers that become redundant after the template is applied.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SuppressionKey">
            <summary>
            String to use as a suppression key.
            By default the following suppression key is used 'CodeTemplate_SomeType_SomeMember',
            where 'SomeType' and 'SomeMember' are names of the associated containing type and member to which this attribute is applied.
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Core\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 470449A5C16662B18DA31BADA80C6B8B | sha1: 28390CE8DDF4CD90B9317EE247D3F463C877C4BC | sha256: FA1CDF00D0B43F433D7445C66C1B500725D55417F62A4AD87D0EB801B24A3A37 | sha512: EF9A4B9A768FCA80A77A182FB58B7C05C256D45D119477625074E94597C89A2AA453019BC37FB2D5B83A0E5D0B2AF54A66FAD6B0CE37D4421FAA3827A8CF4AC8
tools\TfsCmdlets\Lib\Core\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 8FE24CA344911274C1FB0ABEC9F41011 | sha1: 95615A8F1843AC2B7B452AA8C701E92DF377D6D9 | sha256: A22BFA7D71F4B31337E6B2295E12CC468DD2EEC1FB2DAABBDC073CDD75A8DEF6 | sha512: 5A7A62BBC79B16D9B85A063C90A9339FD6E387E1458DDCD93E0AAF8591419DAA9E60E7008CA849D40299ED77D68703C6F993A018DD691503597CC215095EA899
tools\TfsCmdlets\Lib\Core\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 9D2D7F47ED553A3AFAA37B5466371B57 | sha1: 20FB486B8CF2EF52DFDEFEC71F96AD88A7EFB416 | sha256: BB5359DD2C80DE77C0884370A289501319F882F637FDB31BA93E5C9280CD8D16 | sha512: 96527BE30A0CB8FE31B6E3DAAFA0245F9BF82BAE4B97532DFB90EC5D0B557A4E53786CD299E11231FF1525CCD95D0B24FFE43CBB2E071CF2FEFF5E4F2FAD63B0
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: 9A3CB152D323385C091C7A02848EB9B7 | sha1: 6E2DAB66C2ACB2ED516A2DA4502BF587F23D11CF | sha256: 47B0E1D1570CC32B771FD09E1951E6AA4E3FB12D20300561B29D92D6BC55F41B | sha512: 4E021EC2CD55E60E1580DAAECA1B311E3E4DD1CCA30730106E2EFF304FCCDF7F1FCCE41C6D383C9D2BCAE8FA3205B886B1B44FBA7332232F8CDAA7BDB322571B
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 9607202DBF65C15DD1AF005ADF7F44BB | sha1: 28547C435A3116436FEC64A605A4F7D1F9B64C4F | sha256: 00C751AD5AD82D8F44F2EC4136CE332127BEFE74B46A30C820C40CC953F0ABFA | sha512: 3BB10A9B23E362DBA1BEF4959E44769A479FF428DCF64B23BDDBC40C1026C031F19DFBB85C8903255F483868981240AF3CEB4580F528B7719DEA04962EFF7AF5
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Client.resources.dll
md5: 1BA9A063504A87596471CE39A6DD1DB8 | sha1: 3BBFA886359F105EBD99D73B54530800DA648FA5 | sha256: 9D5D334803C74BADD0775B37479753FDD1D7EB8A9558E7E1200A520F34337326 | sha512: 1AE2BC4F5F9690CE1E088000C48F12BDEA5C2AAA18BA6F99A7C9A324B4043144CA8BA409D184DBF3B335311142DBA2C42CB0778F06099927358A122B13A3289C
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Common.resources.dll
md5: A9BBEFA0946FFB98A21AAA2ECA5356C4 | sha1: E36167EDC0B1731617981C8553FE63045B8B29FE | sha256: 28B13D6D1FB6C8F0F30F84B19FDDBCF4F076081E3CED4D4F48D5FC6DC3631B06 | sha512: 289A0C178FAC1CC35F02DEAEF33613833C148565DC46205219B8B70D113CCF70EB4C7C56B9A3307EE88179AFE50CB1FBFEE04A9D221B925668C1977B708B1368
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 158FC2827ADA470A1A67CFC84E224663 | sha1: 00A53F9C3133208CEE7C0E5B85647978B3F411D3 | sha256: D063CCF0200846BE728F985B219AAD0ECAB044E906C5D3DC9171E4ADA2C49343 | sha512: 9BE87BA5B5080517D009F65E3ED7BE7A3DAA6068DC17BBFF20AE15ED3063885E762E67C00660888623DF1B69B351C20E93475A3B7A86B6EC0D0034784EAD0445
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: D679F357633F6683E8FDE85989524CAD | sha1: 4B48BBC8FF0B7C208FF106140EAAAE670D78D8F0 | sha256: 155B21C3C206CD7B45C432828569BAC72C2AB9C1886F757E322911811240B9EA | sha512: 918DCDB5A3BC9F7F63B9FBEE2FD5014E0C453F14C576E6B93DC8A172C1CFC3F8518178A4C5D6EDE675E8C2C6555D394CC79027CEF6F2B0A149BB9057EE9442B7
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 9632ECBF2529E1388C766AAF339448D8 | sha1: 611A226C6240ED8822DEED1EE8DFB192DA622F42 | sha256: 5E381CFE119C65A5E5346B9FD9CF329F73B5EA2C5DD2FC3BC9F82A9CC95A6EEE | sha512: 1916C7746921E966CA8C716CCD8C1137A64A793EE428AB1B87C9DE1DD1A3F587436B97DBD201F79D83DBEE8A60EB6C1ABFFD3069598BF5B298A9326745BBC400
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: B66576D6BBFA9AC45662CF733FD32795 | sha1: E9EC845A5DFD4A1304F69168A910372C17D61B17 | sha256: 3FA13DD1C1B41029B5659126C74AF850FF9F02AADC11491F71597EFB038F0454 | sha512: B4DA86DEECECF8D83A67F1782C32332CD9ADB27154BD3BB1621BFA06AF58A7AD2B18F9A6A32AD50CD1511D1971C314C82E8339A15A60C46151AAF2D231E971ED
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 7D2392769DFB0FA1D2392F5893601DB2 | sha1: A48B735DFFC5B5F48508F373021E676F2E515C4C | sha256: E4E3CF499BFEBC9DEB5731EBE44A5326138BACB7842FAB0DAB8202CDB0AE1C73 | sha512: E0A6C142B373BC7960EA9A1CFEA0B021AF0650027DE2658E5AB672FFD7B9430DD544D47669EAD0C23BDB7AB3AB73C755160B7B5DF2AE40C7B34E19DE3B2FE2DC
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: E8C492E6EF0452C9281720AFC1E83E98 | sha1: C015A6127F9948EC90F36327AA881B1190FD9D9A | sha256: F8C60B9A03055AB39C45AAA609B6B2E0912FE615A228F5D4150B4CD41D729E5D | sha512: 49466C51ABFD245A6784BA1FA5BBD335FBD070BE68800DCDBB63F49C45D70478D97F07E3CC1F64F28DA631E1204526A417152198EADDC1BB4B98C32F9683D16B
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: F79E52F2B6BBCD826AAFBE778B787822 | sha1: 98E0B0CCD87CA53C99293F57B4AA6D3C1DADA062 | sha256: 741943D3F0872CAEE002A0BE51C479B9AC5A5E1137CAB67D3A7E70F17912830A | sha512: 2639F8785DC8F5318734FC7650C08C11FC2C2BA499D4C42F0F8EB6909B9439B43E259CF22A3D38500E7C51D1E1F9C26C49645A40B0877F6B682FA92BF4CE1425
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 4BCD9D3498FF1F637BECD222B3AC9C85 | sha1: 6DF8D4CC3F1CA757BA51B716E3EEA3961A4E50E8 | sha256: 8C0E455F651821DFAF7978AA435BACAB269269D0F2802760B96E4EFA3956A5D2 | sha512: 5E4F9029E3DB1DCB14B408F691C6F6BE5B89319429F437331B9797D81B5B082F5E40C0BF6FBB6961DCD0E193F1723DA3E3D074608C142A2944B6A200F4EADE77
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: C90E63CBB47B79AF7A2494AF1FBC4D7A | sha1: F432EA7274C75663343869C96995EF6E0831484A | sha256: 6A52F67FC44F2B45FEEFF6B4B01B5F73577131915E38C38B20C6E1E28C2B7D92 | sha512: AD2CB8DC90F836A892DFE391B29A4FCBFBC3CA31D3B343C99BA6A14FCDCB49A7783935B3F85A69D6D59E084B0743598A7E102B924120B20D1CB63C27077D667A
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: C77AD4B63DCDB7EDCC8ED1A4AACD883E | sha1: AD9CEF026A3530DDED6BE1EBD8170B48EE38E032 | sha256: 9B528BFB3F012AA46724DA19D10BDEE4B6D699FFBB3ADC36B8DD7ED47A9F1B8E | sha512: E32201DCAB3957B7944B07246FF0EDD12CD13AD9BC587B6E22111E99798FD806B70BBD2A11F40C802114C387FC05E2825EFC0A6818332487CB20BB2A5D09ABEE
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 93DA991BC1AF627AF5FD424F931EDE5D | sha1: 880D0A7FC02E84196A0540ABA52B70B8F06864AB | sha256: E11B5FEF1F111964F80B27ECE4DB25111D3A1AABFDB3DA4686058887839E190C | sha512: 698CE2F885DFBC3F7F113A549A056FAB730D2E6B7AD98DAFB202B13B5DF98B5A4B7E9326F5D28BC7CA38B8A8768E063FE2935228EF6B3660705F0C436399D79D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: A698D45699B004665E6533428EED0698 | sha1: FE20B20C1DD8CF0F7C5F5CD57AF8C6C13B0E26B2 | sha256: 717EDDA4E869AD309DD921119F6914C5383E903BE5D6D8A6B6BF3B117300BD86 | sha512: 2AD67069220DB2B3FC3DBA177F89764E0E2D23DDE1C9DA5A81DE07342E81D3063D939FC5770CA0ACB1258B09B17CB2FA5927C955E8EC2A1CC5267FB18616545D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 89FE296CB05FEA34A29D3656F1BE0776 | sha1: A7F483FA9FC21852042181BF7A5CF45EC7B53D46 | sha256: 64695F9B60FBDA5FCE0B4D7D6575A4C4F665229458D5482DAEB8E0F49EB7D7F9 | sha512: C5C3E84F8C775988E496D0E9761510275A310C6ECFB5D8984580FC1AFCFF45BBCC6A5681C800C872B2C40252EB0A7A8261D6E8F7A39895DC60C584227E487505
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: B6BFD08B0D0268CD5BB49A49DFE93B7D | sha1: A348C6E8C015A12EE77510AD5EECA66E94E940CE | sha256: 5991812B65AFB89249FDC3491254FC40099CB11307E36554B0FE8D163EB8C19E | sha512: AD06B4C69128D4D7398A7BB6169F80F08A5559CF5919E2A36A3F8F08D77D40E2687F5C155C6FB27CCB4AC41A207D4375A5E35ABBCC1DDCC4A53DAF7D3F24F7B5
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 186CDB5FD88FCB6E6E0BEB0C15F6D94B | sha1: 573BF82052F811FAB6F8D51F9D9BC1A273E4F8E9 | sha256: 5DF5C0679D755C802D7A870D862690FEB3A03302AF844E9659213242A567AC1D | sha512: 5DC2687C73DDAB2FB4026311BF44D0FC1D9957CBB6CBFEBFC794C250D6F514CAC227A1F67CB8E544201A5147A312620BC70FA54CF632E68D93E95BF4CFD8D85C
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 76CB23BBA0DA08BA4EBB2BF7DE2F3CDC | sha1: C386B2A0CD866F5E20E0203197BA58607685AB0D | sha256: 5B37F26DDAA1C3A5479C1CCF19C643828E02779165F2824E8B671274002E64AE | sha512: 1FB08ABB4CEF55971B77CD66BDFF5E8BF1C14F5F15388781FA69F35AA744A8CBCD473A7ED7ED91E3639F79F5056C880D12A829E99650D372C430AA8925866E5F
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 231C5D1D34C142701FF55BF3A9024EA6 | sha1: C0462480946D1C1293DB869C0213DE75C608C1B2 | sha256: 6E3BA81B170CD5EC6B321EC3209C4678F0A6543D1E47ABD7947D8224D2C5F8F8 | sha512: AE30FF0DA6D535090BB7C19C44DFDF47EE83328DE2C1BC0EEDA1D3890107ECA76AEA0723DFE4FA2CE245DB2FC9F23481ECCFBFF635352B40DAD4112A66AD1383
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: CF1D3655DF65792E7ED3EBB7BD779F08 | sha1: 4DEB16E945DBDF44F3B30D3DA60AFEE0967F4875 | sha256: 9000CC6BF0A2BEDBBF2C81D02A79CA9C1C4A35B096E9D4E685FD60D3D724844F | sha512: B83774A3613FDFDD62D3C5971BD8CDC8956460B27D8D39CCCB3B8E81596B0592FA0F6DC76CA84D61207D9A8BE188E957BA6186D70C9F80706FBB60890ABA7661
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: BC91D459FE32A0646FA0F4C7B9D00293 | sha1: 9F4E794DDFE98F4CF13807F54187A4EA4AD9F7A1 | sha256: 036D2DBA914700DE41F1CB766B8E06DB2C3E41F563D1E5D4EB7533B480B3B604 | sha512: FFE1F146DCDC2D58AF32D50866C9006C7D5B693B256DAA10EFF12D9B07573B2F41E0BF21F2CBF96DFAD4F97B61B964A0CF8CD4D932D3FE9125D43BD8EA7252F6
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 66DEA19BC5E3BBCF02B6E3F90CFBE3A7 | sha1: 8AC795F44F961F4760D323AD01EBFF136F0D5CF0 | sha256: 86D54DC5F78A81A62C6E2FEDBECDA0FBB11DB42AF0D6793B2ABFB21AC6693487 | sha512: 32C76565CF916B2DFF03C5348409AEB82A8EC73FA6967DA986015DD8EFDE3B632299B2D30809AF81E79C852811B8E054D6BA28C464BDD5BAB09A9D7042EBD0D5
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Client.resources.dll
md5: 94013932562F94C76BEAA59D5FEB3E42 | sha1: 91802EA810C0FDC6CBE5C1B8CB459CD291CF0C50 | sha256: 5E1EE2231D4A94BB920F6848DB668022D006979A6E7F28D56597F85AFAA21684 | sha512: 47F3FE2A780910B95F55DEA2A88A7F0D0F830190A974C75B7B5C1FF5C89ACC50417B3E90AA563AD16CDE03DBA6DB362DD323627D45D3FA825C5832B1D76B8A50
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Common.resources.dll
md5: C0EF443B707EBF3BBBE28A812B183811 | sha1: 7ADD54EBE6276A32A2A29E2F4E2E6F61A6F1DB88 | sha256: 2BC8DE39180C29FDA423347D4DB676E9859B976E4342C2E78E55912FEB7CEEB0 | sha512: E34E78CDC20B05FA8751EA0C22CE8B7DF6D8DA3875B33F000B0FA9B04B5C91A2189FA7B498A911A40FBCE27C588B5C8295AA37F609534B42D332069795C9FC03
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: B44F13CD5735B407A079C7895B955BC8 | sha1: 27050E0447FDCD55467E1FCE8B58475F1CA19F51 | sha256: F90221C306F57D709CFABE99934F32B484E03B73D6C4B9073D50CD3F8A4DB1DD | sha512: 3D244956009565D6BCDDDD4C1151BAA0A28B02CAE6590EFCBC22BFB9CD30F7190ABF3669532FC541408B247317AF4ED821A0F56C14EEFB4AB450666BA2885AC0
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: D0357296B562E4DA1D410B7D58F912E1 | sha1: E5A01A3A8B6C8FE944526705D94A378D66BF42C5 | sha256: 1F538B8340A51E873098BEA2DDCDA405CEB48B1BD8628BE989196F90364FF675 | sha512: 397987765F7B626EB2A881F6DEDDB2753A61F3C2C86D7D9A0AE1E44A6D985BD85C6B6BC2768719EE798E62DE3E872E1270BE7674D9E2B791C7AAE6B63447814B
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 14BFF23E80FBA256FA57E971CBF78177 | sha1: 0AE4668048F75F26D627A9860BF182B47236F278 | sha256: 1A70BCA46DE396F96520A35F40BB791F8425BF931338BCBB819323417972AD53 | sha512: 9C556C532EEC8F3324769251667D942A8E3F9879E09196BC1EB0A7472DD13B98FFE326A2A207CE007E8C2D608A145C699A9B49E30021975D67ED3E40A3240DC2
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: DAA85FE23828F43868B50EAF374EA908 | sha1: 091F011610EF3E83A352ABD2E8B3F9F83D046BCD | sha256: 567DF3EB7B446C708F7598CAEC0FD5E6DFD96708D305D5283856D7DDB53E1BA1 | sha512: B041886B4723F9E7CFAA71E06F99D6880750BBC27BE60CA15272FF99478D302AAC3E6D5F543009022BE755F50379A420A669DBA897880181FC27EAFAC3BA3C32
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 926D6285E6F2F17FF10635251C623F00 | sha1: 91E66BE19C0C33C78AACD4EA3CA09A7A41FEE153 | sha256: DAC9E1A7731DD3E7D6937419942350FBD559B951B1AFC0FAD072F2FA2CF013FB | sha512: 3934B830D7E5A82DF954565C0EF912E56FC198618BDF4819CA4F5F4B9268BC9869CFC80C8E5D724D5E080346C4B94DC1CE6BDD009568C626C0969CCC68A3AD98
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: BF81A42C69C104D8052769575B3F3973 | sha1: DE8CAEF0C0E36AB3E85D7321AA8452C4A3AF47AF | sha256: 9A1A53C3A7DF0490BA67B14E2CE058F8DF6519C5E3DAC0FB4AA5C0E19C473C99 | sha512: 89ACCE72BE1AAE2C18854DDF7BACD435AEEABE0D28DE4B903EFAD339EEB65668115D15087E9D094B11C92A91778D987EFD4613F16FB573452DDE4461D742639C
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: FF57B0B5AA91491F079CF7CD4116FA73 | sha1: 868C180E9A2E6CD73F3A6FC72AB7682503715D56 | sha256: ABBBE7C6081E91E3C6898929D365BDA2E2519312E292141137E2796B79FF4214 | sha512: 09F3FAB6FA5E6A17602562DF75E15858B62676AEC3C63E9F536AF95673DF21E3C833845D8E757AA46FA0E2067D2BDEE0B51AEDBB5FC3D1C0BE53F2B390F792F2
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 92E257DAACF8F3AE9052280B5149F08C | sha1: A061F8DE40461BF4C44FF10948B0840467A0560F | sha256: 180B1C89B4AAD0D55CFD8460B84C5CCBBF58C1CF72CEC31CA7137C339DCAC27A | sha512: 15B507A85245AD466C3C4390860249A40B4A8412A5B8795C6AD2244707B9955FAB30AFFDA848CD686E3833917198B92E320BF7E6E5FEE9F8B5886C970B3028BF
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 5CE77CDF81BD2D9D2A20A7B66E011349 | sha1: 4396B2AD6C1E81AACF21B205087C0F551C611D6A | sha256: CDF81584EA150BE6A9B1F352F820173E3C79B5221695863DFEC17F215893AD9F | sha512: 98359FB18F2B266DF1455C623BE8B17529B651146C38B4AE2A048AE9BEAC445AC778648A559069A786116A882CEDEF8C700EB88148A70D60D973E2050A862C4A
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: FE76A628F190EEA9EF6043BA95A5DEEC | sha1: 178BEB16E9CEFE709FBA40233C7392A3E0E411C9 | sha256: AE93C93360298A4FA82E58919AAC2C13FB47EA82A9C749E1220DEC4E973C99A9 | sha512: 7B47F2412B6B9BCB99A7A3FF43FAD1647833A97C62560025015132AA4B67ABA2403680A7579CB667C46F90EDA295B8EAC04E4E95097E70E656541DC98F90D3C6
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 61E123ED7BE8ABBC63D2010F4DFF422C | sha1: 37F8003B0C46A0D2E548A7C9D81E0C32F989999A | sha256: 7DFB8DACCCDC52B4CA9D8B62BA0B0D8F7268609D2B4385B6555E8DEA5048F2D5 | sha512: 549C3465706A62D440ACB28EBEA94F2DD3C38CBF201731526A7D5FBA9F9D3E0D93FF84D4FC90828E72A1ABED30095A175A5A2C16844A95C18EDE92C8CE302097
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 111EA9E77F058C82899C835AD73D0445 | sha1: 7067A6DCC79EAFCFB002637B70B3F9AA27B97F66 | sha256: 9D2BD1373907BBB825F1C1FBE68149F485118400F9972D27BD61AB0B3635156E | sha512: EFE72847D2BA5738BE0417A461D2A8267EE367A99B48AEFC218E70C7BD05DA59DD3CDC7CD86459B7F5735B9A796F4C93EE2708A2E5ACF19939E1FB0744D300C8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 9D641F6CDEF45A3A8C17D1B5A0800671 | sha1: 1DEBA47F816D7247BFEDB29C37A67E0759B31654 | sha256: 0ACD566B766D087484446E2F494362A6E29902F22A37EE4C477D287C1B5B9AF2 | sha512: 1782CC922DF12CE775DE4AE3BF7C18BD052C4706A332086E006251ADCF39B713746470626CE7BF8A29947CFA33DA7589886CF7B14F347D34D85B15F5677BB5B1
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 4403A3C6F8E3CF88F60A886C1D9A3215 | sha1: 1496099007113A9FB11B32A225487403BDB5C5E7 | sha256: 78D37B7EA0EABE5DA91DE6105F964D3BC2745CDB5AD4FE4DFCA0C21BE4AF10E5 | sha512: 999A54C483CE95F899E3B79C542060F0BFA21B1CBAA0FB704822EE827C0BD642D757A84591D93784D032582E6D8821F116272435BD908F95DA775E3FDD32D531
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: D700358E2CC9376279BE0771E4DF9BF8 | sha1: 02A95B7E097309519F7D464350892F01F25F395D | sha256: 8913D4DAB0F5FDAE4DD5205ABAAD7B200625516EB58288FE7407F5DCD77967CF | sha512: 40146129AFEA1D94C95370CE2BFC8E5E9D8DC96D196777BCAE6DE0DC69FBE4A963A5AE1FF94BB9D3930C5B8D8447BF161CB91C8DAF4FCF1C2D952B4F2E244A02
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 68DF9A08E6D3B12BD1FD6BC98162E4B8 | sha1: 5FEB857943179ACCA39E2BC3F502F2D946F3332D | sha256: 8DB6A8D68E328042AAD5D7AE90DA03D239C38649FAF9F50A5A6D5C1F7C83E13E | sha512: 65F52F5A608C84170104D6578FAE266D5D298311A19A37C60A3AE1E79C07FE717F2697845F9BBEE213F194093643C879BA15FE41FE322526E5E690BE6F9F42EF
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: D4FF9BFEDB1A0ADCCBC3005F57925C76 | sha1: 7F9C12186E3E00F201C4F182A8992B191144F216 | sha256: 9A2412B6278970F7926F7D98B565A28689551BDE4467E98FDC07F538C24A7D2E | sha512: 49E9472ED3C1A350A1C501950E9A6B7E860A144C2EFD43E929F8B3D11475D79503A128FA8A476DA9711E8421E984F04FB8A08D18EF518497DAF14AD20E70A44A
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Common.resources.dll
md5: B93EE9C111665DAF336750EA87D7A894 | sha1: 975AD23597F61C9439A92517EC22F2F7C3D3747D | sha256: BBAF684419FB4168E61780ACC8B5B2AB1C5FE9A1797E18D9E9F4AF2A346D3F0A | sha512: 4AF28C5C4155E919EB734B34CC1B85AA1AE6A316BE74F53E6FE8421BF890941B18E5089D9A573D87B202C5CDAE92BFFC643AE7BC6EC968CA23AAE4E6E9E5764D
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 6462324662BCB5939213554EEC3A2148 | sha1: AA3CF178D3377A6314A69A1BDA4DC8797503F876 | sha256: 23FCB7FFC9EBED4A9EDD5EB4B38D1600D8F8EAACF4AB7FAC1CFEBA4C718B8C21 | sha512: 23A315398175B34A32C532198A240F4797FD56C582B59FEE02F9BA69A9CB1D0609E7462606F5A6B64BE653B1FE6574356C9E5FC97BFA4998E1529E3EB24779E7
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: C49424305850E336C7BBCD3B00B5B0C3 | sha1: B09DDEDCCBD18982D9474A7A01CCBA7CE0D464A5 | sha256: 67888D0B04739D291C2F484DE514B4F685648D39FFD1718216C39F0DDA131217 | sha512: 0B018394B47F5A33EF1DC3C4E46DA5D0FDB2BAEF556D5EFDF89F6BF3779C2569E2EB57087FC7C33B6B608BD5548C37652946EF3308971BA2B31972F5F1F23DF2
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 805C728F35208D9C301DBA1D0002D0E7 | sha1: E78E69A922C4196D60367038E5EF6A4EE540C834 | sha256: 1B2E7941A5918B12BBAD9FD4D77675EE2B315D5B3B782FD5AA8A1C076F53E5B5 | sha512: C6807D821111325D7607A0E976ABFE764AFB855DCEC283BD2636815CB387E4B801CEBBC4AED244B3120A8CB474F9B209FB47B19A93BF479172E1715B590A5F69
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: D05BFAA716C65ABE720CD5451B2B84E8 | sha1: B27383BFA2A00AAFCF175E8560E9AB2B16F41CEB | sha256: FCA877BB80AA9D6F4A972D6E0A725A0FF61E87C8E8447B2D73231B7952F61356 | sha512: 7E9674E84FA33B8AFE08685409B3C7DB5B82B64AEAFD6950CCFE08BCAF5B07A8655FDEBE345E60DBAC99FF6ECD59AE0E88E544FF9E928E13025D19129BC2F480
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: A203EB786641B87EDFEA93E60D8B09B5 | sha1: 69A9F9C0B01ADAB9A5D39B257B094AA348842E77 | sha256: EFE9A41E865B17823EF0925A613896A5E180553566902CC942174AB804D0BC90 | sha512: 3AE7C8021C122D8C7A6DC51560BE26A7801E9C1C14A726CDD50C1FF0F855E7CAA78DCE48130CC8E93709BF6121D025D8CCBC3A3C19523DABD30D2E52EF07DF76
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 7B2293D732AC5A8A72C62A77E01F0B17 | sha1: 2306C1BEB97449B1257E1AAE6256D67CFB9D34D2 | sha256: B386EBC5F49E4942BA6B1810EDA6139ACC7C19DCE697A03C60FD9332276B4754 | sha512: 1BEA3C59F551C834772C8779B568AB325EE160B3A6F24F18EBF84D5E888522B2B9DC98AE83AD0B302065C2A0981544E548924235B75F8CAD58AADD28C903B9BE
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 5DC6B7BE900FFEAA757822F0A3036C31 | sha1: 4FFA1738BDEDA50EE86BEC5FD8F38992B30B4124 | sha256: A2F77BF5F92551C47D7C1661BBBAB932F717090D7AA214FB56913F46E8732C8F | sha512: 710430B513A61A3FE762A526998992B7AAE072F3F0CA3F331CAA1B0EEC8D0C299EADA2C07BF37134B278E077EA4551337AC69E7DCCC93730DF257ECC04809EF8
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Client.resources.dll
md5: F9F714939807FB4DE8B4D491C98517E4 | sha1: E7543C01501FCE4878678332ED2744977FDCA7CB | sha256: 778EE78F157367F9509D069122F234B5B437F3D9E089DAFE64FC044D026EFCEF | sha512: EBCF953A1594DCCCCDB0FB1F300CBFEBE176A6F2EBD32A154339E4E5EF0328818BB57558173E4249C1C5AFC27743838EE2C3C1728D1B1958C9B9F930A37F1DF2
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Common.resources.dll
md5: 2904CBEE29D8DA17B6AF18E6B4A6AB2D | sha1: 99728F598E1693939A1AAD5BF3A130F5AB4E9833 | sha256: 84ED30B7150DCB065770E080DAEC5BF928E617EC6B8A1CF9FD31E20588C39D8F | sha512: A763A0944FAF0B37D0D9F77EC9016BC3F054FE4264CDB4DC09C080B0D75809A733578E746BEC070B47F1F3D929FA1ED29D9A6E66DE9033B05F3E28325CEB2342
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: A09450E0913339FD71D2B46611AC6D01 | sha1: C07CB67D5EFFDFC232A5A267C20D504E8411FBA7 | sha256: 4145FF909FE355D3F793A2A853DD74A49AD0ED2B510A9518B8E59332EE462E9E | sha512: AC8508BAB59BA741AD63A020B5D8444F4BFF95473A70C65BD3EF92A2956BDFBA299D9288D2FC9503FF88E0B56C9438BEFD90DB698D8C74BFC5F0AD8757ED1758
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 2576D9F1364B091A15B161F05928B719 | sha1: 1EF9445B721957CFC309C062A5F711820620B8AE | sha256: 11DE5844ECA82BFCABAD94289CDA58006388B1685801F3A3EA82AC4596CE9EE7 | sha512: A3C9679D7ABD87D38F6D6FE1BA0FEFB65D7B54C266F32D60EA349692997E387A9A8264CB0F6DA5C7F74330AF3B865273B9D7571B2030C43E9BABC72DB01494FB
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 2784B8A9AD62D5AE861C35610ED81E33 | sha1: CA5E2A7F57C33C7C5DBD9C868407A341F5B94803 | sha256: 3AD5BBBD215DB183754A9F2B3C7E31323FB91E13430FC271FED5EAEEC92BD2D0 | sha512: 9C4D37FD917E5530CAE0EB2D253CC053EE0BC8696A178A8251C261A37456C1A5587CD636329708BAA1907B0F2D7DC65E2E6A0F61166C4E6F81FD348B8B1AAD3F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 21C05EACBE8F8BE7C267BC5B7A07D709 | sha1: 925A9D3B355746D36B13FC44A2FED8CA69ECC028 | sha256: 24E465A1621EE87951EEFF41EBF039023BA598CA273E0666C0B4CB0A4611D2E8 | sha512: EDB55C621118E3E4458AFF757C36991F39B62DBBF12A3D70ACAC731DCFB25D581DA6352B894330A221C2B95C25DFEAE77B8D02C053A6037575EDB83FE8903B20
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: BEB4CA2D56C738E3E7364267882C4AEB | sha1: 8F511A299DD7D0CB46C2FFA37690C83293F55131 | sha256: F41FC221259F3E644C043CBCB46D91FC555F7E413D3B89A8B744EE9C5CE2E562 | sha512: FFDDF35DFBC32326A1AEAAE452D295AEAE0AEE9B07F308C6268621BC33BEEFC85F4C45D21AD264E09F69389B421F10B4529A242F8410679208179AFE85E91435
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: B96A2F77079E68B0E9ECF821E183195A | sha1: 6B0CED950F0B76A10E201DE48F65EA0B596CAFB1 | sha256: 8A43620918C3821C012EC6916803A7B186816EF3C074C4CA1144935C5E8E22DD | sha512: D00C8E508B9DFD79B3663469DC1B84CE4C98097F373D1D443E4ED4125BB42919EE75FDAF7D9958432653B8A6B2C55FD1D627642EC14913CC62ADD18DF8A39D61
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 9132477B8C09FE4E12440C001036DC2D | sha1: F10B963F26D5B1EA431709216B13A9B04E8C60DF | sha256: E751E8EFFAD7C59FAC266931DBD1D9B5B885BE8BFBDE8ED3B3A01A659CA6DDFA | sha512: 5C26EC3BCCE4AAFE76D5F0F8EBF0E05A0B896030154FFB21E69E7D4B05BC0B7002F31785B2F4778EB1EED07005F033C7F5C0915FA36A1CA9D9B8FC4809A4E4CC
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 918C7F4775505B6687F34B684EBE02F0 | sha1: 05336AC658C0EEACB93294137F3676BDD1D7E0D9 | sha256: DB782C6259EA1A560026FB76F60D0DBA26C7DFF94D3DC49F26856408E8E145F9 | sha512: 75F3DF5AF125B4C12EE9E35509E0C0BFF898D9CEB409704D17D3CEBE8EB4F216C4E5B2064ED40C8E0E3FCEFAFFBDABD1B3F678DCEDA3D24B4B53570B9893011D
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 6BF38B4764667B146DCB75FF79555EB2 | sha1: B6BA4A6D084E3F24288B0339D66BC3E8D43A5B29 | sha256: 9B4A79466E33847B28F32B958963735793497C467C084BBA242DB5DE9AF9E6FE | sha512: F9B9EE20E7A80FD6D54E5A374D1038864536BF4F5EEE108C4E48D635C1992D6F36E5E372E9A88C04B424B747CD3E2D859E5C02592DB74914E8730308A4A70B3E
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: DA7A5F81F37D081DF4D3EE1224007536 | sha1: CD41310F8543892655CAEA05DA4E85248BB9D4ED | sha256: F75A5B5967DCFE90C0A743107EFCC811EC532F9A1BE7D8987E42F93AA22A22AF | sha512: D3E4C16C1CBC23892E99C3E25690E55D7ED8238BFFB97BF36F51FC20CF48AFEBEDC533558180371D58B23D2B4BEA576950C604506E8013851DBC65FC5E6462C4
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 319BFEE96214A48F2A397A59F7C5AF13 | sha1: 42F49663125D2535C29E70856148F422D9C117F6 | sha256: A72EC8DDA623BEC1983095EDE58BAC49A8492BC12D3C54F07E46E6238DC00CC3 | sha512: 14A6D39ED130EC2609DE407FFB34254C4EEB1165BEC12099A3838804668EF8F2A2FD344CB9CE69FF2C813B028563A3A2A0ADD3D70EB2138E2E36D0526B99D96C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 258CC57764B05293D41165BD7BD42849 | sha1: 1833C1F82A6FFCFFE5AEDD8F56DB7B1A3FB528C6 | sha256: 8D7F4952167EA84C180ABFA6AC3169C47531A821127BD2C6A2E3BB888E5057EA | sha512: E4901D6CA55BDAF6135E7D91EF18AD8F2155BE7158FD9C14ACEECDBE0E9FFE0C148FEDD62A8919B3A8365F1C3A520859018DEB9F9989865AD38D88B56AAB0221
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 27DB7AE7A05A26FB3863B8E6541AF8A0 | sha1: 4D315186571F88DE3834FBDCB9F9F9B23108369E | sha256: BC34BFE9F460F3878E4FBF6238A8C69E9943ED4B1A2DA81C4542070191695EFE | sha512: 2C16AC56EE60ECC4BB9E31FAFC4A60BECF17EB5CD70DB99AB70AE3E2333F29889EB8CD5296DB7765F80F713DB4CBFA2CF77A3244F427330AB652F822912247FC
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 59E0D3B06E91D293DB55F4AECB2D9E5E | sha1: 9665AC64F1342DF2FBD27B28EF2601DCB242F5AE | sha256: 881BFE9F279501C0EE3167F67CA0EA55046D2200F0921B107EA2E1BDB81B6FCF | sha512: E2AB9513F0155FF6D103D849961848C6E95A22BF3A349321D01AEB402F6FC5C2354120BD468765632F6724CF2EE7372C1674CBAAC48997AD0FA1873C08B57283
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 3C344FF2C3971DD4378C97A6E35BBBB1 | sha1: F0B81CBCA71ACC76D4A1196B7AE5D8CD410E97A1 | sha256: 3DE14CE66CDD17E27CF12DAB03139EDB181508A5E8B362D8D1D4B4CCB3C4AE61 | sha512: 6C073276013DB158C610D1CD7889092E99713E264395476625AEEB2DEE527C13676503945453B76B7B573360731391982AEDEE11377134E26E10329E09774F2C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: EB032A6C12272F7B2154B44D9913C427 | sha1: E73E2CAB4D3C9F7738536D53DA5BA73799C788FA | sha256: 7A1A436388906E4A247AE9C4D69C7F3990F0F5F4F30A0404698B28329BADCEDC | sha512: 98A21369D5DB93FAF29C39F3F7DCF39A74D16C39EDF65A9514F2C4135D26C1F3A16612173CA5766D5EDF085380D329DC632A28760FAE60483AECCAB1137197E2
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: A71D77C7D79A7D60C5BAE3230F5F9997 | sha1: D665E08B691CD4851348E1357985A6123D71E12B | sha256: 5E37AE7C31D657E3EEB99A4F1898E1027B58ECD87F0FF1F69E1192922A79013B | sha512: 1E6931F0027506CC38BEDC091E839DE475EF0D4457CACA320DF97BC13B70F7E68FE3A22A46C646E59BE84711DAE2B54ADE4E16D476A4A6A08D6C6F3F2AA716EE
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 761D97EDFAF1A223C1B85F7118A112F4 | sha1: 54C6AEAA90EEA6725D835D715A190C51D6003551 | sha256: F9AAB2C3132A68A0838E6828F205FE09849CC200C5595E8525FB3686CE63E3D9 | sha512: C6CD8F3AD2A3E668E35B807F0D0D677ACFE1A185C58AF68EE6B9786A5D4BC276B58DFF21260E5396A7F88657F29832E040EC99E372244399B58F469503DDD2A4
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 7DAB6A4CF29CBEAF50ED44510F52911E | sha1: 356793E97F6580CEF28A0F6AD0346A98527790B4 | sha256: E5A4B2683AED1A3FB0F0E3410C8146605BFFC1404E3BA4BDC15A13264A288E0B | sha512: 99B7B39C852E29231447F3FFB522D65D262264237CD3F71B10F491D90AEC014E7E97D4D8DF325A9F2E83381AB67E8932321E4D75DBA4044690E4AEF91549A680
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 9D027569116797DC91B079BE021588B8 | sha1: FB481F50B294DD98C8DC6C07E8F2C334F6B28D7C | sha256: 5363F624EAEA77015AD96A6532EF1FA5A8342FC61A6421B50AC71CA79720B16A | sha512: 338C04D034C1F99B0A3D5F951D10E1B993CB6566B2A6B341B83C2700100A82DB792861AE917489842CDC49B8438D8210B0FDE5D1D4A1BF8B3D0FB0253C8FBEAA
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: B6A57141D40E15C3F76AEFE04110C50D | sha1: 055724DFF372C765E5E9550CC3CC81FD0A3BEF44 | sha256: 388BCBEFE93B88A656CE473A913357621D7675306418524117C95777D69FE41A | sha512: F08A124DD62B2BBD05607BFCF63765ADDC50712BDAE807F09DA92311EB9F7C1C8964437037500011F2B2DAF27A41F6AB68E13B6200F9094C49A4B96FEB799CD3
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: EAFCEB63952B66BB3BE739EBADD5BB2E | sha1: 048847085AAB63BEF02188FBD528C031A3577A4E | sha256: 1DA069CAF45F6D88C6F80361D49F2B85EA0D1ADC0A45F33F534FB54B4C95E658 | sha512: DA50B270C49CF69EBBAA2A3F850D5B643705E2815F4FE623AEE4E1DA4EB552D59190B1D6C10F176920F93F65BAF2A3251E2B054979F7BCFD96815D3582760868
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 381ABDED196FB347E78C928A6092DD70 | sha1: 6E8B0464C1336CE930A88D1184C37FC57609F0FD | sha256: B6A99987FE864FFFF16CBC7D4979A0C4BB888EF11CBC024CC03B343DB7F30B35 | sha512: 62DA457E5D849E466A87C075D697C0665F19410B06BD3AAE940C5E649A8704985531D60B253411DB1404D4475D0CE6FD3073391AE8A2A7B012C5730D1DCA19C3
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 5A86AF26BBDE9605B257DF50FD8BE8C0 | sha1: 9E8779F5B9FAD1F6F6D60D4052932C18C7499E73 | sha256: C4BB1037897F42452483A9DE564AC49D3968786B492B56DF6070BA718339C730 | sha512: A76C3B7EB9C1781403D096D462930C60F8F2B57FEC8BCD84FD74E9F25D9997B1F7E87DAAAE8375A38D2A93C7A20339311606973E99A8B34348498A8B03628D62
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: EFE6BBB665BF5657A6A714EEE2B97AB7 | sha1: F10299C252469CCDF4C9411DE2EB19E3730D5B96 | sha256: F5B00062435F5E47F5AB1D9BC0099F342B94B2B6DD0FAC99C26E6A7799CA4469 | sha512: 428E5D804BF8BD6C7AFD6812338A65D29D2AC93D095843895FC1B33E8CF08FCE8A9C10DDB32C6B90BE9DA246BC6D03A672C3A2E019FB6FEBF9C4CEE86099A6CC
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Client.resources.dll
md5: 3DEAC8F1B6ACD280135DC43097EEB714 | sha1: C823532886FF4015448ECB4FE0B993633AA9BDDB | sha256: DFE205762B5FB24533AAF879EE0C46678BA3169C373027F9AAE4F1872DFC40FC | sha512: BCD28F66F6C1ABAA8ECB4F3F0960FA406126570DF01D31A8669164B231C0019C927B3ACA3D5307C29D860A1AE1534C7486F5B1195D396832E1A271BAD58B8FCE
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Common.resources.dll
md5: 17C5C2941B04A86D23A85B16172D2A8E | sha1: 531BFC2A140B796461A96E80513CD25737D76B00 | sha256: C85F84A37E4C8A07DE0193CB429EE8A31C647ED5B10074CE1987A87C259F62E1 | sha512: 38F12C16C0ADA0C46AB7D586140B7F1F7AEEDEC85EFC7873CF8272B343388B7A10682A4B67C33557C718AF94F3481BB1D2B998CE27C3E3F48CC9D8E9E058C43A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: D3645F37119902686850E0E173A1F698 | sha1: 9523233835B26E29D848F3418EE2560354DEFE81 | sha256: 88FCF6FC8AE5CB3C3B154EB1E42771C3F05C24055E2B5F1E7CF89B594B4B2BB0 | sha512: F401A86B4C21AC83A6206BC2828902499EAF0538A30590115345D6A47DBB1623F09A901883C87CC042D36A2AA6EA9A8E0914060FA7DEEAE1DACA282019978EA0
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 78F41396B0A3039A2BFBBC7F0497256B | sha1: 067B3B9872AFCDA34502445B1CF7560E19BAB8DE | sha256: 747EBE34434C0BFAABC3941D66784E3C20DCDE9BFDBBA39968B0F1D6E9172DFC | sha512: B599538311071013254141A854A419C06C183CD7AF3ED5118634C264709C4F8C2ECFD76D015221D28E3C239D4C50F03047D7C3042BA694A8FE0FB7B9E1C29FEA
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 6881AACECA00882B01E703FB2EE8B80B | sha1: D1B841981B1BE6E8D1BE613B559BD878222AA74C | sha256: 98F56F1DD1AF746934AFD629194D265B029097778D0E083EA38C483BC1B951C0 | sha512: C3F868CF26682D6D1E7E931F7A154FC09F71D38F8041FDA29E4DC3580B8E79DCC81CF1EB91A30E9560A74E00F1AFC0A6B748A24A92A86F4AC9B83A4C9FA4E719
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: AA65ACA8E2C3070F80D588AAB0EA8830 | sha1: 2D0FF1941D31F564C9F201F94B1F4CDC9D3C3956 | sha256: C940C9F5B9E4D784B4A71D949BD46750C6BF90ECF06113E9CE66D891F986AB65 | sha512: D3FCD8A23B0CCB63B71DF086B5A0426789A868940F59D685B4CE6BF8821B2C28E8AE87F097216F7166ED54FCCB2BED645216CE3EF47E829028954299257FEE02
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: E0F45493D56D70D67784A40A65B7D0D6 | sha1: BEF3872D87E37DA773B03C9FEC7331C4E18983BB | sha256: E314F33B38D7DA71B1141DB8416CC1329CF07A5474722AC2429036FB93A3EA5C | sha512: 611F1D79B6A5992676C080B83C1DAD8326A10CABC064B60936B353DF2005D66A93DE265C6F802A0791B8983EA58ED4FB0B90E369A6F4862F5B32127E7A6F7EF9
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: DEAEEA06F728283C48E6107328C29FE0 | sha1: 60778CC4A876BD3036A87D61E31C9771392BC28A | sha256: DF687DF6DC3639C6A18480F6E9B65013D7B8F9CD2F46275AAF1F77DCF1F0A82B | sha512: 1C3016A5C83680E6F9C78305651E5650166D7D895CB0087CDEEB630BEBAF75A982D8BA9BD72677AF2EE9204514966C0E5C33E2496CFF3FB3236C98E737BF4552
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: FFE26B914CA9A006662B85D5DCF62337 | sha1: 64126F96A581652AD0D0C02930475DF314EA2FC3 | sha256: 22F8213851F87D0695F0D3D2FFBBACD7C1B66407425C64BA1E801D748063DED9 | sha512: 733210AB406046BA4D015D2F8D689B633045B00895F3BEE873052A18E92108DFEABA8DD11E91AA2FC531AC083DCA3EA3A0382F6A83483D894E9A2AEFA4E35B39
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: A2CF7DD21FC796605DEC85983713F12C | sha1: 789CF692927B0F8FBA5C31F8EAB3FD1D6AC2D66D | sha256: 027B176695F235DA6CAD590DA0DEC2C6D56BB12918C4EBF866355D836AA660E0 | sha512: 09133B475F50DCF64DA95F3B97188EC6013137C01821267D995EFF0416EE08DFE68D44DC9E9A35A1433A26286BEF329666FA67258182E4C01B302CDEC1E8C262
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: E3039181095EFDF00A9C3440C026ACE8 | sha1: E55177E8B485D76901A4162F8583FD602EE9C774 | sha256: 4FE8D01D46E84A83C37D9DE606F2A4FE61985002E360353AB04B6019FF49E656 | sha512: B22B64B6491C590ED1C18DF8AD3DA97C65863188B4E6EE09B18480F051A4BD834DE538D1303CD27F2D69648A4F37C2CD8DE870D2808B982E9D76FD5B25705C73
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 66C441B6D94D55F3802ADC8F0581D6B6 | sha1: 91BC111ACA0B7F53312145F14370FEA7D018E8BC | sha256: 52005A96F8C6D3BB40744D21EA3F7DF6BFA8E07B22FE0A07488686910910CCE9 | sha512: BC463231AD4333DD02524431030BF618A6F8E3E651A28AA6F01759CEF83D226500CFC18670D7C5EE702A97BEB3B3C18F39E8921A142599AF5EA23749CC06FD62
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 2A9112266D98A5335CA2C0708ECE3526 | sha1: 68E1160D9B2AEDEBDCC6B82164C38E483B4BAB2F | sha256: B350CA2BB0858F77A76820468D9601A3D1AD00773E993B0CBA2BED651073CCB1 | sha512: 1DC412D70188C4BCD9279513B88330CC6E3EB8D8902A77EBCE8EE68D5F50FEDBF9DA6A03310BB2DD823F5BF2F4FB696EE9CDDFE31EADD2660A824B8F23BC8745
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: FFF127BF0B7FFAD81FF6BB2AFAE34C56 | sha1: B251903F455C6B6083D7998D7522AEB34208C3DB | sha256: 7023E7FDB4DAC46F2B5108B3468B70B2E331F77B04FEA671A2104617983B8E5B | sha512: CD2801475D447BAE34B0C7ADFF7C1CEE8371654A3B3CD5B8D5DAA1BDACB9EE8F4CA56248674373CDA1046DF2F0749B094DB3CCC428D0AD6D628499E709AE625A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 8DDA5E0BAF60B1EC134C50CB5A142AC6 | sha1: 31BCFB6E60EC9E93D5F8079A59709A295C0985A2 | sha256: 1D7BF91D8FAC0F89EA724BCDFB03BE5EC0663C43B52DB2A3A980C03A682EEB80 | sha512: 61E346053828D2E3A91FB11F87F7A9CF067BB6361D2BABDC809EABC5482AEA108C3DE44E1BBA53712DF9B3EE77438ACFEF1EFEF0611BEBC2898A5447FBFC933C
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 7BF42464C17A37FDDDB540549328E270 | sha1: 93DBCD2C86B68EEB0F7C75D24325CDA1D47F1D52 | sha256: 99D93EFE05FA79A92B408A3FEF85406993C251A68C2585FDA363C235A2FF2007 | sha512: 2757482D78FD84EEA1609C0216F44C1CD38F7A9B8F68E3D849B1D119A635C062B650A0D7CB168003DEFB3F21A494860BF3F5E05C23A963A5FAD899AC8E9279FD
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 61EDEB4A20B9DAE0FFC2EE3904AC6CDE | sha1: AD9AB46C6031857CC931EF4F626208F26B60F18C | sha256: 8F919AF58FA340812F89DC9595557CF012204B18362D81EBCD6FEA8CD3D8A0CB | sha512: A7F010C1F11A57D975A12DC29AF9BA45A6BF98F392B0561A50CB1431D0406D8C4927E7EDA13C0608D2EF761044A9246E320D48CB3C5F9354EFD4EA2F095C9457
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: EC428370BF3AE479925BBF68365B5249 | sha1: 0E479F5D10C35E859B5E18A060EF30FDACB22EAE | sha256: 8B889DB06DD5E57BC1A823B9EACCAD5743048E190D30F9EC7A82E2C2A3B80DC0 | sha512: AFCFCEFF068C5E80296C9BE1240ED9E07E0F79685B50A495F2A2B0A65FE917D24F674B0F2B5ECEF22657EDBF7B95728E92BA748F0C1E32EAE87A09C0A5E2F870
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 42AA81BD53E5B224FC0655D0AA7391B0 | sha1: C1D3117D82F92FEE7D7CC156EE4DD4C16854BC29 | sha256: 45D1FE72B46076A70EB8BFED62C92D20323BC9FEB79004FC6DA073D9698CF4DC | sha512: BF7571C97F5F1B4F7C205C75613DE9A6B2EF1D3CC7E0CC8BACF8F64DBE3CCF56E2B78724E5C473158BA723E6B7C92893AD6919F260DC41977B12159588BE3344
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: D86542B1877DC5AB10E31832E4F54BA5 | sha1: C8DE67316C23B745DF1636F8849D88B39EC697AD | sha256: 232DB8EB91B60A3171163190CFB6ABA04D0320528EA18F49ECE7B6981BCB9624 | sha512: C6886D25DE223175D420A009E3288DC276F9177820979B9AF06C2076C9CDBA5A81D5E6918A3F21C0177501E9159960429A52F212933F397198693CEF9A5C00E8
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 0625052EE6C46C2752AD5D342C14209A | sha1: DA51C07EB86D9DF0F032CE7D52AA78D6CCFF15B5 | sha256: 336BEA907954387385C588FE2901785F67B44463CC3B74D19E48A603418F0E8B | sha512: 3B538E5651265D27AEF68E61B5E16B20AA2867A2E2642459A5B2C240B59E3BB9B0B226C7B215E529629F6DECBFB683F3D28F9D24D45767CB0E474C66DAEC54D8
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 2E1AEA701403E27131D04A08C1327546 | sha1: 5A73F9AC496ED62A474DEE2C83E7544A5F6ACE25 | sha256: B135078B692115328A298AB27733B11C3FC09502A1088067A62EE03BE7609001 | sha512: F3F2DA66B714D1578D47EE35694DEB6C6DF828A59DE69E512F359B8FFC00AEA650ADA13C6795E9490E432A3C49D2308B1D45772ABC7F31FE1457D61B790C37EA
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 0B6FE1E6E22946B0015BECEABBF56FA2 | sha1: 465449DEB6FDDA73B80CAC42661863F67F0860EC | sha256: 1F781F172AFD15CF24059C32B95E4C2B7F1CDCFEC726CBDCEE71BA96496CA596 | sha512: 2386D1EE908296CAE7050D45BEAA8C4125809F35BC0EC5E5E8F3C70D044DA0D166762DE8908271DFF8C373B43EEA27CC9736DEE2B70879418A69E264C6E3EE8B
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 950D50C90A0B2AFFA9C7F4C8ED1F3641 | sha1: DA220B5B846E3C47A9540CC61EFA35F27D8E36A0 | sha256: 13F975F401EAD94952CFCCC09114B4F39B39B4E7E81204AD020015F5C1EA6FD8 | sha512: 0DF81CB376E4A9340474B3FB2F77B0136D51EDD2D77B7385D6114F9FF4D169732BBE5D53234B218E4B7EE3E14561CE09456BE5231529DA34CF4DE7E0D3D52A3D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: AF1512795E0E3D3DE0BAA40FD3901332 | sha1: A6E944986D3065E7E4EE2899611C8FC95073C235 | sha256: D732826FB0A58B1BB879DF18D0DCB58D3D4E84551DDECE6EA3D462ADE1D72591 | sha512: 46F08DCE42927611C0367A0BBFEC67E55586EA38B29166C1B513FD062FD3E3FD7025CA411C21A3755DD1AE92F8EE9A7D0D7CE70BECCEFB685653AA22BD53B791
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: 030A2DD2425239888A09637CA0EFF990 | sha1: 67686716119E050246DC6B350E609146D89392EB | sha256: 7BE5D46C7762C41F49FA707F9D61779D164276EA3E059E23DF25D2682BECD97F | sha512: F91E493654DE28CBD45187E182799AD52162DE4B1B53AFD7823ADC0C03EB17BD9F6C64C049195C4344C04A1D8C1234215030168234CEF091EF6CB7304E5B44C5
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: E55DC8E5E0F3A582D394D429FD329A2A | sha1: 7513DFA584A35C60ACB19C768AF59B7FBE2ADC37 | sha256: 63C8FB51B29B67A5B25C42CFF069F1A9BCA0CA692C7F22936693C113BB26618A | sha512: 2298FF70A5D47EC3DA9E7CB0DCBB1695B04C2E94A4D7615B005D84F67491C2C78DC1E1A97D74DC1CB86474FB9D66A6FC3E94CA35828AB9CC7A09517A69B458DE
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Client.resources.dll
md5: F391D2807C3D9B7F2C432E176D61EDE8 | sha1: 46577D7C641F5CF0276D3F11633E358CDFBE400D | sha256: 4467B60E7DC110DC8786EBCA261BFDC59ABEF5DF6AF0872F5A147FD183D272F8 | sha512: EA4BF28D103C5E26024B867D8542CDA91B52C851C435EE15B5E23BB49B4D28A24C8806F4650479A27EA597D1A18E28A5DB7EE455ADD926DACCB368EA65676707
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Common.resources.dll
md5: 59B800D56D448F1EFC763B70014E8C82 | sha1: B339D1D2E31D4ECB3BBE1D23ED30EDF114AF675E | sha256: E70D54428899149CB6F601672B078D58FA5494825B68603087FA616CE91BFA5F | sha512: C407E64DF50676DBC74E50F2C0156FE6C27D9C386BCBF499A0C047697E7840B91AE5ECD5C9CDC01943EE51DBB073D5337E095AF55F531B93322EC5C17FB5F5A6
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 8773F68F6289432CB86B0195BC4800B0 | sha1: 99AD4A51B850BBB206BA5E571DDB4EEBE3A949A4 | sha256: E8CA2DC121194CD09DB668DB4EEDBEE6ADBF346CF9DB2F2F0D7B74B60B0E3D32 | sha512: 313D0CB21AC6D5EEE3000DF9DE4973E828053105692EF1984DCDBEEDCC559136CFBAFA8794E2DE3817E60B0FD37BF333227DBEBA14BB163295D3F3CC713D285B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: F43B1E784AF76989FEE3DD44AE649C57 | sha1: C12BCB735C7C730E9CEC3D49D545381B37C92FC0 | sha256: 6EF10666D1DFA81ED7E7C201E07A36E6B5EB4B199CC210147BDE37C6729947D0 | sha512: 78B36F516211109B701B7990DCB8862B267E17CA1CFBD795E3A44F66D3208FE27125837049B10EE3FE7F0A53F9C521F19F1EA78154D526E48A6B38CAD199CE0B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: FD2019CEAC21B6C97529AD1861CD4B25 | sha1: 04F14DED68527F0415130D8E2D326C325A2358CF | sha256: 25919F5D1F1B4D8C6534B7C1AE7192E42098F22B9C3D8BFD6611F7FAD6FE2CE3 | sha512: 907C2D057F03AD8A42FD1D8C51E9727E687139D2B2B215023D97674128D334E99E7DC9969984BC62BBD2F505D83B2C665CDB334C5282856E9B588CF6F4A18005
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 665C591CCDB21268B1FBC4FE61DDE60A | sha1: 2A821E7DF13B356DB89681077D90081B77CDA223 | sha256: C0156A85CC8C64BD06D8DAC92E652FF29E38721911DB6B817D87EC885592C6DA | sha512: 85F635CFBE68FBAE864610D1A7E687DB1DD826864C7161071DBFED8ACC5A6BA41AFEED9094C6484488F8164DD31FA5EFB697A0F7349C34904AAE32FDE1459F3A
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 7D5DC61B1D7F01E0ECA75B5810542FED | sha1: F42752D19096831F105A17B98F045AB2F99E81BF | sha256: 2BBC3308E6251413B726FBF0957F732312D742FD00E56AC45556F458EB1EEB1A | sha512: 087D804124AF198E4ADC46198A4C4EB4737C4B2AECCD5BF9FDD0B9C72F8006841E53938C973255E4115837431032546547881C1601312341BFC0E6B20E8DB7EC
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: DE36CCCEBF209B7D5D1C2E3BC76ED822 | sha1: 0B5A672C389AA5FC8394E08290AAC1D21CF03726 | sha256: 257AAE3EF781A393C8C9606BB92318AC2772A184F63EBDA605CDB430D92F3595 | sha512: AD535DEB17761AE4B787CBEA322A13232794B62AA3064AE243C757BD0E35A17E8608399295F0891D1A23AB203D1ECBCBB6C5466A519CC95C83D44DE326F2F41E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 722E63AC0CE7E9770F6A18EB3A259C73 | sha1: D5975336B24F885C8D449572F15E0390BA54D203 | sha256: 5064A011E1CE491EE8E5436D26D49D4E5558B9831E4DB5648C6F9A79B8C633B2 | sha512: 494DA287FC294F5510F1A40BEA37D833023DCDF680824A357C55E36643703331D6E27416E065446C9E30F4E0786EFCA6D6DA082E8C2A0E574E0550DAED83FFB5
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 7D5307E9C3DC3B7E868CDCFEB552AB9D | sha1: 297CEB08D641E563614575613F808ECB074B2FC7 | sha256: 4EC31FE9D3A9C799786B7AA3DFFDC6C50810B5166569CA11B2D14FAE7689DEC7 | sha512: 5EE38EB5C457E7499F2D6E482F1FC0F0767D6E01AD83C90D58587214E4B2E2AC250DD96AFCE0F556656AD5EA84504DB5454EEA8FD8D0194B09D522FF1336FF8B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 0FD1211F1E96E20B907443E0D1C48DE8 | sha1: D736C55A6CE48B01B0F261AE3C9FA88B641FAC71 | sha256: DBEDA81DD01E6A474904848228AA15C6FCC99F17D81DD581C0D38912C6E94AE4 | sha512: 38AF39CDE5B08C62C48BD4E35B1643617BF3D8A2EE4754CE29B3EB946FCB4FE5ADD17009187BA500ACAE4706A7B30A71CA9A6E893CA87FC0E72D20CCED2AB2D8
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: BF84C0CDA0D732EF7EA7420A6CBB30A2 | sha1: 178660BA23B146790DD5571E513145BECDF03683 | sha256: 83C2C46C4CEF6AF1F92AD1B4C2A65A8E20363F7361104722D35D36AF73FA0933 | sha512: 12672879A173819EFF128495309A4BEDE05593947436836D0D3A336DCCE94A3C4456A9F5809474171DE23C3D80C93D8DAF37025D5C21EE295D14EF41B6A288EB
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: BEC03D0F07CC0A2E90C0DBBAAA13E3D6 | sha1: 870258DCFD307235F92E9EF005EE629ADD3FFB56 | sha256: 94C966E0D7D737021405687273C8785A897570BEEEC1762F556A07B56592220B | sha512: DCDBFD9E77A6BC63885A6A06589BBC6508B0183E479FF6E1AB1A06449733BC3B12504AC353FCBD30FB2231B4B8E4928FE2EE0BE18ABE45CBB69D4EE0A6E120AE
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: E765F50542A5C3D391202855B443F91C | sha1: 18829624B210AD6251D5C80B7082C10AD7CB9FAD | sha256: 0B991811D98CE0E0D4F21B386BE73DA90427627BE319E9ECCD69F71C981EC195 | sha512: 300841DED69B7D26E407D23AE4240671F70BA1E31AB12B4F48BD699CB287C70026C38A997FE675A9F3AA1A5C93A9408276B4CB4F4748D4CD87753337C13D31CB
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 768826F6BA5244D1D542AA55942C620A | sha1: BBD25AE70C0B1E690B41A60EE550EBEFB465C94B | sha256: 886CDC5810A6C9B7B24728B4D2F7BA753D01EBBFB85B0C5D892BF87ACF397809 | sha512: F3DBFBB6929BB3FA628FD26ED38DFA5633E19447E6BB753B620AD2E32749356F1AF4AFE83526EDD0D8CB9C326F69F29ACEF031FDC7C1A869F5CAFB1F05427E3A
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: C44274B4C82D5D1FB78DD6FDEA588398 | sha1: 3FEE5B4931684EEA1AE524ECCC69F79B59BA3DFA | sha256: CAA0D26D3B813E980B937E69C6128700D9823A6CA0341892F4C529347E08AAFE | sha512: 4D827F95ACA3C75C739A4B0D61C34EE8E6420F30549372F906291C21034249113892661CF876072CF5C020C846E52296B7476963A4936CE40C003F74C872FFC2
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 8C9850B5E84077684D33419CA46720E9 | sha1: 024C2325CB4027F9417E9599C891A0555711F6E7 | sha256: 3832FA189870B5C2F0B27588E0C5484FFA2C2836A8AE18BB47837D02B99AA2EE | sha512: 39D58840D380635837867D3B5249DB2618A1D4C5F07D6653BC417180640A32B1626097C4AD9BA8A8BBE1D0E9DE05ABC6EC396506BD10F6457DB2F5207F28D265
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 03BA83D452A7015132BD196E79B209AF | sha1: 16FE0E65BC8DDAF2DE9611EB78CC82A43EB839E5 | sha256: 28B8200E075CACFF8A2F48D076E447C06427402952AC2BE0EE7CCB894EB04EED | sha512: AF5DB421894318388098ADB057095BD7B4727384A589DCD11F25D6E6370CCBB5EB58EE1784987F9318769AE4EC548F26B3873BE5E26217A6734CDCE1AE6A0E20
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 9ADC2FB96F28A235A9C04EC03EFF098B | sha1: 9C313AF8E5E87AD60E0895EBF3E8AB935016BA7A | sha256: 4A0983BB7C11107644BE090E0CDD06DD6324147796A86AE2BA1A06435861B275 | sha512: 6CCA3452A80E6E35A232454968E9ABD370F3DA35358D88168D9127DBF3940C36953DD09886AE81C808F66BA6C8835137CBEF7E8517E58FA31C5E679732D82266
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 761277F8065101DCB701EE745C84C1F7 | sha1: BECEB541B0B8B401AC5F6E72E9B3DD5756493667 | sha256: 78D0EFE1178C56950944F75C120EB3629B4D9EF8F361F2E08EA407DB18BE6AA2 | sha512: 2EA32A4844092D2B75FA8EC22CB1CB8B165CE2EF893C2A7582154D54E0F20FD1BDA1A21629EF00AA380B0DEE87CF10898E0E05E1934C77BC8277FD92174D8CB1
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 4F0E576CF249979FD6D9ED8EAC749460 | sha1: FCC9DB073DCE9437379E44396EF850B3E1265D4C | sha256: A5D3379A4BB82F28BE31C5D2116B3048BCA3E2BB586D5B6F7960DC6A640EF68A | sha512: CE0F0F4DFD9458DF9106E9F553D073B91E879963BCE9DBBE69711ED116DCE46227F083B0A348C1566D8EF16E8766DC4928255C9397D58C01720501B93073C415
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 7F895376E8912B48A92D5A267B0D11B8 | sha1: 2A4801B6D6F8BDB652C75F699D2570C6B6184242 | sha256: 21175D2979110A7A018FF206F7B457B8EA2FDAA10D2F10ECA0DFF3607101CC64 | sha512: 7BC9C5D978C46C9A9F826F1F4CEA044FAF614117B42A19C1611C57A84EB8CA13E634637CBDB546E09207EB31FBEF659EACA1110EFC368AAA57BAF7C4F8663A90
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 6235C423C1D197578CD523B748227942 | sha1: 6206F0DC92726F94A6C82C1DA544FA767B58C88E | sha256: 479AA64A84C8D6F89CDC9D169D62715493877ED3F2C664541E1AA2C7EC25F87D | sha512: 6E78F13C3F4A23229E58A02A3BCA2B09A80CBA670B8A7F5BCB0B259E4070770C23C23C39D551066E39460B6AB1A69FA9D9D21CF17060B0A029722AF1D04E8921
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 899CD2E4969BA4E8359190D0C6EC48DA | sha1: 7D7431FD4A9E48B1319C23ABE7E343353AFC15A8 | sha256: 60E0ED0CFE8E5FFD2AECA50164EA38FFFA89E80EAB11375A545CB048EDBE7EFD | sha512: 99C3AB0476697E711643CEF862A395B3099D13B9820961EEE65D597C89AAB5DCF9B72CD36AC66CF98369D81D036C5655E6119913CAA3CA13B16D6C0A0961AF4D
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: B5EB95B092CBB656A434FCF5A2680580 | sha1: 624964FB4CD7ABFC2554BE87E2543992BDC60CDF | sha256: 75BB2D67D4CC08CC450A9D30F70EC991F5764FDE70E46D059291A76BD77E1B82 | sha512: 2A6EE37C4731B03D7E71081CB802557585B8A4C43C4BBBDD3258DF44D628449E9A6178480400A52173697B60125AD0DC063560B5394C5DE518D9B17D7A64FD18
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 063D1697591FDB6ADAADB58E924FCD12 | sha1: B73F9AB7290D7A98DDAE46909AAEA68185DFE931 | sha256: 6E99F40E7890D2F4230A1CBC773B7F90174D0854FC2668D4E2D92BCCFEBADA1E | sha512: 2B263CEF43042909CF7886A8D5879D153270A646C30B0CFC2CBBF0932C64498E3B64DB14B491F3079F7DB4FE654963DEFD533986212C8AED2EE1C996A9FA1918
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: A5965B7CECFAE13FF3AAF45C3CD1FC4F | sha1: 041DBD37B6AEE129F1A7EBFC32431FEF8B6CAB63 | sha256: 23B62E319021C5B82EFEE9870959A91B3F011604A0085EC1052666F9584F6F60 | sha512: 25162BBF4867A90FCE420CE03CF204D77676BD55F5E89C0DA5BA83E0CA16C49E7928E498E825D508B3F99FB2139F7BEEB38D40A9DD530F66E81D30371029A69E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Client.resources.dll
md5: 85CF837C11401ADBC99C0B6451A7D259 | sha1: 304DC63C0187025C580F28227FF05843B5C3F7B9 | sha256: AF8C4AC29A165D1953BD13AA01E76CA723D0ED5D652EA2B85CB8AE05EEF514C7 | sha512: 347FF8F581CCCFA6D136C73F5843DBB398ADE10713EBD1440B011E660AD57AF29839D42E111A073F33E65A87158C8D2529D650BAE86EDD58434383AC724C9AF6
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Common.resources.dll
md5: A4E0CE09BAC2C142B8A4EDF4A536DAA1 | sha1: CA10768C4B6B3EAB3CD0086616334882E570EA83 | sha256: 931B8FB0485C9C0ADF2F8FB3DBDD919E3FEF10EF3158CFCDC3AED91B4807A625 | sha512: 74D984335688AD800517C10D5FF9E08EB6D563801F2F8B5C537FDD2919DE64D3535D12065D1F8AD97F4ED17BF83935EB49ECADDD752C1996BC2E1145C9BF799C
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 2503AC3E6FE5A08AAA29243668A533CF | sha1: F71100706728A8B1649471748E4C241294529F41 | sha256: EDA0DEFDE9FF647B89B791D34665D62FD8674A9AD49F0E2AAF248A3B7273E878 | sha512: EA45DCDE90E10032EB666F19BCF171ACAFE4A7E9D5A5060CCC78D18D5A551C085BB87E917B43FE31C9C80F90B0D4821E64EB48871E98AFAE33C1EB6659AA7057
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: F5DC934668116930D69F59FA9ADBEE55 | sha1: EB450EF48C70E7B9ECF9A15C6B8E32DF991F33F8 | sha256: A5F9C1A3E8840592D9A26832552626F5A28683721CE4C45B2516812237891921 | sha512: 50CEC5044732DB23E6E816B082F0EDFB3D45338AA0C8747A41FB5048421CEBE7D6425B1BFF166E5896030779CF436D5EDF9FC1E570F53BDE7874E8CA242717A6
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 17EEA9BCEC297BF3B1512826200E408D | sha1: 13858BDA9545072812D17296157E019F126A144B | sha256: D872029150BF7D695CABF16AF6CFFA55C66483B824252E2313C3EED70ED83B63 | sha512: 0775904DCFA40239EA5B4E1566C58406E7950172C1602E22E5D2FE4BE879F3E590E6D3449046FD574D9056A71F88B89EB9EAD79860179A2CDFABA771541F179E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: ED086A2BF9D0ECE2D3846EE72C03D7E6 | sha1: 0362D62DB1BEE38F5022CCEA0ABE72860DC9884C | sha256: 06EE203F3494210C616626C5C0945DAB3AFC504E86C391FC967ABFC858BE3215 | sha512: DAADB0EFAA8458F78062E643595A7D0CA0097F96D05CBC5995AABB07030B3859F891F22F3ACFA92244CD8CFE0FA387902FDD0B52697CD3FF51635F6E5A11C16B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: ACDDA782BA751F4A3021A8E60F38BF1D | sha1: BE48C5ED5FC5955513B9F6CF76295CB700CD94ED | sha256: D35A73C8F0EF543384236B4257FE29E7A6672D8C3EE3687C884598528334D2EA | sha512: 1E76B515DB8E9912983C3575C0C6FB9F14AF15124205FB77831BED6A8406DCCC757FD174BE41E8315D1E73E3E5238739DC8EB84C7BD81B3E1DACB59771F30A67
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 6F833F67DA8719BAA331AD44F2F08B5A | sha1: C6B9F5A1D9A08AD5065BEB9B9074DE7D1E7A2AC9 | sha256: 3A6B6CB7F7E9D76FA69746312D6519CAB8F23864936759327C3CEC2523332A5D | sha512: DA61183A2E2693CBADFFD8EFB2606326340C915E52047476F63C4AA8EE98B863D99685804B95C181C75C13C6BC31B195B7956E72A034FE64F6F27CC2B41AE4E2
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 7108A17ECCD4486580DBFDAB978F26EA | sha1: 8227C1B5CCA88588C2A6F39DCEE30F657365C1DB | sha256: 4F137D7E8E85A34ACBB3901E3096F45A4E8411458D56C3BA3D93D7306C62E091 | sha512: A18CE9D62E62007176E948749681AF84F9CDCCB6DF36548C1145A4B583CF0E0DF06DC774387CD889663669A699911FE5E09BB43E6796ACECD4EE9E47ABCD5464
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 2B5546863E63F044480C4A291EFA9265 | sha1: 731485602D0FE0986A46279AA6B2A0B9B0CDB75B | sha256: B48C01E7D85582A305EEEEA2C1E11BD3C8F7C18EBF55E09F6EB1C72B050C5C59 | sha512: DBBBD5F19D10E08A0BA61CAEE4E94B6EA35D4A90109FB8C309499F492F4773D053D818FCCD2EB29B6A47392593D307EAF792FB18271CD8C1026B4D72D8BE8FF0
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 36EA08C38DB3994AB53D85E08A1015F0 | sha1: EE23A86881FF21558BDDCF121E91D64A6DCC9B2D | sha256: ECDC63755016C97B29714F8EE480044FDE07F4951FAF0553F6037B15ED1DB05C | sha512: 7B2EABEACE882E7E55D16D8DD5749BD9913179E4C704EC69D13042FE9F69FE8BC1ABE7833085E1F0A93045EF40B0EFAB64439F91960675184D125E8B85C7408D
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7B6F34889EBCB980FE43447C7AA961D2 | sha1: CF0B9EB4545BEFA9F9A792B69572D80A876BE618 | sha256: B25A5E6FC684713ACCE02605145E2C75E09830C1F564BF445E661B3AD7D2C2C4 | sha512: E4FE29E9AE359BD6D3FFFF7A00C73BE3DFD082EB9C740BC964D358DEDCA82E98CEC7F60AB8AD01C48156F1F24ADE41E7F4FFB8418A53CDE74513F6F20731C258
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: C51ABF68B21B3917E88AAFAE120509B4 | sha1: 28C5EEC283DFAAAD7A33681AABAC077399525AAA | sha256: 6FC8E7BAD1F58A19B0E007EAE387F9A4063E87D944B947561A3DD428806280D7 | sha512: F8AF5E0B436F8D11613D1D74038F740F7985057C5494EABE9D7730DC70F6D23119AF1FE7463C4C7E04286D1728731918139A961761592E4EF7CA8A0446E7C8B5
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 586002DD897136EC6C40E0C57E899E90 | sha1: CB83229583DDBBB3608A5C7276F973B0142ADAE3 | sha256: A49A3D2D479482D2B0B7C09FDFCF27EB9C963F509A1C1478A64BD08E4B14AB20 | sha512: 917511A3D2F7F3D95CCD1BCA022D2F2929939F93A5B4F2A1B789EA0FB16CDBB20F4A25468A0C554A7BC96A725E6218B25B15FCF96731ED00AEACB7EC7E1080AB
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 484C51130F65C86579D044629AF6FBD3 | sha1: A6860F65AA4DE99B9B87D2C861A9BB23BCAC7AFC | sha256: 69AEF9FA58DC6ACB014BD774F7BF6529F4673C4ADA6AAF5898C8EDCCCAA19C54 | sha512: 9EE024C1C94B8F3E41FFE5F93F892AAF5B72AF405CDA3DA49E308E49CD740A43166BB0B2668DC6A145A9FD0910CE57EABFCBFCFDEA25148A23F303FE61A82EC3
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: C596F7D2A1F9A827ABD227831BA45A05 | sha1: 2C618D865C2BAD12FDEEAB17AB088C531EDD61BF | sha256: D1795F52C8F525723F5CE7B5651EE33B6A43C2DB530B66E903F8DE4A56CFADED | sha512: F888847ED4A042CA97412B743BEF9913B338CB9F3EDBEE04661291BFB25D54B8B6EDD840A3B4E8783AF2A0858C89FF2950F3F788407DD834C0C2CDE331A2982F
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 1C523C665B33C2C2277FA33345E74CC5 | sha1: 9ED4A46FBB434325D9B28C9490ABE28CC181F8C8 | sha256: E3B66F91A2C10881410FAB114AD36DA52BE6F37C4FC08BE0815D7F245C8727FE | sha512: 579E1C4C946615B42854D2AFB1E12818D7A4B834B47F0E38B10976E5339F14F31B2AFADCDC02B39DA2AC92876F3E437A39265815ED9C4F32F5C51049B7E03E73
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: B594A30E5537AD00F0F191C4D2701C6E | sha1: EF802D07A5E045FB594011C7B1324F74EBC11780 | sha256: DF338BEBA48CB74167A77BC49C1EDEA3F1E386A0B28450D0521058CAE9866C8D | sha512: A6143C9C3942F4C09D5F8E422649AB854A4356580E397A8F2698FC6F9641A5D764E2D647D124E189085657A49298CCF7713E2C652C9BEA59745E2D340919269C
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 66F14F3B902B7C5EAA54EC44D29FD5C8 | sha1: DB9D7D32FF8FFAC8712FA8004A22C01B9A4214F7 | sha256: A19D2F663E8FFBFEBE225A1029E1296D8232CBD345E5F732722BC450E08E1FAE | sha512: 495E57BB1680C01D5CF01AC0F89C338DC4FBA76BCCAF7D7CD6BBC95381F1C1065A5CBC41AEC97D450A52515F58D94695BF0B4E53CD2701E9CA75E149ED91586A
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 8E6D125F35BF83385FB7CEE8F0AB227B | sha1: 42948D02182A3A1F0957D015F31435E38497BEA0 | sha256: 1F1C9AB143ADECF2D19724FA2225A26B1103E1F1F3F1DA25019A845AFD596241 | sha512: 6ADFF6AB531ED6B799C0F30A88FFAA92267BBC6C435D5F793CAB64CD7C42BA9D009C7D772C62126729778B55EA66E0AF349C3D75D99ACAA31A4D8AC61F1BB211
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: B5632130378ED07A3E718EC02A5EADA2 | sha1: 2BBA6C960ED60C538DDC95F1BF566C709E6BEE52 | sha256: C64DCF4C208CACAADFFFC5BC61076B214F4D72E4EED6DDF12A5517464B2A47A1 | sha512: F9BCB61E02EC5B65F7B6DBD29265DE3E0D40DE2C956B9B19FC6A078B3E13D06A5F131EFA48AEFB6808D648C4D988630766A3F878165259FF57AC3AA2AD19F715
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 750287668D98925BD3447476933770FF | sha1: 7AEC261A250FE7E719B02752E1F02D1B5566A28A | sha256: D48E0FFEE5FEE65732E537F882358DF93A68695D67BF56209FD395361FDB0FCA | sha512: 88459E629955B64A7AB374E237A7A1AD121957251C6A5D7D9FEF4532B15D236F9BDDD070C6B52304E0B15AA29C4CF7FCB1884A3B3455E52291A2DB17BA361A43
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 41259FEA6A52796E16B9932BC7480215 | sha1: D52A89F25B2EEC8516C1E4ACECD1C2A57222A77F | sha256: 869F5F4106B33C6F1E659BF09704E69D13E91C7AB1BC7709573C869C2E22F4D9 | sha512: 18EE86D23BBC232FB40172978DD09FE9CEE7AEC91DAC2D9957B993776F6C94CC3D9B3943BCF48B5BD1E893E82795F336772AA610BBE4AF75E6B74A879AD9F8CA
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: BFB680EDFF9C6D19765263DC677844F6 | sha1: F5B7E85233157C8612BC50141BA5F9DD748B92CE | sha256: 8E90C25237F3EC2F8087B8028942C61E139EF97BFDDB62D5B7A9C82050D19D7D | sha512: DF55A4E0C1B71D8728FC33B40A1A215754811B690C11EE24C2F1E9586A687E8D1F9EA81582636C453B705581ECC5D8F142CD82F20FF7AEC9E3B90C37EFF94626
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 51DE8D9EAA5E5A3BE20489979D176BC6 | sha1: 09B9A4701A99A2CB9AEB70B634EB71962529347B | sha256: C6F38FEB8F401B7F21068A8158ED5720B02F504CD65456F512005C38EA9F6227 | sha512: 06FB1EE08D5114A477E86CA5C5E8E903492EF85760BDDCCB77A89597A4EB2F91D734E122E1CC65B56EEF4E074F1C680765E332C56883D9D713390BAD4E8AEDBE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 341528E311B30977FB4B0F661C44BCAF | sha1: 6FC1E6263260C1A45B00C3D068375C47AD908A3D | sha256: 284D7E5EB1B105829A1252B97F25D6A2A86229C96789508CF401315B20918BDC | sha512: BEFB21480CEC0F191C041FD8125B289F61EED34F25A6C40CADCAB77989EA96310081AFCA0FE3E9E1CCA59BE98F38A8E8C856EDE630A0D14273DB7CC65AFAD887
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: E59EE2E7AEAE4A16AB057DF47C286C0C | sha1: E711C925476BDE263245C98892E4635A0F3C1CEB | sha256: CB4E6C1A0F85F675FF8A308C9E4CA9687AB1E04FC35576DF28D2B2B0D8202F30 | sha512: 358F16FC0F22A8B05465FC5AA8B9F12C919CE9660E85E7B86150128010564C9D25D74181052A50BA5305CC52B5E355A6B60EECC2E91340A801B64B530631EAF9
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Client.resources.dll
md5: 2F4A1DF8537699345AAE9F1C393790EA | sha1: 44F9EE71F61144A4D15B2CE85757A7172C3ED907 | sha256: 48CAEFA5DA5CB5D004E4E3EA466FE8F29D4DA3E9966151AFAF46C9516087221C | sha512: A740E5374FA3F0E9F484C7C743207C7D3EEC9447FF6B1CC2075E5D38EA1BFFC651F6ED67B6DBE5D337C3B6DE29470C53DBD15A9919C647FB622FD74753884285
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Common.resources.dll
md5: F4901123B479900C7AF42B176EF7DCA2 | sha1: E43398E032F47F0C5901CD8B7D267BE74C83E07A | sha256: 380A4F00BA5DA2D6542B7DBE1C7AC2C76A5D2F5FD10A9EC8A69E780FCE34DC43 | sha512: F7EC3B9FEEDD42AB49F7787BC4B5A03A53643455B75168CEDE32A530D1A3A0123BDEB1E72B00084835F1366DA7277CFB63BC37349D02D81316989989AA2A0DB5
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: E9B7C1E56CEE16242FDD1D0BE3057B52 | sha1: 89B205D6EFD526E03F45E1BC670A1C7151FDC7EB | sha256: D5C991CAEA9E41515EE44A7C182275A7C8C972D725E6F471B600008DEE107B50 | sha512: DCC2D9E91AB709267C01BE4BA93B6FE6052182379E43F34409C2D06EE485262D645B6FAF7487CC34EAFE1FF6B4F114317EE32C424ADE1E910206C3DCBA4F17F3
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: FBCD1CD7592495260B83AAAAC8255F82 | sha1: BF07049F319CB647525E3BCB2708C6A212FEA3EA | sha256: 8490EB16A22EDC4DCC359DCC659D3A6DB63B0A6450FE8C89CFEF165ADE86A232 | sha512: CF263533D2FDB3C087D2F2A149E6439B378D24E4598A2D493582462B138B51F267067C00E84DD875B3FA9B2E8252B23A64D95A2AA7D86EDA41779D3499954DD4
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 2E9666F3E122A29572700EBEF5DFA209 | sha1: DAC741AB02736EA1621FC932F28DB0E40450CAE6 | sha256: C2111293606E62F111244DC45155FF8987BEB950FDF792DDF0B687F618EBCAC3 | sha512: 562E43A4C0BCC7E8E835C08099D41FC2B0346826E45CC5966F12B841B36E40C85DA01BD383D0017521718550C2EC94EC4F026A27306B6BA9D4CB3500C67F6C6C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 4B5FAAB34329D6617025336DBDD5F475 | sha1: EE9CF207DBA133DA060E4392C24442CE32521EA9 | sha256: B542637C59E6E73FA80E0103EE9B237C86823317D30D1AD68864D2AA4BFC8BB7 | sha512: D63C5C1813D26A20A12B33626C612D86C43B38278D77DAA9437EF6E65C58A0E5C5D26FDA3B2207D7559DDD8CCE1D033B9C79903153FB159A858EE3EA4F6BCB5C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 4ADAB4ED55618E4604234114493FA533 | sha1: BA959B564FC690CF35A618386E1C0CBAF2726BA4 | sha256: 7A6E32C2F0417353B7B042C8CF356908C8ACAEB9882EBA8E4767FD32C03EA786 | sha512: 904E1467B7625976D2053E32EA1CDCAB5EA2A0691E74BF5125F550E4EDF9239149241A93E0553AEAEE1DE26D228828097AEAAA2CD554E356CDAA3564F9969ACE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 86D0276E09378B15F1521CC44DD3B20A | sha1: C38E3D0EBCCE04B6CE4F47BABF7D74C4F9DD07F0 | sha256: 35097EE33933CCDAC5E1369486E0686CE145E4BF1FFDECB19AA3F98D5EFEA27B | sha512: 3A68361D9C2A37F35532492C68972AFB76B9A319494AB689582C0FD34F590AC88723DA0924101E18882A9656A135B1F5A2763E0850F1435AE2312FAEFA43FED1
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: D1BCED8C591494AF46299A0423A4084B | sha1: 8FEC4E5D97229768671565DF944254F8FD530A56 | sha256: 79802154F27D9ECB30832D1F895B4F08F0FF3D3CFCDC7670F1138871B9353B92 | sha512: FD7A47C648279A6EA4E29E5975B4F77F397B4DEC211D6E4F9AF60141DA8B9B797FE7FD2F657E952AA52A8E60753A1AD2E96CE70618FFC8C68B551F509F19CC79
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: B35194A267F7DA5FEBAD6E36B376CBD4 | sha1: 9C42FE81BE9FAF22BD057565A79D6430233C8766 | sha256: 6C835DC4DA7A821AB532FF6841724FFDE657C8F5EBBC10EF4D050C30FC6F4236 | sha512: 23E754CC9C64211F0C6CFC6629B1441749F113CB6AA31D349E1C26F6C67F75D6984AA1A7EEA0972E9EC87830C2B3B4EC987172861D3E28B50113BDD69EED3C34
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: B85348E5A42FD4C5C8BD386F5C9EEB20 | sha1: 59F7EEEA65FD9AA3474257C16F99C4192F57AF01 | sha256: 6D5257E8AAFAC894E154EB5B1CADCCB8F2B7C55454D87C60875C0E506CF4A8CC | sha512: 505FEF7C04B9DED295EDD7F790B14B7EF9C7437718160B54E9A68F7B1DEB6AE309430E0B5DC7ECE31BF0E678F8B2093D59FFBB1BA5DA24D074EBA925B451E895
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: E48BBCA48B84E48F614B2BFF0BF7F34A | sha1: B2CC8B23ADF0FCE8139DEF4B063794757F2104BB | sha256: 2540D043B9B4EE3D533D1152C4063AC7B37F0397D420ECC11CDC7FC0F31A0590 | sha512: DBE6E60320991CD3795DC6CD87BCDDC7C674A47E0147FAF763BB1F905C31268E8799683E97CA02788F8AA0890CD98E984B47DE3158C33EFC73B387B74AAAF8FA
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: BE53CB6599EF0EAFE816FEED37384AFD | sha1: 0502CE8D3FE0C2CA6FAF324352D35FD55D89A750 | sha256: 65CE66C4A4CC303230BDB87A2411DB8A77C124E50FA74A824BC6C6417802CD41 | sha512: F6D927E2035FB88FAF9092A0EE2F4501AF40211DD24896B59EE953462B1D90033FFF405790005491151D58F39DD251235EC5E3194AE9D42B5BCBDDD8EF4F992F
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: A5F93F1A853DAF8E83B86C9164035468 | sha1: 8AFBF4B886C0F092A4F53249382D21F8049FC089 | sha256: 5268A62E365C7EDBCD8DA655EEBEB52046AF613B32C4727BF5B7BB748B5AE107 | sha512: 5B9B6E18E7E1F410C888CADDADA8174304E4B1E10411A59CEAC09F918A2822A80CB679CC42F60B346E9795F09D7DA08B78FD13E16386870181D2590AC3A4EE67
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 090E133410D5B12247E7AEA93C679886 | sha1: 3DC164EBBA000C71001907837D79B877CDD0B429 | sha256: 4E1BF1FC454502D7BA0ADB1B5AECCBB776622FC6EE94508FA5E2CE1E31DDBE02 | sha512: 39420063ED7595132BB6DB554BED0DD4418BCA214E02941D2D21EBEAFDD30E3886D13DDD0909712A10EFAC2A366F91A9B852EF4349921651F622D2AC56797E85
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 02BB37C98A42938ACF75D6EBDE8899D3 | sha1: 92CD1BF17DBCCCDA9D7FED9D703B626C61AF1306 | sha256: 07A7C64978464096966A68CC4253C4AB8E0A9A81222B75727C3A70362B3EE517 | sha512: A108C37EBA30792FA835477F93D7045DBA119A50EDC9DB8158C2B03444740DEE23AF0EFBA43A11BDDEB8CC1E27975F1C0BB2792ADECC4F6B6212A45C98445846
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 8CC7AEBDB7D5D6F57232A73812979A4B | sha1: ACEAD2AF676A0B7E92111999916CFF2DFDCF6C86 | sha256: 0955B84AFE8CD3D4FB724E3FDF8FAE17E15367F5EF67C188B5E634EB449D9D61 | sha512: 9623A3CD1AC5939AB93350D0926F418EA2CE67727DB39CE3A0C351FBE39FCF888DDFA962FDDC12A8F86066155888C985F14FE2B4396108DDFE0D5D394D963580
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 53D39FC2B99EB1ED095B54A92541C129 | sha1: CE4ADB94056A25A712DBCC1E26FE21AD9EE42A76 | sha256: 4011FC27D8EF0575DC30BEFA891EC3973805A7D14940B6DE969C28883C255E52 | sha512: 3D48DB64861FB76034EC017B3D5D1642E7FB4E943EE5DB8F01762EB99D2AF9E8BB4A1319A2368DD20B8729FA9CA367A061905CB6F0A5C9A7D2B0D547E1D177B3
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: B6CA751FEFCEBEE340124AAB6538302C | sha1: 039EB778FC1128B26F5DCD3C843F29F0662F226D | sha256: 0CDF6F4F6D4C24EE3D62EC36C337CC6247F657D213D57069A6145C8335602852 | sha512: 6448EC9A72884A7E713326C662DFAEF03552759645CB8A989D3F23A81A69020C0C9FAD66F90B36E4B660749EA709282D306424823C49A69482E29F8DDFA4023B
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 756917C2EEB0B8A22E9E081AAAC2146A | sha1: F906BC4B8947E124A2A7B1AFC647E1E450BEFD52 | sha256: 7BB319AE3FA2007E0F6D7BCA185F8430AAC7DDCE83E7952CA3B313A570391F39 | sha512: 3C2E23B4E478DBD96BC9B9FDCCACA9E9AA7AD4C1E8F81C706645F3730FEDD871896A7F8B8BF1CE46549A4735CC5A750265F021CC558D5D863BAD510585126566
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: F02DD648A1A40E33322BE7E195FACCBD | sha1: 722983B7EA16710D5898E4A71BC6C650705CC93C | sha256: E7C6A3F43F9C7B81BCF994CB714C731BE5DB5CED0D13AC50918DD1FFF5F861BE | sha512: 9441B02CCF4155894157B2CFB9DEDDCD8B655DFCCF4B667AB47E95725ABFE4A42410A8B7C8CCC3546DDF1935CA6E9497BF139B4ABF23C0E51334805F05D44926
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 7C8AFCD07BFCF4609B7FDB5AA9EB3239 | sha1: D725A3CBC812E21E24E135D0615B9B7FC536248C | sha256: 410D995C66CA9AEBE5D992FA80BC8EC06ACA53B9089A95D7213448B31B8E2FA1 | sha512: 20463D27C3AB8B66B10A17A159855939A2ACDF1A96ABB0301D28E24FB996D320B5F293D24D9BC4853EDB4658B502AAB122E28777B8670FF06B7F8310AE737067
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A5BE935BC1C8700C1A0DB27EA4F9DC00 | sha1: B80B0E3D4A08CF7B4554CF690E9F59170EAFDB6F | sha256: 0D7CFDEE7FF2F2CD3ED9A99BD377D6FE6AC71E114F9992A59FACBA1AC68586D0 | sha512: 0164C7D1BB056CC69DD142DF4A77546A37258BCD8CC8454392A6E2DF1053CC82A37F77A53F71E54E6F25C7667E61A6F026DD9D85079A9A41A7972B48CE6612F2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: ABDE9DB10A6B3B8A89D40F798ADA9401 | sha1: 83CE687E500CC15B9AB028D9357E97ED41D3B3C6 | sha256: D0C1710520938EB9574947A66A045C49E4EF64D05219C176B1366627B90D9B24 | sha512: F09F6C971E3B42EF09C017D75EB36745D2C670FC3C8DDF2759E82161FF680590BD9858D9E473691EF4801E5BD21747CCDEAE0C7EF9E8EEBF275019AD1D9A859F
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: E0F809D4E6A5FD454411450AD2B759CE | sha1: C58DC967E0CBFEB4D8B4A28C062EC314A8BC0CB8 | sha256: 95E077386F0A7F4E716D63DDED3F3EFD36CFA20031E6B8C2F9B81B21598337A6 | sha512: DD643EBC940AE0A1439D0868EF3DA0ABF481A78511667F9805E27CF848D5F81AAAD4EF8568B5C89295CE704AEFC5A1A3294F9E3719D528702B14C98E8DB854EB
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 1BFDF53B988170352B64DBFC843F5B51 | sha1: 3CB8FFFCE110D73983AF9EF0C4DD0EF7C8D57B4C | sha256: 26C893FEF6DC7773D2A3085E3DDE8D6E1F22731340C2C85ED9E0364E3FE91EE0 | sha512: 4571D7AC90B14A1901EC73F1572F5C9C57E2A296CDE3DF94C891FA1154C9519C86AE03E7ED483AFA21D68595C85D682C943AAD188883D29D0B7915A7CB0E1FEB
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll
md5: DBDFEA04636968D36BBFB1276CE4112E | sha1: E58AB3DB6FB9222A29262FB9E6AE6144EDED126D | sha256: FF06690E77DC01C09FA33EFB1250B41B1403C374F8609D147B27DFD247A2BE99 | sha512: 0D81783FA978AE9C258135A7ACE3BF62DA23A3BD7CEE7780B8A6802F111BCE0B088B95D543DC9DFE0FA7062DF9446E7208C287589E7A994C82A4A7FA6A77E296
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: FFFFA98FC77DDF9A06C4DE3454429C11 | sha1: B905C05CFECF4A9092AFF6AD6E05B318837DEBAB | sha256: 336E42EE04152A5CEFF060336DDFB6B0854A1BC7C73C0E0B74593630DEB99E8A | sha512: 53F3ED15A6C8956D6EE311B184FDC9B33177D85EFF4FFECE674CFC1DF7145993C11E838B9178BBAE3F3DC297331688B14C8A5D230ED602D9786F59BFE906AB63
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build.Common.dll
md5: 22869B9E135DA42A5047188C306EBA80 | sha1: D34DCD6EFCC0C72D5336BB02918AD687C87A82BB | sha256: 375960773BCA7086C5FEECF8A829956E7C383BEBFF912C154167553311B303EC | sha512: FE25F73C58B01451056EBD9CE98F60A0AFB562695C9C98627D0ACC4AD8C273192E66B204B8F3A940AD1A5D7073FC56A23B8CEA2133240225F16D2E52BF6E8B0B
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: CE9E13059F3FB54C3A1A349B29F6A77A | sha1: C10158CDE69AF69391639901AF6E2C72170F947C | sha256: 0ACA86F3255ADC39B3CBC7B87C574BC7C265B16DABED1205D165EEB4217B5A48 | sha512: 024B5B2817ACC8DC3F4BE0DBB2CD3283C638081B7E5333CB9465104C83F4E8DD3F3C5B8EF028D968933CBC8BDE13A67FE26CD6C757C6110FF7B38BA9F9509619
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Client.dll
md5: 792ACB81E040F667B4B176FA537CE23A | sha1: 6B137F33D46BE6F9126E85A2C3E3624403719E54 | sha256: A7641771F18A5CB802B712157B6AD5C1A8628AA138730DB6BA151DCEA0B5B09B | sha512: 21BA445CF36C5EF8D077004A87479EEB5937DD9BAA55FFB800DE08ABFCB68EA3FE3D58794C062924E94C2CD98FA79BBF2A2C27ABDB4B12E0DAA73511DD3EB718
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Common.dll
md5: 69C0F6EB130E1892364E2E910C175239 | sha1: BC49386F9D5DFF7374E27ECF35A03F7C34699413 | sha256: 1E42BE2BB221AFB4662EF92C57F6BD3DC62B7F81B0C163AD0F399732D43F8A4B | sha512: 870C417E28C548811D5628898184E36FD1827D4DBF9DEF0BD752642D942E6548605336264BE753CD9DCB9F0A80B36D62D5DB6C0AC0ADB65968A44C5FDC66D0EA
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 15001CC85819F934C4DFF892D4B48BD8 | sha1: 198DBDA12667C2F051D84749CDBDD595F6C61475 | sha256: 5B99765B20D76182D3155DB8205EA6CA8D1C6CB72CE8B59E89419C98470F1BAF | sha512: C4B2600BF35A7CA04AD06341105491A9CDAC0A565EF99BB30B3D64D0923F0CC439F85BD6978BD0B2AEE92CB0EB89AFAC5DFA71B7B45E246B26A13F6740F55713
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 737BB526729CC4C621C80FA71EA74D96 | sha1: 21ACE532DEF0DC2B95CD65E11940C598B599EF5E | sha256: 6AFCFAF072BEE4051A60C70491D0A5A41BC25202602349DCEF307B6CD865EFA2 | sha512: 6EEB890E1E2AC2EAB5C29AF961DE40BF9C0CE16E9331DDA6BAD279ED757A3C84AA35922636CB76AD8A4C24372D7FF03F6F6937FFAC3C5FBE96EFD6E515B16D1D
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DeleteTeamProject.dll
md5: DE5D0BE20D39536A9A83BF7CAE86D793 | sha1: D09584F59F6F84DDB62824223E90A21950E7CF8B | sha256: BB4F28A4DD217982D93D47B25055164871657BDEBE5552936794C55EBA769959 | sha512: DB4B88D6FFED7813B3124BC6C34A85FBFCCF3F3780106CA6451D421CFCC74FDDFC1F843A4BA6DD9B5747E00AF8453AA069047851E220FA99B193371A69DE7D63
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Diff.dll
md5: A56BC0CDF4B881625B655F183EDB1C97 | sha1: 57379EE6261C70E87466DBBD4BBF58F2067D2F37 | sha256: 56DF7612184C2036B6FC43BE82D1C028EA483E705C2B997E5BF756BC39A92372 | sha512: 6C9C4029C129FC23DADD351D1794A45672FCBD4834C462A80C848B4A0B2ACF4AA4B7D97EC264072FDF80685F7C7D1EFDF69A24DB20ACC9D753D07492FDE579B1
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Discussion.Client.dll
md5: AE1234AAF76C9B47AA1D84BB2A6645C5 | sha1: 3EDAC4C03F5192FB7A9D9884CA2ECC12BA5DAA3C | sha256: 01DB500EAEE88B8D7C3B5B785435C200E5BBB02666D856A2D7A3D4716814D7C0 | sha512: 13D10FFB7405D53D1D4EBB4454CE21B2CB9C9A3B3BF5D75D5E2F5DF0D4E19A6D58796447388600D97F477A4E6FC4535724058D3BE7B8741810D228830F33C7BB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: C36976F8B5ABBFC36EECF81DEF50C3F9 | sha1: 4F08BAAA9109C9D5ADAEAF937BF1CED836AAB0B5 | sha256: 23BA4FE37A2D5F53A00B7B784837428863B4F31CF6CB74806EA31CD3F10CC9A1 | sha512: 7E6A2B68D8057BB2C19185568A0159DC3E5D5281B2A869EB6472801F6F5D41C3173CA6D2C88F37DDCA942FBB28B6701B48CC5D862C438CB1828259E7984FF415
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Git.Client.dll
md5: C5F5DC8EDCA34FB3434F3B00039D5E20 | sha1: 6E7012766A9D7F1BC7A0C0C048EC8E7E612ED526 | sha256: 6614C5112BA6B803E41F0295886CE0B48339870807DF5846A8C720E7645A8285 | sha512: 1DE3BAADD60C08026D91CAB3D66EFB8A7A4E09975B4D3E957FE74B4B789E3FFA4152F1D9E000B3CB7F4F422706005EE24DB8FCB36D88584B0284EF9E1E51A063
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Client.dll
md5: F0912E502E64B9CB24F9D14484595760 | sha1: 612AF6F0FD057FD36B7C286BEED1728D413058B0 | sha256: A0FA9FBFA7580726FDFE381CCA8ECE885E4EB7B4FAB150BFF59AA0EF0CAA624D | sha512: 6645664586011BFAA16BC0FE094C4F7E884D51E2D2C784CB4FC2F2A0480151C5A2E9747421278E78892BE6CE130B6A4467490D6DB5AA59AE32BB1637AC0686AB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Common.dll
md5: 00625832B31188D607A19D9CF1DDFAC3 | sha1: 95D8C1AFADFC98A2B268AF8BC2B5109E052F3BCA | sha256: C8DF73A5363B8E0255D7DE5EC556FDFCC4D5863032B6301D4C7E35AF22B844B4 | sha512: EF9B199BAA37E20FC6AA9048D29087A775D1E4739E7F7D8D6C67441E87699FE95E87C70D837C0136599839CFF21705F42EB4E461BA9A30B261033A72A2DCC561
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.TestIntegration.Client.dll
md5: 6A0577A5B79E39BAF1102F5B8413A65C | sha1: 0DC6A226D5A5A984D4ADFC6CC0FAD26A2DFE133F | sha256: BA97D51654106C2A0916D6CA2AC9024B01F201ABD8A6F1F708631E9D46E4F9AF | sha512: 0F2087F98F907609FD00AB408BEE7AA82E4BF2C33394FDB3FD363BC8E668C25F063EB3D39BF8F8D8891B4A2AED445AE7DBA273D60EA75E6C2010C660F08A9E7B
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.dll
md5: 15BFA90B965C00003F65FCCEA2A7568B | sha1: 90B82302A5F2B7EDE22832B2A1387714E993731D | sha256: 02BA71C1EB615184B5CC4F5CA95A56B98B231DBC35BBD4CC14D95A8A14341ACD | sha512: 52158747033A725C5133A158AF32C7A1BE37E5EA387DE7288B0495DC1B5B0CBC9D8EA99F3F7C5E00659FB6F3BAA3AC849715191190DC24A6CE12F1F9B087EE53
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Pipelines.WebApi.dll
md5: A82E05F7E2D90040DC41589AE61FFFC6 | sha1: 283FD85F4845DC0AA69FDC41A6539B8A8F7CB120 | sha256: AC6FC243CC06351E0381F7BBFEB56ADE4603B2AFE37EC34B98F6390710C936E8 | sha512: AF74C38DF536B3C45F79ECAB455CA019181E487C2CF4478DD588EF3D69AF4FE55ADFEA7A14F37D64900B68FFABF7CF2D14FEA4F760F716EB398A90654DD4138A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: F75979952AA1D74A2041A14185F327F4 | sha1: DD209DC810A371529BD6BB969FDD1E5A8042596C | sha256: 21F4A563FE7560A2DE4717A782B8BF571CF14D155E73930CAFC84008CA8B72B2 | sha512: 94DCF3CC29BB94DE58F30E69E88F4F8BA2ADDE5C5C56B2825F1746D5325E4A930B623557F5A35BB7FF6932204A466763DE19F62998E822E2E133360EE6C9B92B
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll
md5: 12D0D76BDBD06D8ECADD6D8AD51E0BC3 | sha1: 18177CAFF27EDE23D80EEDD439C8E5C8EA9C2AEC | sha256: F1C327221DD0EB915B8F1BDC7B1C5FB639F3BC5CCDBEF52891E19219AED8CF2A | sha512: D992418BF60C792FBB88A1F85A91FA5354DD51D0B81DB170CFD6BE4AC063FCC05AB29D1CBF8580F1E958E6B95E268224FBEB6A4B33F8BCA15B298020E8A408F5
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll
md5: 63DA9C1F1B3097835ED41253843CC610 | sha1: 185EA25C09F4A8968455E2274BA10D707FB28897 | sha256: 00B1969DC24A4FB84AE770CA7F7AC61FD61B1F3F7D9839C477716AE35C718AE5 | sha512: 3831E86A5FA30A98BB04DA0148CA5FD5DB428D9B88C313B200438C56BBCBE25CC0550464A99B4D890B3E733CE394CE59CF75BD6067B571F89056981D993E38E0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: D8DB6D16E33CCCE2670D95C6D2A29E49 | sha1: A04450D5D14330707725A912116DB3FF1788F2BD | sha256: 2B63FE67FC7E40B198938CC62852C240C8F4BB794C77E1E7C8AA936CCF3E982A | sha512: 1590173E7E7B54E935D89371FAB02DAF7D5ABF9B2498257FF2C5AD95F009AAD3AB1E131EA28101942644FE6FA67E148B1EAA7BF90241EC19FCE22264AC15D2B2
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll
md5: 0B1D21F44A52A039152E1C4C70C09EA3 | sha1: 897B2ED4D11F6B047C68A757A54F8B9FEA85B7E4 | sha256: FC412415A251A4021D0582D8C3ACF01A686A165FE1B2737175DDF8D6F1DBF2CB | sha512: 78150EC1C6FC368269E030C48234906A2D37830431427D3A9E49D4A9D92C3A2723033759D0686BFB90348563D1483E40B18FA0117C622A67143A0D0C95773A8F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll
md5: 84BEDA32824A5F5FC41FABBFBFD1AF5F | sha1: A86A9930E50297880EED9803898470DFD6D445EB | sha256: 1EB34C85DA9422B871976EC97908D7608D0B3C0301A8637D43F6F95244AB9B6F | sha512: C0F8E691890C3A1BFBC7A7C0B62B791130E92C20156EF9AA5106C84F4CC67D6690E97938F3289EA0337B8ED2F181F6C64B4933904910CEEE4635213CF7DCEA17
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll
md5: 8EB00374596142592B40A977D86EBE34 | sha1: CCBE3CB1D9DA1A65DBA3AB4B28EAE62A4066CDAD | sha256: A681BDA445D81D2AC53DD456576F7F82773557D907647C5BEE071F9396BA3EAF | sha512: E73F21E28CFAD9925AA9E9DAE5041D06DE99C1E8D104DBFE401F3934E9641FF215E98095E9791F938196775B35F441CFDD2E3C2DAB90E374C8541426531FE616
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll
md5: 9F3D9773FA0CC9903E4FC7FC08FD1656 | sha1: D008021B3C8BD52ED4018AD2C3AEAAEF51D0C535 | sha256: B66933E066E0C44B88A27775A4D078C8A5F5A1DF13C8EF3667705D04C12593FF | sha512: DBBF14B76D84A47223873E63543CA9E1F1BE2EF88227F72621D9355F84B344ED01A2001FAE87F4314979F917DD6B80BC570A17E1FFEE3503DA44A39698C65519
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 5AF10672C15BA75F96EDFE40EF932A50 | sha1: 3E2208DAE110E1C1A91B0010F494B59B5301BC45 | sha256: 0D6332EF25D66318D028C3A0916898CED8B4D35826EDBEA9BE44D6D59F249F49 | sha512: C483A30B7C1FEE44C5D2D1878E89356A62030F9E31B6FDEB60408F50B7B233A3844BAD1F08264CD6205B94416661FEC5ADF65847BF80F0F3B59177FEF518E254
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll
md5: 49ADF17115D676CE4E404525A6AC22ED | sha1: B224BBC6D50E82F90130A2DF7E9EE4D8A062FD9D | sha256: 6CFE0AE6F2FBA2B1EBFA4BE154490793826235FD33EAE20D3351310CF214D143 | sha512: 1C82CFCEB5B558A63BD0E6FFC6237397CABF72B961D38126E535C3CB44427BF30F4DEFFF5A088E7D2FE4B3B1A77A2FD5310D24E69543E4217DA072E1F81CE86E
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll
md5: 44E2A0B9E3A225F53200B2698D4A4F11 | sha1: 71D7E3097CF3376A57DE2EE0E2499D00D85424BF | sha256: 64387127BBC257B874E9027326E7ADF785CC0EC739250D97A584D20A73F83585 | sha512: FEB267F96EA9DF4D8DCE74976249495828716AB22B0C6A5DDE34869B78A38C19E98461D10113E89D2989CB46B6924CE6C83ACCAB71F3999C71D1D7E2980E54F8
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll
md5: 3034A39AE412DAB98E66BD38E73CA353 | sha1: 6D23F0263E6D31562363006D4D6BE8DBE4AED174 | sha256: 32429945357B1FD235E3C5AD6D536CCAEBB18ACA05B091A5745304866430C15E | sha512: 26E15F1495EC3A556E3613385C359A91B8474050EF4F699DF75D98DDA77894CBE81E0D41F9578714453743EAAE8FAEDEFADEC8B87FBFC8A0C1E768ACD03646A9
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 11D106FC33C32D19031547E7893112BF | sha1: 725EAD879986FC592A178A622CE0ABB5233546A7 | sha256: 815E61854660A22E0CE5EC0603DA40996947D2666D4A38A4A7BF85E7E21E7E66 | sha512: 99985BD376FF1C4B6301E322566C26BD12C517ADEB1BE95DF1BFEABE9C6BBA4CED10053C800CA021AFE12D1618C1F2FB158FEBCBB33A8AC22D80FF1A69788344
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 668CECCF88E5569CF9ED287D220BEDD2 | sha1: 7F7DC2B34DC5AC1A3946FE7F9C0C20F7B35503E9 | sha256: E79F794907C3C35E687CB800559F11CA2F0E700F02BE65F5133954B940D75969 | sha512: C7EB9F02BBF79342FF97C4552C731A9C5F613F0CC8D8BD89080B5C5BC5EBDC9EBA0B19C7BAC2464B1963511AFE94823DDAD439FDACEE6F8D3186BC64F0806D3C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll
md5: 7FD69A37B3F2606E89996C4F733D77AB | sha1: 07E54672CD43353881D13A40178F4B503C1F5F48 | sha256: 1CAEB91BD98ECAFA2669E3EC8DB373D3DD193E78A80C4440A76C4583514A4762 | sha512: 586EB1EAE0DEA4F3FB1FDCF33A8A5D60BA2F2861A1E246D0A7ACD9EC1BFEC4684B4ED61F40FF03FCEC3C22932B0AAEE26BB954F61EA2FACC421A47767A337C63
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll
md5: D0CEB9DE9F2E84818F53872B35DF80CA | sha1: B5D3D9A940EE3BECD7AA55760A4E80E5AEB75204 | sha256: 88AD2299AA32991E90477B7DECBECEBEB53A2DD30C7F603049E1A5709E0F2C83 | sha512: 3C1B31D004C3530FD155D10CA35A74B79CF1D2DCEBDAEA60E976FDB33F9DF95306B1F73A74F991741AFB5AE32D7B3E0F5A4A7A2546862F2F63D1A692FAD80F4F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll
md5: E91B2A135A1617BB94A7519B28A63164 | sha1: EEBF1D351380DD7EC13FFCB1D7939770B5BBE789 | sha256: 858A664FC335C9FD7363B2D4F11E9F700F92928E398C0B917D55B121B422C771 | sha512: FE23546CAA381C5DFD913697F527082CB088A84A5DE05437BCFF5DEEF31608B55E0DD2B352106A3940C8DCB33281D48F749128F2C83182CA484CE8F40CD2EF6F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll
md5: BA19DE0F43BADC4B2C581536229F2E79 | sha1: 63DD806B57EE8CB7195603DC4C39D73753AA1684 | sha256: 779975D8584BC8F7B2A9F5E211F041C83376765EC0B98C07286C036366D35B05 | sha512: 1318CE7A62E845D65CCADF4D6F7C8E5D5516895945C1FE45FFB4EE5F452E7DB2A032F7FCB0013B772692F8CB26293C3241DA11BF89504A90D674E90007271E75
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: BDABBDD929373F5B6992C2259837F266 | sha1: 777AC095E34D4D065756A050E47F2F78484C8FD8 | sha256: 95392DA4CF065975AB69D8686C2C2860E351EDF7D54E720772A313735B9F24FB | sha512: 9195857EEF28D9B1BFD1268106F220FD20BC01F2B3F1F28A949305F9249F2B96C2D570DEEF8927EC61EBAFDF6ED53B45636FED3F3DD1AD5FFFA52817AACE1B6E
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll
md5: 9A01F0AA7ADF46EC2B236ABDA2A59C9D | sha1: 22987115B1E3BF3811B4CDC4E913105698C840DD | sha256: B168966CD2174BE2661F55B6185C1F8A851C3246FD9F8478DD6E5770F49420B0 | sha512: F154D04E97AD7E66D8380CF64D28978DF1EE352910EF20C2583BEF706704E5A0A189A6D35872BDF3BCF4246E8AF4AA5BA7AB75D5695A82E3CC30E77C94D5858A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: 383D2B805A9D299D20D5F6F9A2E8D33D | sha1: C23B06940A7EA70DFE9E7FAF3418303352E5E791 | sha256: 59190999CC8C15116C09A0943005A49AC95637AA434DDA152EF3EEEAF9656231 | sha512: F62FF13770FEDCF317FC392563D6BAA2F400F157B783E791E6207A4318C622D66DC8F431AB337F48FD9F24D8CDA1F8696CFA920FF1B44AB1718F7D1FD5920FDD
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: EB5249C794EB5EFE54AAE79211800672 | sha1: 3D171E7DB0FAE4D20BEC3688A0E785B0B856D045 | sha256: CB860E701E313D98BFCCB63A957F961D7DA40B9D69C13346D9B3F3A45E8EAD70 | sha512: 13BD2AF56390A7FBBBB08A839893F391145BD1CF4CA6E342D156C73FFB25857E39E498F750967C3CA6E8ADAECCCFF82BF58AC6D3ADB5EF5331A19A9313E9CA6F
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll
md5: F80423FDA98E0DC03BFE74E01895CBAB | sha1: 822271362F8B1CF1E066ADAB1A70EA12036F1E53 | sha256: BD55FC5A06853E87499A0C845896F45E4D83BD0FE314C358984D685E3EA12411 | sha512: D411521C6304C4CB137441464AA18A339994BD430D44EDCA4DC67ACBE9376B23A1A25930E42AA809F5F56F8701DCCFCFCF8278A3FB7641ED77688B477E65E893
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll
md5: 33378A5E82C38669BCAAD680244EBC82 | sha1: F6DA4390E624A882A789454B1B0C93F92C80D640 | sha256: 858EED437040B43B79D9CA58A12621879AF28994FB1678EA26F4FA5B7A1CB9A3 | sha512: 705CA6DD254BB36626E12C216DB6171E7FB92F1AB03EA534A07A335EB2CFF2E44FD54806B845B36311509CC1E0CA2C5036D1B522CDB55D2E50EF045973242ED6
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Gallery.WebApi.dll
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: DDCBFDD88D52032D04A1936BA98E2F0E | sha1: 4274C12ED1DDBEC208FE048028A051310E718D62 | sha256: 84B8B95B17E21A490F32791468A1A177FB26499F6CB952EAF7BF416355963BAB | sha512: 36320301D9F82B6C7FC0C11E75614E932E73B9AFD64A19ECA9E0A67D92896852E428AE2655A638DA6CE09836FFABBC9DAF0F0885F3E4AE891A3BB0F6F8B04EC4
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: 7D30CE51BD92B14E2DFA92FA9E866B4B | sha1: 08642CB260AED8C1B3BF752474F84FA14FDAC026 | sha256: 65223DA8DCF8097456EBD01A269FDC289EBC18995B665DDA4D74FCA37B19BC0F | sha512: 82E575AE41E9ED20F675C148BD91D709DF0FD77AA953CE7B726D47A3C7246878D273D5E795E29A27DCF7BEF723A9738DBB4BF808D1295909106ED13696E2ADD6
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 5A2FE47148AFB0DEEFD10CAEFC849423 | sha1: 82FE7C71EF00EFFD44C7CF3CFAAA8BC0D5EC303E | sha256: 3AAA0918501CBA8F264790374F231BB06705CFEDBD93E0C9FE5812DC8F2D46BD | sha512: AB29AC1AA2BE331F767C2CC1318D5A8F7D7D2A16EFC2A3385D8314B568CA92F510BCC5EC208C473C9838E5A6DEC92CFA95DD05CB2C0BD826C422BCEAFDE48684
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: 008180DAD8EEC202C0B9EBF07368EAE9 | sha1: F903E79C14FC6B8564CB9B2A8F1BE3C7ABC0FF1E | sha256: 20647DEC3ACC20FA6FDDDA9129076FAB100A398B05FAF2CAC642A5C55E8DD4A8 | sha512: 17D78692BC99B3C2117AD627BE50C044E8185055EA40AA4C93B7EFADA85CD6A0966B64013D5B644443EF438D0236F0BDCDBF3BE7631A7149905FA200883A4B38
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: EDCF949F1391060961A9AAE9B7082D11 | sha1: E3B62091F269DCEDA7948F6A8A7A3BEFEBDE8E3C | sha256: 16957A3A32CF28FD171983086C8048ABD312B84C9EBC803953B3ED5321A3E1EC | sha512: 75351EDA514927669EC22339177259C4EABC77D66BB36CE8E6D21966C5F9952B9DA367B77FEEDE00A3F2443D13810B5843FCF97B35789C6BED21B712118D221A
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: FC88D251A1D049203D79C46A8BB838FA | sha1: DAD0BC901E986C0DBEFA65BCCC99C8CFCED0647F | sha256: 28F3CD1936A6B652473D4FFF3F0EBCAD88D4F618D3C4F02599E0C4756686BA98 | sha512: C4F8039909622D0F7325A6232BDC0CAF053D206AFEB45F3362712CB8991F7CDFD89EC350B51E0CCD87930C21DFDF324BCD9B91A00FDEA5D463EA4B78A099E129
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: E25B8F6643E8607590F45016776E01E3 | sha1: 486352826F09A23B45F4D985D387B5BAD5992B1F | sha256: C38189D3BAE078F8A8E9A18D21B7FBC0BE41072A6506C8F2060C0B68237F13ED | sha512: 888CA7DF0479249423989B0EBCA775D61A202832E9C1B5C14B18EC6495CC8FEA14DF7D81AADE47B45AF5FD1E0EB62DD456493A83A45C7EE7F8D571D2F08B59E9
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll
md5: AB94D074ABA95A80D41D5582DF59970A | sha1: E4037059B9B60F6C06A64FE1AD128D804190B590 | sha256: 83065A421281DAF27A47C21A99D9F8F0DB1EA1FAE632F75B302966CC9AAA3C58 | sha512: A0F155BBDAA42D81B82229533B203B3338D1B9F728F9DA92C8293B09C4269CFEB970DBDB3C0A64D69BD465D756982158F8C452F63B12781BA697AB3488F16DD9
tools\TfsCmdlets\Lib\Desktop\Microsoft.Win32.Registry.dll
md5: 59C48AACB1C413C108161AFE13FDBED9 | sha1: 31ACE4B26D8A069C84AAD6001E06C2A5483806F3 | sha256: E9A9D281C1A708AAAE366F82FD6A1742F65DA2918CC4FA5EAAAADA0BE24277D9 | sha512: 8252ABE64C67863D9E4C70E820F0C69C517B8678A4B4C13A436118BC276E5F21E84522B93566C0BC009EFFCB251ED67BDBC60E4907ABEA2F33B6BE3764E28D1D
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore32.dll
md5: C5F8CB66261D2EE29F6567773A00F567 | sha1: 40C084A3F8F41EC749B04DD63A8D890C2CE9DF0F | sha256: AA046A59B6FFF7B7E21E0F3EFB147766688BF126D1D9BC390632E52113D28FDB | sha512: 966A8E790CDDC3DA5EC7E16EC07AFF9914678D88F3E3BF6D85F3924B1A1207B17F74119BE1D111698241D1C9C6CD7AAEB509431E0DADF66971E6C49800B2CBC9
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore64.dll
md5: C2D11B57DB43E148A0D644974FFAAF12 | sha1: 9BAA278369C430A7C590C8574ECEE1A5DF83975F | sha256: ED513918A55A28A52081DF68F7B18441FCF80032FF5E41C4003BFB98A1231F00 | sha512: A15936C2282A111F6A8C2A90D05906A7B991DEC99068E73CD2727D047511777A450B697C31237B9BA2C9B93756DE380F63E53439CB2BEA7A95D2F20746BB7122
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: 8FBEF30DD81F6E0C5DD2535F9A81BEB8 | sha1: 45CE7F949A70BBBC2306576722A91AB988B5EFCF | sha256: 9E7B54E76AFEEDA8AC324FCC6630B794D969D4AB10AE97318BB9915CDFCA73DE | sha512: FB4F1393D6B9D99BA617D6B1F1E4F2DD8D390D2B3D74A7BDD2B592FF0451FF04238FF422F5AE537427700FE23EF5DE8ED809E47DC2832CF50C9E80F5BE5E530D
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 8EB6A9A2478ADC4107ACC25692619A0B | sha1: 5BAEB8F1562BBC9201AD96C471316862477C3C74 | sha256: BCBDC974793207939B7DB501AA87F833DD73886A0E30C15AC211BFB267F1C08D | sha512: DA98CEA89E6E041AC57E0446AE44A6BBB7ACA73674311D1023988DE9AB05C78A0A70385E7FEB03A848D399057F4D43847B1A45A380A6902BA9B10DDC69F7F26F
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Client.resources.dll
md5: CF0B49F4E8A796DF4905628624BD92BE | sha1: AA16FEE909D00AC1A723E0BA60F82E4C8CCFE6C5 | sha256: EA31026638069C69EC7FD8F79AB84493B247A00FC45C6B62A6059BD792BE2461 | sha512: 1A7D17433C32FBAA8063D85997A3EF2ED821F2FA5BD5836FB6B3C9B8001BCEC9E8E7E3FFD48314D618C88AF3BAD7B316287C1FB776B753F0DAF3BAC1E2ECFC93
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Common.resources.dll
md5: C013044F1E81BD778247462CFEA304BC | sha1: 45BBECA8410CD3B24D6FAC35C23BFC498756A873 | sha256: 3DBB5A689F15BB55B34AEDFCDAF9122C5952275435D6B70895A7D1B757483F09 | sha512: C4DB10F507F087CBD27738A1BF4A94403D50BE1D2AA0BCCDE59C0495D518ADD87B7AB841A68544B3E45006C95BB853E6CE8282DB88946CF088EA127B1BA999C1
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 933595C858305F1CE826B3AE8C7EDDC8 | sha1: 6C16A0970CB22E82A93C3F6482FB133A8D277428 | sha256: 3A087039E9BCF156DD7C5081F1E0F3D6685FD6471D6FC696F5997DB88B0E64A4 | sha512: D2F7D5DF139F42C11FCD1CCB92C30E0D7170019F92350CB54DB1A1C3AB61B0F0FFBA03AFA855ACB6A17E475B81B0B86227BE14AFDF8FBE73A048E4BAC53D0C35
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 2AF26916E4FB84AE2B1191E99B3BBF60 | sha1: 6FEC3F8C88B6A14C9030383ED9B5A534BDB0DC98 | sha256: 43046D5B82A074767704DB49430FE5F9307FD9661A1BA180E1A87642C2C01808 | sha512: 2F259A2E1621B0C8DBA846C7198C7AE3A05ED88EEBB6BC165C888DEEF45FFC0BE41C31CE7B008AA8C9B9F875F0C405040F297E92239C1547109D70A0492F1C15
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 48DEEFB9AC8127FB73EF57DE810F6C39 | sha1: 117E3A918850C401F31A96E9598EED04CD312084 | sha256: 4A30079569171AB610985137F35888D2DA62D37FC7EC06B7B75DDD27BE7D2066 | sha512: 0621DBABACCA521C355E7EBBF9B9493FCDFDBA126B94DD8911C462F88EBABDB14C5C289C038150B02E0A4B7DCDBD49EAC1497CDB9F5C928FAC000F30CF34709A
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 16B71CF834B428592054176F1569EDC6 | sha1: 19E1190885370AA3FC0A2F0122E3078542710EDA | sha256: 1D49A323A4D7D7726D7858DC04BC1CD29EF08FF307FC366866A9C94EF0C0A60C | sha512: A218DC062441B6B024B426044DFED566E845808973CBDEB755F1B184181373BDF8BC7737C0FE866F1492948189464E2161ACEE220EDF525C15DC517964AF5F37
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 1E01D0683A8E19487E6C11596BC16711 | sha1: 72398F1C1E0BF9B4DCA3AC07F1C7ED73F8B023E0 | sha256: C55E7F84A19F74A412FCDCA5AD751C2578A3807994CBF27297859CA95E875738 | sha512: 4AB55476D07E1298B94EEFB84414CA5D2F7DD29F581E3E487685F42BE60E6B0FB703FA169141C5FB4723E5AE6E0592DA830801666A96DDCAD8C3F1D4824429B2
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 6C08862B3167094705610A25E5E00866 | sha1: ED74629A6A23D7EDEBF135E64C67C1D40143C47B | sha256: FADE9B2EE0162E4A33658123AAC60FAB05C76FAD9CE104CC6CE7593A64B73C21 | sha512: 07ABB8F0C23FA85F16F93E450AD4860537033E276146B2C310BDE82D0EDB32107A073A5D3410382400985A33A63E3F0015D3AA47BC6F7DDBD4B64E4229379F92
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 6F8BEC246769684052213AFEE75F9C7D | sha1: 0B51AB5321611861D2A8A8A7EDB9FA3AB1DF13BF | sha256: 196EBD9BE12E315F87A5CD9B346980159B8B32F22BF44C379C27686AA215C35E | sha512: 00D67F2703372BFF3E03E33D64082AAA897CFAD11DD893497D42FE81269F47A2440F459553A04586405D7B055E8618965B6111B43D3C847390D9A80670C7ACF4
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 3BA0F9BA95B7635440972154AD9FAC6D | sha1: 7AF54F77E45FC38B372F8E294F13CB3E17CB9A3E | sha256: 2FBCCB8C3B38FEC3C088CD8D8009F25DB758A0A4B0F8B6BB8BC9B4CC5247E1D0 | sha512: 99E775FA4110252D431F47CE832AA0E199EFDE93F54AE0FBF674CA09CCE3CE135B2E48349811A7F9907CCFB7C92723BA6A376875D191B01B0920E32110928CE1
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: F5233D9AD45401D560D6574BBC4DA8A5 | sha1: 23631CBC705918FC812967F91EEAEA6731F36BE6 | sha256: A1CA4928BD792ECF5146CC01C17B73C05969DA17352AA0A0E43D35EA32219097 | sha512: B0B13E277BC867A1E5F0FE9538254EE145526C7FE714D41668D2340066AD64DF0820074D8B64E1B1888B1CCCEEBE0C0499AC77F3480430C40212D8783915E301
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 76A7E5B9437CDB2F12D2CE9D0BAC53D0 | sha1: E64114FFD5EC13E96C9FCF087EC9396B34F4A4D2 | sha256: 9AE9FE6A8757552E4D1C3C9B94F67298CCE5C589382467A032C22D26226F5B5A | sha512: 93EBC2661E6AA80E3C2043C823045730708BAFFE76AA34018BABCBF70F44BD0AF1E6A168D67E4CD655105921E25E926FBEC81880EE0A6BB4832994309B839F93
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: EDB8EC38849EDE137ED4DA067BC573BD | sha1: 6A67B0379D021FEF906D7A785C8CA725847C933D | sha256: AE41C7AE7E9EEDCE964E5CD680AFC5C3CCD5841B4F03CE9D89B00AD890E7E97D | sha512: B14CD4301EA511033222AD7AF349D49E35E1C572566C448E97D70DAC0AD9EBC13B011FF8028C90C701A9E985987DA3D944A6DCA26E3E131D43DE17724A7B07CD
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 88D8251317F7B504F56E704A5658AA60 | sha1: D7B30D3057A1F91CFAEB0103A69034FB3DDF1DCA | sha256: 55F27BC6F0DEEBFA7BAC876222CF51327E19AA718671B67A5F060720CA81B2D8 | sha512: C2F71D3401906873597E8E67785D81A2DBA109497BFEA7ED528F3D8FABCD8BA3C629591A7EE104E3D43E0CD8F4B8D239CE8BAFF73960618246CACA03265A4E6F
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: D50F380C6A02AAE1153D4214C0C52B86 | sha1: 16B529569C397AE561EA2925C3C89779C2ADC876 | sha256: 26A4B62BE9762AE31D7CDC64EE26078D21063502069311C413BCAABCE1F23B5B | sha512: 54968D04E86304CF0EB371571E47A96ADF138185A3CC5DFB4819A0B7A6A413AB5619BEE12CA8FAB4FA168683FCC742CB4FA7952B0180360C8411163E90E85D23
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 860862B3F7236EE601113E3B0C8161A8 | sha1: 41239D376D71751A82BB939ED526F3A0080A8B51 | sha256: 6092E9111F748C6CDAA32BBE9FCF2094A9C9FA01E037B6547B64A226F7F79668 | sha512: 08850E35D7D4E4886BF775A3E0F1215A9E349EBF500CFE2683E8164EC1E8D1D69CDEF42C80FCCE2B7711A7E1A2B0C1CAB68C1F09C9F2AD937053C0233D2154DE
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: ACA6BD0B28C01575FF792FC3A8859B37 | sha1: 36233531DBC66B5B61B6C2D012DD637D494C086F | sha256: BB9A4FE075B5408D1551A61057DF7F3819D589C1BD8F5E69E216A5CD5AD40A25 | sha512: AC53606D18793624FDF133F1B37766EAFFC13EE547287999422CBD059A2FE1F103138C2BB6A901E017D9812B826833296F52A011723CD81422504A8A2CB1D0FA
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 27E826044465C2F16E95C27018729978 | sha1: 57DC0234A868B5747F7559E904BA3147E1AAAA78 | sha256: 86AF7F4EA08E4D4F704476D39DFFE788D0134FF4D5D6298EF28E415CE4772B07 | sha512: CC2E5324111B6123F14E4C95D46CBE10329A35B6D10FB81D49EB0F8C5EE30CF9AD604F0CAABC2BB6DFE9B8D26D45B46759B0917D8112DFB0DC9EE94339B95172
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 0D813AC6DB041BDFB63B785A96447333 | sha1: CDE06DCADC009074BD32780C33190EDCABA3448A | sha256: 5A8D8892624012DCAAD7D45CCC477FB1812C31400156BF166C26777521498E10 | sha512: 5E8C649957C93CEB5E6B2F776608648D01BB5FA174501D4FBC8E8612714614FAF0EF9BEFDF7A3F375B8875EF1FD1B50933560BD9744DCFC430534ECB52FB2928
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 93777994E31BE982D348424710021DBF | sha1: 842987D9BDC9CEC1D9C0D10529E690A7ADFFEABD | sha256: FE9CF67245D25E4A07BE66628195AB31C7CAAAE023CB2D0196ECC77B80632E45 | sha512: 43F9C6B78EEC544892C310A78FE088C071DB4FC2B6C38D9BA87AE98F3C1BCE516BFA5EA0B19B082F8C3E8673ADD32F042F8C42B1B2C838B70F2D9AE51A2554CF
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 8E5C3210A25F5046B4ABAB42DE1E1797 | sha1: FD0737081C36084843911AF0A2816411DBC133E8 | sha256: 2E64CF30EFBF95803B793AFADC7FF66A811A8E5D7415D1359AB669C2923761DE | sha512: C8AFC3503623E727714B98D53E93C1D82BD47872BAE58C6E57AD2F93B053CF22EBD40036B9D346610FB2499D12C795856BFD9C3A75418BE45D797F97767535BD
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 65DAE8E4CEFB7DFD103770D811C00B30 | sha1: 19F6D4C70A394926582BB1EE4796A64F16D07426 | sha256: 44A2CFFDFEA99069EADA5BA40D031D2B337AB72A03FE71F434FCB9114D1B3F11 | sha512: 68760CE72AF40187837859460D966DBEAB00D430AD7F8733A2587522A19C4DDD698618BAF128C3D302FAD3CAA6FEBC0722190A7E5CABBE7BB5E28F24199D0846
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Client.resources.dll
md5: 8FC42EEA78E4406BFA9D4B05BEB49D98 | sha1: 94127D3FBDB87ED81C382E7F1D9DD451EDC7E881 | sha256: 98F2626EF6732804A490D232684EE867A0A0F99D2E293DB23CFEC8CDC63296C9 | sha512: 35D00D9AFA5A32679E0B12E121D3709E1D0EAE97861185E1BF4EF03605C6107CB313029FDEA8B8D0E7206DCA74C78181057568BEAB583EAC24CA918C630C0766
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Common.resources.dll
md5: 0B06E8DF5C34776A2D70BAB1F4BF719E | sha1: 3C22D8B8581A5D8A4C992E0838C7A8042D4FE39B | sha256: A0756F5B9A8E1FCACE77E2A71BEBF917D7F3886A0B0F511C2DE3D5918202581F | sha512: C2F8BD168FF63C74AA429ACA5A7EE084FE23275D5E84D68912A4B6DD8C7D5C6D8844130F01C8AFAE5789FC226CBC9B28A1B65D96A103C8D967F9E8D92D5A1825
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 46882393A00E92EC05D2524D64E30356 | sha1: 8DECDED8B67956A6CCF0949DEBA12CF045669D39 | sha256: 2052C4115A9F6C4B3995EBF66ED8940B128A097DADF86D54D7268F221756086B | sha512: 7D3EF3319C7F7CB2031008A80228096ED466115ACEC4EB6FF6434CE28AD981CA6763505CB63EC257F3F4C86A20731B02C9DBF52595BF8F282AF6F271EF394D82
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 5A791906B5C30E0A7553810FAE0F4F01 | sha1: 5546A8FC1EF775A1CE2C58A1B5A2379455D5F8FF | sha256: CB7BFF4BD783050BEE6309DA24CFD9AC014DD770E23A1F22FC487464A45B57FC | sha512: E1AE6D151E8628826701CE366899B7DA147FEBAA71C74595BF9885BB817361508FE33D83A7F45A0F0BF30CCEEE46B4C2F4554D93EB07F689D7959DAFAD3DC367
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 6D2C10FC184B04E58FCA69E4747C6BEB | sha1: 493F5BA152BEAD2BBDAA8CE87ADFF0894CB10388 | sha256: CFBE533C490918293480369FB4FC56E91B30400041EA01C8E15ED1106E0F88D7 | sha512: 21B3310EB69916A0F3C3759181F6277677679954D26DA97AA773D79B069DA27E56B15958769357EBA5B6250F6B3CACC2FB6A0804A62F0D875355F4C817128B11
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: AB4544F9F7A7A92CBB4A3EC779EC3955 | sha1: 10B697B7B9CA061E0A4A4B2AB75E22C3D2C1DC4D | sha256: 2D8291A15FDA11D6129625E76DE86314E04C88253F8358F82AB7E9213D5CF145 | sha512: 9025DFAEFB46A39B2A10B195C029506FD377E823D13CBE3B47637C11AA29DDD0A3C987EFEF2CC27A4AAE4F038AE975B1B3E886E1B32B6A2B1FE8E48E9D320248
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 686E47995C605F5AE86107FA51A63B21 | sha1: 6B960BB047CE45FFBAD88B42A11FBF6870035931 | sha256: BF116C7E4ABB89FC78410077C9398CDF38C83C2254CF115E731B37C164B4B44D | sha512: 767252EF559AE7A0E2DB04B385FFD71FD6EA7FEA0A8FBB255004F2594F2284E45D7F930B859D6B4651BAE22A174885E23F6E0D2B32E8A750202932E1AF2698FC
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: A9D01DD4CC8D13D96FED283E28787F63 | sha1: 73F28ECC82E5CB8FE8A2A66EF1DE3E965B55C248 | sha256: E712524A29857F08F44CADBBE8BE31C07CFC9A435327F200D5C3AF348DD492B9 | sha512: A66785D48FB1065A0C1DC9A215BE8975D99CD15CC18E17850161B19AE72C1931304CE7F338316C1C69498B771D640D3C766861222ADE95EE5A50991C3FFA8194
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: C3831C320A380979B68C9E791DFD6FAB | sha1: 1503E12B9C14BCFDC633ECBAD777BD80E495D3BF | sha256: 3C7CC2D08CAD861D1AF3F41182B36E6E134CE45527BD643F795F88C445ED03C7 | sha512: 6F76B64033B1915A375185C220D89E3FB75A22425B6D19B3EF93E63B5B5E4129353B2E4E4E3A2A943D83D53F73913D0206F866109411F071F60AF2BAABD56EF8
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 12E68C7023A9D71CB02499A30FC41807 | sha1: 7F42432005B110159377BAB454BAA64EF3A3D791 | sha256: B3F55B48373F6FACCF3DC2D758153623DB60AE2DC427F5B0F6BBE5634F3E6408 | sha512: 664AE848BC067652ECD657D337C493E7F679969A740730B80D2D6DBEDA04C14693274A3850AF3703E137D7A6DBE639FDD59A037FF20386B05AA2AA0DE23D0586
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: F47E37D3570596DC928CB30F43881C1A | sha1: CDC21E87F300639B4C173D21623D8EEC4855C42B | sha256: 80DF0F26DAEA34C3899228BC393CE4817ECA6D11866C978281072423BE3A7B9D | sha512: 0D5E045584156E2C64E1C99BCD408EE6AFA36262BC2C825ECA966B2E7972195788EED07A1696AF6380A5BEE05E5F1E646789D23AA98128DF05BF092E81766D14
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: C768A12DED99F9FD666C29BEFA84DCF3 | sha1: 3ECA4152F388CA0EA9E2A2894BADB56E8E50B1B0 | sha256: 952EDBECA543AACBEABC2356ECE3B4D54ED7A2822641887F1E96B7E4C3BD6EC3 | sha512: 1523F2FEDFE04313D320814BBA349B288F84F206901ABA0DEE1F026DDC95D482FC25C5146E200612518B43390BC0897751BA6442B7CB169CC534471C2D308543
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: ABC89C209EEB09855E509BEFA6F01B81 | sha1: 1344BBB2FB122B2FC21B443208E84BF73AE8E3D8 | sha256: D0F597F08BD0EB020ACC9048DE02F16BAA5C8BA6612721E88808E96C6A387949 | sha512: 9839585708D9D7C38294C8EFDCA995FBE1B96F989F8694670E6899828E4EC569FB884E9BBA79FA41ABBD376DE299921DFEC7CA50D3E51CAFC006522CE51B5CF5
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: B9520C951D9611CC1A3DCD25FC253F07 | sha1: F142ACFBE880D8638B2F22781595F0CBC655BB35 | sha256: 74BB0447180A6D4BE2161AFB7D3BA4D30EF0A3D0CC2D13C5FBC7A9158029478F | sha512: D769134FCED52146BFFF1353CD1E0987C6DA1D808CD4619FB0CE00483AF97ED85C99B904A54A83CE1EB199EB3733CCDCC6D6CC1CBB894253B0EF9ED2CEFC2126
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 9077554E636C49EC1603B768EE33CDB2 | sha1: 5375BCE71C1BF43344B6668DFB09346864FFFADA | sha256: 7748278EC53AE7777F5C70BDDD71CE60F2A14488B35314A16658CF5D374EFFE8 | sha512: 82170070D3F36E736E979EB97970F3DB558C71746CAB047ADD9ACCB4989172E72B1A6C376AB75F25D79A6B608C052F1A38119DBB21B20BB86E55FFD5BF9A742F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 311E7FB38BFE050F9C347F4890D25E44 | sha1: 9399F0A1F8D8FA6E3B518AA1BC0798E54C41742A | sha256: CA3CAAA28F4871F08F7469946D2C39DAF91408116778A3B09A920B32DC753356 | sha512: 0812FE8CFEC21116668CF17398BA9166C3EC1A37485C482AEEA8DB12BD40208F025B4ECCBB29EB1AA1B9B2CBDDE58A9B00EAF9D109BBB8FECACCAC91EF5E5804
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 4CCB2EB7D2365C620CA6F9FF5D704D28 | sha1: 1288F1FA8842F3D706C1886F03643F45FC593E96 | sha256: 7EADE63D43399A730039CCC895C993EDDBAFF63BC630149C250C58F323A30798 | sha512: AF27E848977515BDCB8552B1665B031C9401F7ED61CC9468D0D11A23E339CB38A67E43F5A449E11801ED78921D638F232BD769BF9B24B5C66A8BA2656A749359
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 32D7208DA56C87CFD6618FB47145E1E6 | sha1: 6F900C1E0BA239B3471F74A155AA9F4E443A7B4D | sha256: 564C590B28F1991BD5FEED446A4BB3F8E913D366F12ECE89E6B9EABF7226745F | sha512: 9874155FD0E0B89D9476587D9FEC96B06458D56B86E254D5DE0A922D359A46B8AC96C14DE06FEDA8C44771B11B1341D74FBD68CDFF5533F626CE68C4CF2DE989
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Common.resources.dll
md5: BF9D6E1CD3B97D184B0DE14A0D876B2F | sha1: C5F8DD8B05538D479025E207C13A9F144A71AF7D | sha256: 33C1F90353440B9AEC8B67CA9ABF029A4C4A0EF217FBFCE84BD02D62BDA26015 | sha512: 28D1FECC064D0CFB385811DCA785DB60C49807A743B75ED2CFB422FB1E41FD3203EE1B470B071028840C1C23385DF1121584466C59892DED0DA8431AE292EEB9
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: C2EB29FFA6A2FFC124181DC11C83813D | sha1: E1B38BFC254DB26D0D4A2E155314FB84BAB01F98 | sha256: 7664AAEC060043929CE39A029ED86FDE3496867BCE743DDBCC68D0370BF1BE2D | sha512: 80621C79CE0861AD2A0C4B2AED8076B970EE69314CEBA6E3CE9C5222AE888C6898888DD7CC348FB0DD00E74AD6621E3F67FD6A1CDB28D66B672578736BC29874
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 72CB9443CC4EF69B56D2DCAAD13D28F9 | sha1: 3061823E932D561F993DC04FA9360B4F22EC8481 | sha256: 7FA0AFB5C93D591EAD4FE026B1185E6A7C4BDF29C9891ACEE72D288CD00C51B2 | sha512: A7F2446FDA9AF6A66A74EA20EBA0FD97BC38065F17136855058E1F9AFCF62B9AD00127AB153810F5CFB8694EB202633FB14ADAB4B0587A7DB8094C5AE514722D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 5EA7D32C738B253134461CA9B176BA34 | sha1: 417104A96601524059A8344AAA2BF354BDED5B7D | sha256: 8DF184B0B25A16ABE82F8427499B292BBAC53C5D6AA66A95FE86CC33D448FF28 | sha512: F45528B465DFBA590B94E4E6947EAC37C7B03280D17025BD89030B7AB4F4C17EA67E4FA8FE00121E9B7047DCBAD009CD2056EE6CA1A6CA2DD441F4A6F9953C50
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Client.resources.dll
md5: 76940439D93CBA433DC8B43358A87A44 | sha1: A869EC25AEF718D3817236A589AED49C5F399F9A | sha256: ED3F2E5A18F1F0BC2D22CDCD20FD44E8A7B14371E3AAA9AB7F64C28ACF74D0D3 | sha512: 738D2E9166FD3FD560D19F7C85C65C7C085849A1BD849A80DDC738ECDE338DFF292A61F5FCD4EBDE0F542A41545853A60FF68BA16BF0F7EF36C347570548620F
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Common.resources.dll
md5: 946BADAD76DDA7DBF045E1AE84F8BC46 | sha1: C4F9D94EAD1D45D8402A81580BAEB4F3528AE48B | sha256: 1A9DE12C8A549D272F49433A1B64709C03102CB0479C8CC804EAAA504FA88590 | sha512: A0D8E3691E6B8ED0983D91ACA33194488D1C0FD5835CB7F2ACE47ADD5E125F72E6EFED803841786C7B031771813204C8D7676C48C5614E40268040FA1D226B22
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: A511BC65B4BD8806F554F8C215906748 | sha1: 59125E67DE410A8532DDD5D3D43354BECC37C480 | sha256: 5EEB54BCFE4CD272E22AC902C88F628258F7BEFD8E3E3BA1A3887889253B4A91 | sha512: C8195784C6920DABEA661FCE990C7BDF7AC769AB7F42EC564BF3C86B097BE379D592CD2E0C6E9809C608465A2FE9389E670DE2B5A4E2871DC5339BB7963118B2
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 77D6C2EB7169DE880A955D75BF60822B | sha1: 916DE5C0077A757CD0F70FB21EB7E51EE1A32FE3 | sha256: 1FDD05C5F6AD57CF30137EAA912222D4B585247F204B8D44F64F0FFDFB8C17A7 | sha512: 73BD2C4A896FC1835624EF9BD0EA60B933E5449AEA2D7E343FA61FF73F45017FED45E3052CBAC539DDDF27EB86D809EABF58856730560617B4DAF6E4ABCF8B56
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 90F1A3A3D2C9D089313EA820CF4E01BA | sha1: 3C6F5F2C40C37BE0ECEEF1A4F7DAA74F86B7A084 | sha256: BDD7008946D1478923C24092CD9E429B8DA984ACA726A3C520F51B013E1C0A19 | sha512: 28761B7344370F6D84CB964CC3BC31BA4425033237F7A1D81E635CCC627ACD0564349664D8C803150F64008696F35C7C2B23AFE0B86D3CAF9B7CC9C4BC4FBC4C
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 3FB0040B8FD7E56F2E13BB14B61BA31C | sha1: B296B4E7D2C042F70227C3CAF5666338B1E968B5 | sha256: 23204FD0A7208A861568089701D2ED60EBCE46ECFD801ADDF4309ED5FACE69C3 | sha512: 61BDDD43D9F45985E59C0F1B603976C6A30BBFC0480D9FB3ACBD0BB5D6F633B20F5B9392F24589E2F31FE39AAB8B43A15D2B2DA12470AF952775C7432CC4FE44
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 8F0DB6A0A81113397B58A7EBB4B88F5C | sha1: FAEB2AB7D67B557C8BB40B4A29B9358DE5C19FCE | sha256: E7B7E4A347177D243A92004B5176EE543AD3B65B05FE372B556CDE07DA782017 | sha512: F9B3B476FD37117BE632553784BCB8A741465A68061212204D50F50E2690F811C821100048539223112766A5F984D591FFAB1572D1D89BC50F56ECEA92688311
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: ECF987D9498560D8E4CEF7AF9756AE44 | sha1: BFAB00DFA944239777429CABBCBE9D72C751FF56 | sha256: 3CD55E3F3BB1B3CE58591D28A058C1FD7EB40CC13B3B86D8D6CF08E161B1CDAF | sha512: 2F34C937E0A23EBE331570EA1FEFA3A0B005E9DD1538D0A81B200992A295646CA8C5566FD8F4FC5468B6926B367B13A647109D384BCA9A8011CCBDA5738F3F6B
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 70742E26B436DBA8235A24D422051F7F | sha1: 25F8C987DEEB3190D666EF9651939D18A2D17680 | sha256: 1B3B43D84A4A4207F351C59398EC0DD0783013A169106E09F790E7CE5362CFDD | sha512: 2F3257B736E248BDFAC1400D6874D03AAD55FF1D64559BA190EBFBFC3D01D666EDFED60714E1D07767EF116AAF46538EAACD6DAE5F41CD71C2F4FDEA9787B5F7
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 61B9B57C4856EF22298E855AC12AD337 | sha1: CB44EB58697D4B37097EFCE05C72E97FABF67CAA | sha256: 601F1FA123431903027B0E5B0C14C9B7F08D3953D3B670C379C11920BE20AEEA | sha512: EB629DE2E919F8324389CA5F48922C03AD2AC70451E5CF7CC5ECC19DC5FC4412F664393D69ABFFA29B93013C3DA704DC5BCF8DD12AF099992ADD917F059BCF5D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: A1EA7678E4C6AB834C8B855995E61CDD | sha1: E52F49257014EED9526859F5C2579B850A4BA200 | sha256: 6C3246137C8798663F70F93B05A5D653576E8A5FB34548DD2EC1696C1A201615 | sha512: 122661FF96E20F090F09A3DACA22A0A140AD9EE4C04D704B39E8A30598B777AB1F87AF252EC12EA479ED63BD60131F94B0FAE76F4BD61AC3D5DFDFB0D912A0C1
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 46D38A8734EF64A034C37235F00DE3B1 | sha1: 6B65216EF08989242F7AFC4434AE21AA8EB0A844 | sha256: 604AF7F3C15A8BCDA813D462D290EE7BC536D90B2980BCCF118FE032BCAD5A05 | sha512: DC3596C1CE1E33304E233D0DD100AE9DA6B3D524A88C9514625B71E5C5E1A29C2A97A270DE44962F8FF826913AA7C8BD37EF07ED2AC0DC37252065FA8DF57CCC
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: F77A12604D701D2985E710EA8DDA2553 | sha1: 8C46F76D7B8587AD8D0A33FC7A648562392C46E5 | sha256: 9E7865DFF3AAB3716D1AD1316E6E3B17005F5E1AA189BFA8E068B2F12A1E5DD2 | sha512: 793B4C2956F25884B43CA80848D6112DD5962DA11363A2AC0FD61F3434581AEEB0BD5DAB4B056B52EF7D3078EA80A1A29008AB262B14EA9829B6EC335CB747A4
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: E724E654350F096A254C6B424E7B2AD8 | sha1: E7C4906D33E4D7D1E214E71889C7417F0FD8187E | sha256: AF5AA8B7EB592F830A0C7389F331CD07E341A6B86F8705F964A35C776CFFAF8C | sha512: 2B92452D75CCFEC94DD62D33FF48C12D7B0698DEA335691DC155768AD4C4B1000F1F98B7270673E7E770467F57FED6596F08CCC94D2CA9418F2F58A77E4B2B6E
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 86A3689DF1A3A7201B82D97102E2C507 | sha1: 2009E47FFC6EFD5E267DF4ABB3E98506DA32BAFE | sha256: 65B30CA6BF7C8944A0528526F8E19999D8437E443D2B940934D1B3AD3FCC2AAF | sha512: 668387B56665442A0D7BA3780DA7B4BA9B86019949AF47CE66BF7FA12C60A676D1DFF80DF3C5D8043AF0623C663A4DC035EFA0C57561B0325B9AB2A4D5C78493
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 4BABE8EF3DF01162FA18557BABF7EE19 | sha1: C8417E5E138FD89F23E830191F91665A13494DEF | sha256: 3182CEEF14D9EC223B00DCBD082D7D2EA96B349318C9DE6D551ADA79E6A94B4E | sha512: 476825F6A3CAFC7CEA56A75260F1E34F7D0FD1DFF7BBDABB612079EB8AF0BDCF49F7E14A5992E6E0D200861F535FF209BFD91816ADDBCDD63836B803D61E1334
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 4EA31ED4BBE6C002D98CCF38D18B7113 | sha1: E3EF8C967D7A483B336A3BF4D88B45E1EDE84671 | sha256: 7A86F109F3BDF762A79CA398F719E7A4F89DCCE9DB34841B0D520855662AA6F2 | sha512: 23974E62AB15AC8FE04AFFCFD977E4CBCB1B6175B8C76D707697B70AB0D3306BBEAE1DC3BF2945E9CF03B71029B33D22F90F7ACB354AB7B16973BFB2CEEE42D5
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: C3E3CAF006BE641FF5E07526A6D0D0EC | sha1: EDBAE4B98B646BB8C99E99C261E3BD8ADF200CDF | sha256: AE4DBE7DD493A4BD9123F66AAF1EAD6901359E96EC09A12ECDA782996D66334C | sha512: 34646FA3A19990F097643BAB929E2F6AE58F8022FE755FB3E5AC517E2B129D6E969FD64A248DF0D9E27C936AC71BA6EED5FE55BF12387A12F0D2E8B304E0E4AC
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 4FA2D5697D223699C43577644E0E210A | sha1: A541846E9960188786D1DA18F185E682EEBC7340 | sha256: FA26ECE0E90FBBD98A2E400DD8D630FC4654E4A13F3D6769340ECDCC413E946A | sha512: 0D862D35117072432B16F8F01F1DEA23F687517F02C343A30D1259FE78586B5FA882ACFD9BD69C88B9387409EE14013CDEB35D5220ADB7B5A6AE25F1E7F953C0
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 2316C2B2FBE0C338CA03EF25E756B823 | sha1: B7FF081C08CF06488792953A79AAFF4C341C7D92 | sha256: 2C4BE9D78C4851B668B6E84924B4204A6FF7FBB089B4FE40A8C1567047AB3F63 | sha512: 2D1204186E8F25B5B16D3E8180AC823071F4681695EEEAB1411C791167FD74DE28BD0E95D2DB78B27032F04AF1350A6F10E19E4B80827EA44882DF4F5C53FAC4
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 040F1283430941A3EB7A81CCCB5DB04E | sha1: 5A77C382AAE388AFFBD6D59D086DE4AD1FC14E69 | sha256: CD31D619FFC7B27098813025C92D0D524B3D2E4F9CBFB704E3AEE5D5E05F6292 | sha512: 00493241D49602B73D4BDBB4737E7574F4664647D2076D1CF31969E5ABD8016E01EA8D0F38C67EB91C025E79001B48B2D12BAD741089860B011BF5635E10BAC7
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: E70C612A3BF458E72B16083BC54A5584 | sha1: AD1353EB37939060583DED8AAED9D4E6AACE65D0 | sha256: C822A183F50C137B8C99A04256DB337C4E06E0FE72FDD8DA0C351BE79E29EF6D | sha512: C09E76402CD55B7EDFCB6A28D250C643C842D640DBA96C0DCD702DFE1E3A02132F8A5B852C9D2999F642F325B46E820B7A1FC72B2F5C0D643188DEFE76B2FA44
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: B9C7EB172CA816A19CB01EE8A0E74E28 | sha1: DC42A4A0FEB27F2E5B2A92A980DAE618AE013D97 | sha256: ACF5F37D1D71291E43B3185C4953F3870279EF5A90987D3B74610CE6C3058CEC | sha512: 93608F3E722384BCF813EB222EB2970835A1F42503AC2CBC0C16385240EFB4F486750611736F6E144A18E379158EA36DEF7260E8C8DD7EED765DF89A589EEFD5
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 3E95AC8B44A3F18DAFC1E9B26BA581AF | sha1: E4AA9BBE545823B29569EB5543121CDC5D9F1F9E | sha256: 20386AE9CB571180115DBD1980F8577DE3618FF77B63D44C534C28AFA52BCE38 | sha512: 55E1D0EA68F4848382E7319E198BACA5807CDE1019601C2B12A86B7951048204BFE69D2C80B595BB0DFB450FC9F185F19FF37D836BEF8C409FAEDDF510561BDF
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 90BED30D2B628C00D6D8761585FA076A | sha1: 1F5A3BADA8F9F5CE23CC7185C3625EC5ED817149 | sha256: 7D4B907E8EC49BDE28621974D6BFCFC55A80E47675CF59B2B222BF3070D00A31 | sha512: 69CB959451A4809E45DFA510E41C1B8FE6415764D436DC3BC9B863EDFDC2DEB9A189A167F5671680E851DB4689133D5CE31EB83840F376D4CE107E5A6ECC8208
tools\TfsCmdlets\Lib\Desktop\System.Collections.Immutable.dll
md5: BDDD1CF42DD6F7BA5D1D7114CF7D86AF | sha1: 7AE42F96E3348EEC36783C15AD5D9E453D232FAE | sha256: A411A3E3AAC75D3211D8A58810B5FE13329E9D0BE62CC62C61FB1B3351E11FBD | sha512: 1C2B2ECDDD465C9304F88DBF13301403BDDEFA05C061923020625A088A245EA6837E94334013CC8CD6FAEEEB53671F0CD1D3C3349BBB149C84FE31C357632C00
tools\TfsCmdlets\Lib\Desktop\System.Composition.AttributedModel.dll
md5: FC44A1FDF065F5EE17A5B7172E763BBF | sha1: 3A8E62ACF4357E44CA447DABC82253296BFCBC0C | sha256: 2AD7944C8597CBD90139DD3036E340247637DD6FEC32BA140DFC490FDC351485 | sha512: E2A87B12F607D0BA82A3D54628C89955D7F3D97CAE0ACE11C150EEA0F2561E02152117ADB51538B0A0830C8FE604765872E23778A0140334D05AA6F53D8087E5
tools\TfsCmdlets\Lib\Desktop\System.Composition.Convention.dll
md5: 9685ECD635E0438EF1D57729384FEF56 | sha1: 335A5FCB07E53C4BE92E3237B00A280FDCB95759 | sha256: 7114AF19B8940B83CA39E2C8409FFBF1E61757761875BF77DD4AAAB7F2653C34 | sha512: 4555292F9909A7E451B040234C3BF0DED65EF01B32485A5779EF01DAF0A119336CEAC83369FC22832C02528BB0CC46D5EC43A22CD26856EE5A883CE67F409EC6
tools\TfsCmdlets\Lib\Desktop\System.Composition.Hosting.dll
md5: A6D1640C2161B23CCB11AF3C203B8174 | sha1: 868D5EB8AD32D70E8BFF89854CF30DBC3D31AA76 | sha256: C8F4E1AA0F348610AD9BC396E13FC71910B5405A8FDEF6742D47969A74D81596 | sha512: 1301DAEF71A9C629CD82CFA1F2B26151C89F397617604679E20C84195F1BB7AFA9B4D9A84E06941EF9A00F0111921E946E7F0836D1F037F9FD6BB21B2FF4C5C5
tools\TfsCmdlets\Lib\Desktop\System.Composition.Runtime.dll
md5: EBD5381C2F48BA3A2E54402AE73318F9 | sha1: 8DF5EA17044CEC6E70F63E259D5BDEAE56DF61A4 | sha256: 2A54B348F0BBD200FDFF4FBA21E285D53A04810B37F6E354A426C74B7147C9B1 | sha512: B9EF4370ACD8A7A2781640E78198EC4EAAC8BB00B1F0FD4D9E67877D94EB75DEBD4A891CF091A178EAA66779C24CDE5BE46684D27B96D7A162F79E409068F530
tools\TfsCmdlets\Lib\Desktop\System.Composition.TypedParts.dll
md5: BC19914DB1A7151EB963D9ADB2BB4A5C | sha1: 9A9997F5E8F45E0DC3F60881B3B30ECC2A1EDF71 | sha256: B31C264BD7F07A577F86445E73C3ECBCFF27319B8030BD6B156E82802E38441B | sha512: AD4C8723149B368528E338D7177B6A7DA9814A152D6EBA8CF5260B5F29A9386C1D8DA648BA41D6807BD1D18D82B09C03748E7039BBEFE05AB79C744AE7C96AFF
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.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.AccessControl.dll
md5: 996AAB294E1D369B148D732E5EC0DFDC | sha1: 28465FD34680A082506F160107F350B46140A1AA | sha256: 1FDA491EEBDB19EA0A83CF6C16AB5DD004A1BFDFC845EDE017EBE0945BEB927F | sha512: 5E6B172D2DE5928915B38EC80C7B76F42430AAC959F04AA3521C63495B6F3C4F82DF139C275E9FC5024B1A0A4F307DAADE6130B6028779F98F456282AE8B61CD
tools\TfsCmdlets\Lib\Desktop\System.Security.Cryptography.Algorithms.dll
md5: 79C6FA92DBA0C34DB2C412BFA62E48A3 | sha1: 583A3E0F870ECE6419350A8656D7D4AC21746F1B | sha256: A83CA72A33172E977D7FFF1E96FA6CBAC6BEFE86DCA21D651C04578210325225 | sha512: 386AB22AA5299C5D4FB3D8B551F97C916129F05FA87D4D3D90B58BE1CC304FFD3431B0B5402A0A77F2DB64B713F31BA60B3D006D0F01EB5A5195A4307ED7F590
tools\TfsCmdlets\Lib\Desktop\System.Security.Principal.Windows.dll
md5: BE2962225B441CC23575456F32A9CF6A | sha1: 9A5BE1FCF410FE5934D720329D36A2377E83747E | sha256: B4D8E15ADC235D0E858E39B5133E5D00A4BAA8C94F4F39E3B5E791B0F9C0C806 | sha512: 3F7692E94419BFFE3465D54C0E25C207330CD1368FCDFAD71DBEED1EE842474B5ABCB03DBA5BC124BD10033263F22DC9F462F12C20F866AEBC5C91EB151AF2E6
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.ValueTuple.dll
md5: 23EE4302E85013A1EB4324C414D561D5 | sha1: D1664731719E85AAD7A2273685D77FEB0204EC98 | sha256: E905D102585B22C6DF04F219AF5CBDBFA7BC165979E9788B62DF6DCC165E10F4 | sha512: 6B223CE7F580A40A8864A762E3D5CCCF1D34A554847787551E8A5D4D05D7F7A5F116F2DE8A1C793F327A64D23570228C6E3648A541DD52F93D58F8F243591E32
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.Common.dll
md5: BA17B39DB9ECAC51577201861581CFB2 | sha1: 1FC183F1A7F904394C6CD2A4CF497BDC32B94745 | sha256: C0A40D6014DF634B5FB9158766A7C24F96E18C6258F24142250B4C2491D9D596 | sha512: 0298033E60DDF5992A6E2DD47698B6A4A5D3DDABEBCA76BED5A0E8E764E7656461F6021A601C88598BA9A7FBF709C77AA761D719E3D407D0DED6A0ADBF887A00
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.Common.pdb
 
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.dll
md5: 82CC1BC8B4DB786CDDE2D2A04B32356A | sha1: 5A8FCDA79AF9799891196349793F914DFA8D3DD8 | sha256: AA5ADE8313AA9136579296B9EF9D318B28AE3A4F173D74BE70E6B611F4107BCE | sha512: 54FB4361C9B7E4FCC1C976E8DD4C7C351E6EA8B436FC704E22D2B113D23384F490D47504F1DFCF3BFA933F7C956123022FD1524F9441C5EDDC45E596710A15B1
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.Admin.GetConfigurationConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationConnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.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.GetConfigurationConnectionString.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.GetConfigurationConnectionString.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.GetConfigurationConnectionString.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="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="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="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </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="T:TfsCmdlets.Cmdlets.Credential.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.Credential.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension">
            <summary>
            Disables an extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension">
            <summary>
            Enables a previously disabled extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension">
            <summary>
            Gets one or more installed extensions in the specified collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.IncludeDisabledExtensions">
            <summary>
            Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension">
            <summary>
            Installs an extension in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to install.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Version">
            <summary>
            Specifies the version of the extension to install. When omitted, installs the latest version.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension">
            <summary>
            Uninstalls one of more extensions from the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to uninstall.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit">
            <summary>
            Gets information from one or more Git commits in a remote repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Author">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Committer">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.CompareVersion">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ItemPath">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ExcludeDeletes">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeLinks">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludePushData">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeUserImageUrl">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ShowOldestCommitsFirst">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Skip">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Top">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Default">
            <summary>
            Returns the default repository in the given team project.
            The default repository is the one that is created when a team project is created, and has the same name as the team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.IncludeParent">
            <summary>
            Returns details about the repository's parent (forked) repository, if it has one.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Item.GetGitItem">
            <summary>
            Gets information from one or more items (folders and/or files) in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Item">
            <summary>
            Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. 
            When omitted, all items in the root of the Git repository are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.ForkFrom">
            <summary>
            Forks the specified reposity. To fork a repository from another team project, 
            specify the repository name in the form "project/repository" or pass in the result of a 
            previous call to Get-TfsGitRepository that returns the source repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.SourceBranch">
            <summary>
            Forks the specified branch in the source repository. When omitted, forks all branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P: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="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </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 cmdlets 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="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="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroup">
            <summary>
            Gets one or more Azure DevOps groups.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Group">
            <summary>
            Specifies the group to be retrieved. Supported values are: 
            Group name or ID. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Recurse">
            <summary>
            Searches recursively for groups in the scopes under the specified scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.NewGroup">
            <summary>
            Creates a new Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Group">
            <summary>
            Specifies the name of the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Description">
            <summary>
            Specifies a description for the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Scope">
            <summary>
            Specifies the scope under which to create the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup">
            <summary>
            Removes an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Group">
            <summary>
            Specifies the group to be removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.User.GetUser">
            <summary>
            Gets information about one or more Azure DevOps users.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.User">
            <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.User.GetUser.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.User.GetUser.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.ConnectOrganization">
            <summary>
            Connects to an Azure DevOps organization or a TFS Team Project Collection. 
            </summary>
            <remarks>
            The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization
            or a TFS Team Project Collection.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsOrganization.
            </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-TfsOrganization 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-TfsOrganization by default.
            </notes>
            <example>
              <code>Connect-TfsOrganization -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-TfsOrganization -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-TfsOrganization 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Organization">
            <summary>
             Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organization by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.DisconnectOrganization">
            <summary>
            Disconnects from the currently connected Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsOrganization cmdlet removes the connection previously set by its 
            counterpart Connect-TfsOrganization. Therefore, cmdlets relying on a "default organization/collection" 
            as provided by "Get-TfsOrganization -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="T:TfsCmdlets.Cmdlets.Organization.GetOrganization">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Organization">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Current">
            <summary>
            Returns the organization specified in the last call to 
            Connect-TfsOrganization (i.e. the "current" organization)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition">
            <summary>
            Disables a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.DisableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition">
            <summary>
            Enables a previously disabled build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.EnableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.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.Folder.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.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.Folder.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Definition">
            <summary>
            Specifies the pipeline path. Wildcards are supported. 
            When omitted, all pipelines definitions in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition">
            <summary>
            Resumes (unpauses) a previously suspended build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.ResumeBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition">
            <summary>
            Suspends (pauses) a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.SuspendBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="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.Destination">
            <summary>
            Saves the API response to a file. If omitted, the response will be written to the stardard output stream.
            </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="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoProfile">
            <summary>
            Do not load the user profile TfsCmdlets.Profile.ps1 (if present) when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.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.TeamProjectCollection.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.TeamProjectCollection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.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="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.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="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar">
            <summary>
            Exports the current avatar (image) of the specified team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the file where the avatar image will be saved. 
            When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar">
            <summary>
            Imports and sets a new team project avatar (image).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the image file to import. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar">
            <summary>
            Removes the team project avatar, resetting it to the default.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.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.TeamProject.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.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="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.Process">
            <summary>
            Returns only those team projects matching the specified process template(s).
            Wildcards are supported. When omitted returns all team projects, regardless of process template.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.IncludeDetails">
            <summary>
            Includes details about the team projects, such as the process template name and other properties.
            Specifying this argument signficantly increases the time it takes to complete the operation.
            </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="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </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="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.WebApiBoard">
            <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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.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.Team.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.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="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.IncludeMembers">
            <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 team settings (fills the Settings, TeamField, and IterationPaths properties).
            </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="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.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </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="P:TfsCmdlets.Cmdlets.Team.NewTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.RenameTeam.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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 path(s) that are associated with this team. Wildcards are supported. 
            When the path ends with an asterisk, all child area paths will be included recursively. 
            Otherwise, only the area itself (without its children) will be included.
            To include the children of the default area path, use the wildcard character (*) without a path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteAreaPaths">
            <summary>
            Replaces the existing area paths with the specified list of area paths. 
            When omitted, the new area paths are added alongside the previously defined ones.
            </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.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration path(s) that are associated with this team. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteIterationPaths">
            <summary>
            Replaces the existing iteration paths with the specified list of iteration paths. 
            When omitted, the new iteration paths are added alongside the previously defined ones.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days.
            </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="P:TfsCmdlets.Cmdlets.Team.SetTeam.Force">
            <summary>
            Allows the cmdlet to create target area and/or iteration nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.Team">
            <summary>
            HELP_PARAM_TEAM
            </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="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
            HELP_PARAM_TEAM
            </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="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
            HELP_PARAM_TEAM
            </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="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </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.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Branch">
            <summary>
            Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Path">
            <summary>
            Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder.
            </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="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea">
            <summary>
            Copies one or more Work Item Areas recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the area to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration">
            <summary>
            Copies one or more Iterations recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the iteration to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Moves one or more Work Item Areas to a new parent node
            </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.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Moves one or more Iterations to a new parent node
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.RemoveArea.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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.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.RemoveIteration.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea">
            <summary>
            Renames an area path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration">
            <summary>
            Renames an iteration path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Length">
            <summary>
            Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>B
            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.Wiql">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.SavedQuery">
            <summary>
            Specifies the path of a saved query to be executed. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.QueryParameters">
            <summary>
            Specifies the path of a saved query to be executed. 
            </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. 
            To retrive all fields, pass an asterisk ('*') to this argument.
            </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="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.AreaPath">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.IterationPath">
            <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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
            HELP_PARAM_FORCE_OVERWRITE
            </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="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.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.Folder.GetWorkItemQueryFolder.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.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.Folder.NewWorkItemQueryFolder.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.Folder.NewWorkItemQueryFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.GetWorkItemQuery.Deleted">
            <summary>
            Returns deleted items.
            </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.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.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.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag">
            <summary>
            Disables (deactivates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Tag">
            <summary>
            Specifies the tag to disable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag">
            <summary>
            Enables (activates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Tag">
            <summary>
            Specifies the tag to enable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </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>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </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="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval">
            <summary>
            Restores a deleted work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.WorkItem">
            <summary>
            Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </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.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </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="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </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="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.ResumeBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.SuspendBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionController">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionFolderController">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolderController">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.ProcessTemplate.GetProcessTemplateController">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.AddWorkItemLinkController">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.GetWorkItemLinkTypeController">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.GetWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.NewWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RemoveWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RenameWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.WorkItemType.GetWorkItemTypeController">
            <summary>
            Exports an XML work item type definition from a team project.
            </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:JetBrains.Annotations.CanBeNullAttribute">
            <summary>
            Indicates that the value of the marked element could be <c>null</c> sometimes,
            so checking for <c>null</c> is required before its usage.
            </summary>
            <example><code>
            [CanBeNull] object Test() => null;
            
            void UseTest() {
              var p = Test();
              var s = p.ToString(); // Warning: Possible 'System.NullReferenceException'
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotNullAttribute">
            <summary>
            Indicates that the value of the marked element can never be <c>null</c>.
            </summary>
            <example><code>
            [NotNull] object Foo() {
              return null; // Warning: Possible 'null' assignment
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemNotNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can never be null.
            </summary>
            <example><code>
            public void Foo([ItemNotNull]List&lt;string&gt; books)
            {
              foreach (var book in books) {
                if (book != null) // Warning: Expression is always true
                 Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemCanBeNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can be null.
            </summary>
            <example><code>
            public void Foo([ItemCanBeNull]List&lt;string&gt; books)
            {
              foreach (var book in books)
              {
                // Warning: Possible 'System.NullReferenceException'
                Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.StringFormatMethodAttribute">
            <summary>
            Indicates that the marked method builds string by the format pattern and (optional) arguments.
            The parameter, which contains the format string, should be given in the constructor. The format string
            should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form.
            </summary>
            <example><code>
            [StringFormatMethod("message")]
            void ShowError(string message, params object[] args) { /* do something */ }
            
            void Foo() {
              ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="M:JetBrains.Annotations.StringFormatMethodAttribute.#ctor(System.String)">
            <param name="formatParameterName">
            Specifies which parameter of an annotated method should be treated as the format string
            </param>
        </member>
        <member name="T:JetBrains.Annotations.StructuredMessageTemplateAttribute">
            <summary>
            Indicates that the marked parameter is a message template where placeholders are to be replaced by the following arguments
            in the order in which they appear
            </summary>
            <example><code>
            void LogInfo([StructuredMessageTemplate]string message, params object[] args) { /* do something */ }
            
            void Foo() {
              LogInfo("User created: {username}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueProviderAttribute">
             <summary>
             Use this annotation to specify a type that contains static or const fields
             with values for the annotated property/field/parameter.
             The specified type will be used to improve completion suggestions.
             </summary>
             <example><code>
             namespace TestNamespace
             {
               public class Constants
               {
                 public static int INT_CONST = 1;
                 public const string STRING_CONST = "1";
               }
            
               public class Class1
               {
                 [ValueProvider("TestNamespace.Constants")] public int myField;
                 public void Foo([ValueProvider("TestNamespace.Constants")] string str) { }
            
                 public void Test()
                 {
                   Foo(/*try completion here*/);//
                   myField = /*try completion here*/
                 }
               }
             }
             </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueRangeAttribute">
            <summary>
            Indicates that the integral value falls into the specified interval.
            It's allowed to specify multiple non-intersecting intervals.
            Values of interval boundaries are inclusive.
            </summary>
            <example><code>
            void Foo([ValueRange(0, 100)] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NonNegativeValueAttribute">
            <summary>
            Indicates that the integral value never falls below zero.
            </summary>
            <example><code>
            void Foo([NonNegativeValue] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.InvokerParameterNameAttribute">
            <summary>
            Indicates that the function argument should be a string literal and match one
            of the parameters of the caller function. For example, ReSharper annotates
            the parameter of <see cref="T:System.ArgumentNullException"/>.
            </summary>
            <example><code>
            void Foo(string param) {
              if (param == null)
                throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotifyPropertyChangedInvocatorAttribute">
             <summary>
             Indicates that the method is contained in a type that implements
             <c>System.ComponentModel.INotifyPropertyChanged</c> interface and this method
             is used to notify that some property value changed.
             </summary>
             <remarks>
             The method should be non-static and conform to one of the supported signatures:
             <list>
             <item><c>NotifyChanged(string)</c></item>
             <item><c>NotifyChanged(params string[])</c></item>
             <item><c>NotifyChanged{T}(Expression{Func{T}})</c></item>
             <item><c>NotifyChanged{T,U}(Expression{Func{T,U}})</c></item>
             <item><c>SetProperty{T}(ref T, T, string)</c></item>
             </list>
             </remarks>
             <example><code>
             public class Foo : INotifyPropertyChanged {
               public event PropertyChangedEventHandler PropertyChanged;
             
               [NotifyPropertyChangedInvocator]
               protected virtual void NotifyChanged(string propertyName) { ... }
            
               string _name;
             
               public string Name {
                 get { return _name; }
                 set { _name = value; NotifyChanged("LastName"); /* Warning */ }
               }
             }
             </code>
             Examples of generated notifications:
             <list>
             <item><c>NotifyChanged("Property")</c></item>
             <item><c>NotifyChanged(() =&gt; Property)</c></item>
             <item><c>NotifyChanged((VM x) =&gt; x.Property)</c></item>
             <item><c>SetProperty(ref myField, value, "Property")</c></item>
             </list>
             </example>
        </member>
        <member name="T:JetBrains.Annotations.ContractAnnotationAttribute">
            <summary>
            Describes dependency between method input and output.
            </summary>
            <syntax>
            <p>Function Definition Table syntax:</p>
            <list>
            <item>FDT      ::= FDTRow [;FDTRow]*</item>
            <item>FDTRow   ::= Input =&gt; Output | Output &lt;= Input</item>
            <item>Input    ::= ParameterName: Value [, Input]*</item>
            <item>Output   ::= [ParameterName: Value]* {halt|stop|void|nothing|Value}</item>
            <item>Value    ::= true | false | null | notnull | canbenull</item>
            </list>
            If the method has a single input parameter, its name could be omitted.<br/>
            Using <c>halt</c> (or <c>void</c>/<c>nothing</c>, which is the same) for the method output
            means that the method doesn't return normally (throws or terminates the process).<br/>
            Value <c>canbenull</c> is only applicable for output parameters.<br/>
            You can use multiple <c>[ContractAnnotation]</c> for each FDT row, or use single attribute
            with rows separated by the semicolon. There is no notion of order rows, all rows are checked
            for applicability and applied per each program state tracked by the analysis engine.<br/>
            </syntax>
            <examples><list>
            <item><code>
            [ContractAnnotation("=&gt; halt")]
            public void TerminationMethod()
            </code></item>
            <item><code>
            [ContractAnnotation("null &lt;= param:null")] // reverse condition syntax
            public string GetName(string surname)
            </code></item>
            <item><code>
            [ContractAnnotation("s:null =&gt; true")]
            public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty()
            </code></item>
            <item><code>
            // A method that returns null if the parameter is null,
            // and not null if the parameter is not null
            [ContractAnnotation("null =&gt; null; notnull =&gt; notnull")]
            public object Transform(object data)
            </code></item>
            <item><code>
            [ContractAnnotation("=&gt; true, result: notnull; =&gt; false, result: null")]
            public bool TryParse(string s, out Person result)
            </code></item>
            </list></examples>
        </member>
        <member name="T:JetBrains.Annotations.LocalizationRequiredAttribute">
            <summary>
            Indicates whether the marked element should be localized.
            </summary>
            <example><code>
            [LocalizationRequiredAttribute(true)]
            class Foo {
              string str = "my string"; // Warning: Localizable string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CannotApplyEqualityOperatorAttribute">
            <summary>
            Indicates that the value of the marked type (or its derivatives)
            cannot be compared using '==' or '!=' operators and <c>Equals()</c>
            should be used instead. However, using '==' or '!=' for comparison
            with <c>null</c> is always permitted.
            </summary>
            <example><code>
            [CannotApplyEqualityOperator]
            class NoEquality { }
            
            class UsesNoEquality {
              void Test() {
                var ca1 = new NoEquality();
                var ca2 = new NoEquality();
                if (ca1 != null) { // OK
                  bool condition = ca1 == ca2; // Warning
                }
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.BaseTypeRequiredAttribute">
            <summary>
            When applied to a target attribute, specifies a requirement for any type marked
            with the target attribute to implement or inherit specific type or types.
            </summary>
            <example><code>
            [BaseTypeRequired(typeof(IComponent)] // Specify requirement
            class ComponentAttribute : Attribute { }
            
            [Component] // ComponentAttribute requires implementing IComponent interface
            class MyComponent : IComponent { }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.UsedImplicitlyAttribute">
            <summary>
            Indicates that the marked symbol is used implicitly (e.g. via reflection, in external library),
            so this symbol will be ignored by usage-checking inspections. <br/>
            You can use <see cref="T:JetBrains.Annotations.ImplicitUseKindFlags"/> and <see cref="T:JetBrains.Annotations.ImplicitUseTargetFlags"/>
            to configure how this attribute is applied.
            </summary>
            <example><code>
            [UsedImplicitly]
            public class TypeConverter {}
            
            public class SummaryData
            {
              [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
              public SummaryData() {}
            }
            
            [UsedImplicitly(ImplicitUseTargetFlags.WithInheritors | ImplicitUseTargetFlags.Default)]
            public interface IService {}
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MeansImplicitUseAttribute">
            <summary>
            Can be applied to attributes, type parameters, and parameters of a type assignable from <see cref="T:System.Type"/> .
            When applied to an attribute, the decorated attribute behaves the same as <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            When applied to a type parameter or to a parameter of type <see cref="T:System.Type"/>,
            indicates that the corresponding type is used implicitly.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseKindFlags">
            <summary>
            Specifies the details of implicitly used symbol when it is marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Access">
            <summary>Only entity marked with attribute considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Assign">
            <summary>Indicates implicit assignment to a member.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature">
            <summary>
            Indicates implicit instantiation of a type with fixed constructor signature.
            That means any unused constructor parameters won't be reported as such.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedNoFixedConstructorSignature">
            <summary>Indicates implicit instantiation of a type.</summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseTargetFlags">
            <summary>
            Specifies what is considered to be used implicitly when marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.Members">
            <summary>Members of the type marked with the attribute are considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithInheritors">
            <summary> Inherited entities are considered used. </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithMembers">
            <summary>Entity marked with the attribute and all its members considered used.</summary>
        </member>
        <member name="T:JetBrains.Annotations.PublicAPIAttribute">
            <summary>
            This attribute is intended to mark publicly available API,
            which should not be removed and so is treated as used.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InstantHandleAttribute">
            <summary>
            Tells the code analysis engine if the parameter is completely handled when the invoked method is on stack.
            If the parameter is a delegate, indicates that delegate can only be invoked during method execution
            (the delegate can be invoked zero or multiple times, but not stored to some field and invoked later,
            when the containing method is no longer on the execution stack).
            If the parameter is an enumerable, indicates that it is enumerated while the method is executed.
            If <see cref="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait"/> is true, the attribute will only takes effect if the method invocation is located under the 'await' expression.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait">
            <summary>
            Require the method invocation to be used under the 'await' expression for this attribute to take effect on code analysis engine.
            Can be used for delegate/enumerable parameters of 'async' methods.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.PureAttribute">
            <summary>
            Indicates that a method does not make any observable state changes.
            The same as <c>System.Diagnostics.Contracts.PureAttribute</c>.
            </summary>
            <example><code>
            [Pure] int Multiply(int x, int y) => x * y;
            
            void M() {
              Multiply(123, 42); // Warning: Return value of pure method is not used
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MustUseReturnValueAttribute">
            <summary>
            Indicates that the return value of the method invocation must be used.
            </summary>
            <remarks>
            Methods decorated with this attribute (in contrast to pure methods) might change state,
            but make no sense without using their return value. <br/>
            Similarly to <see cref="T:JetBrains.Annotations.PureAttribute"/>, this attribute
            will help to detect usages of the method when the return value is not used.
            Optionally, you can specify a message to use when showing warnings, e.g.
            <code>[MustUseReturnValue("Use the return value to...")]</code>.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RequireStaticDelegateAttribute">
            <summary>
            This annotation allows to enforce allocation-less usage patterns of delegates for performance-critical APIs.
            When this annotation is applied to the parameter of delegate type, IDE checks the input argument of this parameter:
            * When lambda expression or anonymous method is passed as an argument, IDE verifies that the passed closure
              has no captures of the containing local variables and the compiler is able to cache the delegate instance
              to avoid heap allocations. Otherwise the warning is produced.
            * IDE warns when method name or local function name is passed as an argument as this always results
              in heap allocation of the delegate instance.
            </summary>
            <remarks>
            In C# 9.0 code IDE would also suggest to annotate the anonymous function with 'static' modifier
            to make use of the similar analysis provided by the language/compiler.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.ProvidesContextAttribute">
            <summary>
            Indicates the type member or parameter of some type, that should be used instead of all other ways
            to get the value of that type. This annotation is useful when you have some "context" value evaluated
            and stored somewhere, meaning that all other ways to get this value must be consolidated with existing one.
            </summary>
            <example><code>
            class Foo {
              [ProvidesContext] IBarService _barService = ...;
            
              void ProcessNode(INode node) {
                DoSomething(node, node.GetGlobalServices().Bar);
                //              ^ Warning: use value of '_barService' field
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.PathReferenceAttribute">
            <summary>
            Indicates that a parameter is a path to a file or a folder within a web project.
            Path can be relative or absolute, starting from web root (~).
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.SourceTemplateAttribute">
            <summary>
            An extension method marked with this attribute is processed by code completion
            as a 'Source Template'. When the extension method is completed over some expression, its source code
            is automatically expanded like a template at call site.
            </summary>
            <remarks>
            Template method body can contain valid source code and/or special comments starting with '$'.
            Text inside these comments is added as source code when the template is applied. Template parameters
            can be used either as additional method parameters or as identifiers wrapped in two '$' signs.
            Use the <see cref="T:JetBrains.Annotations.MacroAttribute"/> attribute to specify macros for parameters.
            </remarks>
            <example>
            In this example, the 'forEach' method is a source template available over all values
            of enumerable types, producing ordinary C# 'foreach' statement and placing caret inside block:
            <code>
            [SourceTemplate]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; xs) {
              foreach (var x in xs) {
                 //$ $END$
              }
            }
            </code>
            </example>
        </member>
        <member name="T:JetBrains.Annotations.MacroAttribute">
            <summary>
            Allows specifying a macro for a parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>.
            </summary>
            <remarks>
            You can apply the attribute on the whole method or on any of its additional parameters. The macro expression
            is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Expression"/> property. When applied on a method, the target
            template parameter is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Target"/> property. To apply the macro silently
            for the parameter, set the <see cref="P:JetBrains.Annotations.MacroAttribute.Editable"/> property value = -1.
            </remarks>
            <example>
            Applying the attribute on a source template method:
            <code>
            [SourceTemplate, Macro(Target = "item", Expression = "suggestVariableName()")]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; collection) {
              foreach (var item in collection) {
                //$ $END$
              }
            }
            </code>
            Applying the attribute on a template method parameter:
            <code>
            [SourceTemplate]
            public static void something(this Entity x, [Macro(Expression = "guid()", Editable = -1)] string newguid) {
              /*$ var $x$Id = "$newguid$" + x.ToString();
              x.DoSomething($x$Id); */
            }
            </code>
            </example>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Expression">
            <summary>
            Allows specifying a macro that will be executed for a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>
            parameter when the template is expanded.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Editable">
            <summary>
            Allows specifying which occurrence of the target parameter becomes editable when the template is deployed.
            </summary>
            <remarks>
            If the target parameter is used several times in the template, only one occurrence becomes editable;
            other occurrences are changed synchronously. To specify the zero-based index of the editable occurrence,
            use values >= 0. To make the parameter non-editable when the template is expanded, use -1.
            </remarks>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Target">
            <summary>
            Identifies the target parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see> if the
            <see cref="T:JetBrains.Annotations.MacroAttribute"/> is applied on a template method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC action. If applied to a method, the MVC action name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcAreaAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC area.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcControllerAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is
            an MVC controller. If applied to a method, the MVC controller name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcMasterAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC Master. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcModelTypeAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC model type. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcPartialViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is an MVC
            partial view. If applied to a method, the MVC partial view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcSuppressViewErrorAttribute">
            <summary>
            ASP.NET MVC attribute. Allows disabling inspections for MVC views within a class or a method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcDisplayTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that a parameter is an MVC display template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcEditorTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC editor template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC template.
            Use this attribute for custom wrappers similar to
            <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component. If applied to a method, the MVC view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Controller.View(Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component name.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component view. If applied to a method, the MVC view component view name is default.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionSelectorAttribute">
            <summary>
            ASP.NET MVC attribute. When applied to a parameter of an attribute,
            indicates that this parameter is an MVC action name.
            </summary>
            <example><code>
            [ActionName("Foo")]
            public ActionResult Login(string returnUrl) {
              ViewBag.ReturnUrl = Url.Action("Foo"); // OK
              return RedirectToAction("Bar"); // Error: Cannot resolve action
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RazorSectionAttribute">
            <summary>
            Razor attribute. Indicates that the marked parameter or method is a Razor section.
            Use this attribute for custom wrappers similar to
            <c>System.Web.WebPages.WebPageBase.RenderSection(String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessAttribute">
            <summary>
            Indicates how method, constructor invocation, or property access
            over collection type affects the contents of the collection.
            When applied to a return value of a method indicates if the returned collection
            is created exclusively for the caller (CollectionAccessType.UpdatedContent) or
            can be read/updated from outside (CollectionAccessType.Read | CollectionAccessType.UpdatedContent)
            Use <see cref="P:JetBrains.Annotations.CollectionAccessAttribute.CollectionAccessType"/> to specify the access type.
            </summary>
            <remarks>
            Using this attribute only makes sense if all collection methods are marked with this attribute.
            </remarks>
            <example><code>
            public class MyStringCollection : List&lt;string&gt;
            {
              [CollectionAccess(CollectionAccessType.Read)]
              public string GetFirstString()
              {
                return this.ElementAt(0);
              }
            }
            class Test
            {
              public void Foo()
              {
                // Warning: Contents of the collection is never updated
                var col = new MyStringCollection();
                string x = col.GetFirstString();
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessType">
            <summary>
            Provides a value for the <see cref="T:JetBrains.Annotations.CollectionAccessAttribute"/> to define
            how the collection method invocation affects the contents of the collection.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.None">
            <summary>Method does not use or modify content of the collection.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.Read">
            <summary>Method only reads content of the collection but does not modify it.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.ModifyExistingContent">
            <summary>Method can change content of the collection but does not add new elements.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.UpdatedContent">
            <summary>Method can add new elements to the collection.</summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionMethodAttribute">
            <summary>
            Indicates that the marked method is assertion method, i.e. it halts the control flow if
            one of the conditions is satisfied. To set the condition, mark one of the parameters with
            <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionAttribute">
            <summary>
            Indicates the condition parameter of the assertion method. The method itself should be
            marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute. The mandatory argument of
            the attribute is the assertion type.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionType">
            <summary>
            Specifies assertion type. If the assertion method argument satisfies the condition,
            then the execution continues. Otherwise, execution is assumed to be halted.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
            <summary>Marked parameter should be evaluated to true.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
            <summary>Marked parameter should be evaluated to false.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
            <summary>Marked parameter should be evaluated to null value.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
            <summary>Marked parameter should be evaluated to not null value.</summary>
        </member>
        <member name="T:JetBrains.Annotations.TerminatesProgramAttribute">
            <summary>
            Indicates that the marked method unconditionally terminates control flow execution.
            For example, it could unconditionally throw exception.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LinqTunnelAttribute">
            <summary>
            Indicates that the method is a pure LINQ method, with postponed enumeration (like Enumerable.Select,
            .Where). This annotation allows inference of [InstantHandle] annotation for parameters
            of delegate type by analyzing LINQ method chains.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.NoEnumerationAttribute">
            <summary>
            Indicates that IEnumerable passed as a parameter is not enumerated.
            Use this annotation to suppress the 'Possible multiple enumeration of IEnumerable' inspection.
            </summary>
            <example><code>
            static void ThrowIfNull&lt;T&gt;([NoEnumeration] T v, string n) where T : class
            {
              // custom check for null but no enumeration
            }
            
            void Foo(IEnumerable&lt;string&gt; values)
            {
              ThrowIfNull(values, nameof(values));
              var x = values.ToList(); // No warnings about multiple enumeration
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RegexPatternAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a regular expression pattern.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InjectedLanguage">
            <summary>
            Language of injected code fragment inside marked by <see cref="T:JetBrains.Annotations.LanguageInjectionAttribute"/> string literal.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LanguageInjectionAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is accepting a string literal
            containing code fragment in a language specified by the <see cref="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage"/>.
            </summary>
            <example><code>
            void Foo([LanguageInjection(InjectedLanguage.CSS, Prefix = "body{", Suffix = "}")] string cssProps)
            {
              // cssProps should only contains a list of CSS properties
            }
            </code></example>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage">
            <summary>Specify a language of injected code fragment.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Prefix">
            <summary>Specify a string that "precedes" injected string literal.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Suffix">
            <summary>Specify a string that "follows" injected string literal.</summary>
        </member>
        <member name="T:JetBrains.Annotations.NoReorderAttribute">
            <summary>
            Prevents the Member Reordering feature from tossing members of the marked class.
            </summary>
            <remarks>
            The attribute must be mentioned in your member reordering patterns.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the type that has <c>ItemsSource</c> property and should be treated
            as <c>ItemsControl</c>-derived type, to enable inner items <c>DataContext</c> type resolve.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemBindingOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>BindingBase</c>-derived type, that
            is used to bind some item of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemStyleOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>Style</c>-derived type, that
            is used to style items of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlOneWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>OneWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlTwoWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>TwoWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteTemplateAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a route template.
            </summary>
            <remarks>
            This attribute allows IDE to recognize the use of web frameworks' route templates
            to enable syntax highlighting, code completion, navigation, rename and other features in string literals.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteParameterConstraintAttribute">
            <summary>
            Indicates that the marked type is custom route parameter constraint,
            which is registered in application's Startup with name <c>ConstraintName</c>
            </summary>
            <remarks>
            You can specify <c>ProposedType</c> if target constraint matches only route parameters of specific type,
            it will allow IDE to create method's parameter from usage in route template
            with specified type instead of default <c>System.String</c>
            and check if constraint's proposed type conflicts with matched parameter's type
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.UriStringAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is an URI string.
            </summary>
            <remarks>
            This attribute enables code completion, navigation, rename and other features
            in URI string literals assigned to annotated parameter, field or property.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.CodeTemplateAttribute">
            <summary>
            <para>
            Defines the code search template using the Structural Search and Replace syntax.
            It allows you to find and, if necessary, replace blocks of code that match a specific pattern.
            Search and replace patterns consist of a textual part and placeholders.
            Textural part must contain only identifiers allowed in the target language and will be matched exactly (white spaces, tabulation characters, and line breaks are ignored).
            Placeholders allow matching variable parts of the target code blocks.
            A placeholder has the following format: $placeholder_name$- where placeholder_name is an arbitrary identifier.
            </para>
            <para>
            Available placeholders:
            <list type="bullet">
            <item>$this$ - expression of containing type</item>
            <item>$thisType$ - containing type</item>
            <item>$member$ - current member placeholder</item>
            <item>$qualifier$ - this placeholder is available in the replace pattern and can be used to insert qualifier expression matched by the $member$ placeholder.
            (Note that if $qualifier$ placeholder is used, then $member$ placeholder will match only qualified references)</item>
            <item>$expression$ - expression of any type</item>
            <item>$identifier$ - identifier placeholder</item>
            <item>$args$ - any number of arguments</item>
            <item>$arg$ - single argument</item>
            <item>$arg1$ ... $arg10$ - single argument</item>
            <item>$stmts$ - any number of statements</item>
            <item>$stmt$ - single statement</item>
            <item>$stmt1$ ... $stmt10$ - single statement</item>
            <item>$name{Expression, 'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$expression{'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$name{Type, 'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$type{'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$statement{1,2}$ - 1 or 2 statements</item>
            </list>
            </para>
            <para>
            Note that you can also define your own placeholders of the supported types and specify arguments for each placeholder type.
            This can be done using the following format: $name{type, arguments}$. Where 'name' - is the name of your placeholder,
            'type' - is the type of your placeholder (one of the following: Expression, Type, Identifier, Statement, Argument, Member),
            'arguments' - arguments list for your placeholder. Each placeholder type supports it's own arguments, check examples below for mode details.
            Placeholder type may be omitted and determined from the placeholder name, if name has one of the following prefixes:
            <list type="bullet">
            <item>expr, expression - expression placeholder, e.g. $exprPlaceholder{}$, $expressionFoo{}$</item>
            <item>arg, argument - argument placeholder, e.g. $argPlaceholder{}$, $argumentFoo{}$</item>
            <item>ident, identifier - identifier placeholder, e.g. $identPlaceholder{}$, $identifierFoo{}$</item>
            <item>stmt, statement - statement placeholder, e.g. $stmtPlaceholder{}$, $statementFoo{}$</item>
            <item>type - type placeholder, e.g. $typePlaceholder{}$, $typeFoo{}$</item>
            <item>member - member placeholder, e.g. $memberPlaceholder{}$, $memberFoo{}$</item>
            </list>
            </para>
            <para>
            Expression placeholder arguments:
            <list type="bullet">
            <item>expressionType - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myExpr{Expression, 'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            <item>$myExpr{Expression, 'Namespace.FooType'}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type or expressions which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myExpr{Expression}$ - defines expression placeholder, matching expressions of any type.</item>
            <item>$exprFoo{'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            </list>
            </para>
            <para>
            Type placeholder arguments:
            <list type="bullet">
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myType{Type, 'Namespace.FooType', true}$ - defines type placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            <item>$myType{Type, 'Namespace.FooType'}$ - defines type placeholder, matching 'Namespace.FooType' types or types, which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myType{Type}$ - defines type placeholder, matching any type.</item>
            <item>$typeFoo{'Namespace.FooType', true}$ - defines types placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            </list>
            </para>
            <para>
            Identifier placeholder arguments:
            <list type="bullet">
            <item>nameRegex - string value in single quotes, specifies regex to use for matching (empty string by default)</item>
            <item>nameRegexCaseSensitive - boolean value, specifies if name regex is case sensitive (true by default)</item>
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myIdentifier{Identifier, 'my.*', false, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (ignoring case) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$myIdentifier{Identifier, 'my.*', true, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$identFoo{'my.*'}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix.</item>
            </list>
            </para>
            <para>
            Statement placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of statements to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of statements to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myStmt{Statement, 1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            <item>$myStmt{Statement}$ - defines statement placeholder, matching any number of statements.</item>
            <item>$stmtFoo{1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            </list>
            </para>
            <para>
            Argument placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of arguments to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of arguments to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myArg{Argument, 1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            <item>$myArg{Argument}$ - defines argument placeholder, matching any number of arguments.</item>
            <item>$argFoo{1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            </list>
            </para>
            <para>
            Member placeholder arguments:
            <list type="bullet">
            <item>docId - string value in single quotes, specifies XML documentation id of the member to match (empty by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myMember{Member, 'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            <item>$memberFoo{'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            </list>
            </para>
            <para>
            For more information please refer to the <a href="https://www.jetbrains.com/help/resharper/Navigation_and_Search__Structural_Search_and_Replace.html">Structural Search and Replace</a> article.
            </para>
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SearchTemplate">
            <summary>
            Structural search pattern to use in the code template.
            Pattern includes textual part, which must contain only identifiers allowed in the target language,
            and placeholders, which allow matching variable parts of the target code blocks.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.Message">
            <summary>
            Message to show when the search pattern was found.
            You can also prepend the message text with "Error:", "Warning:", "Suggestion:" or "Hint:" prefix to specify the pattern severity.
            Code patterns with replace template produce suggestions by default.
            However, if replace template is not provided, then warning severity will be used.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceTemplate">
            <summary>
            Structural search replace pattern to use in code template replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceMessage">
            <summary>
            Replace message to show in the light bulb.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.FormatAfterReplace">
            <summary>
            Apply code formatting after code replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.MatchSimilarConstructs">
            <summary>
            Whether similar code blocks should be matched.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ShortenReferences">
            <summary>
            Automatically insert namespace import directives or remove qualifiers that become redundant after the template is applied.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SuppressionKey">
            <summary>
            String to use as a suppression key.
            By default the following suppression key is used 'CodeTemplate_SomeType_SomeMember',
            where 'SomeType' and 'SomeMember' are names of the associated containing type and member to which this attribute is applied.
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 3763B8F68CF0FF1BD3F4E64AC5F90B19 | sha1: 3F759E5D9CA8B6C74CD40F24CAF3BD72D4459399 | sha256: 70EEF6EA6B3FD09E25AFB3106DC4D3D48221F69376506F0A0E8C4758832D8C97 | sha512: E18A6BAD61EF63B2AFA37646734820AE06DC28B0EBEEDEC791B66140839A083E65FCC2B557BD70FE5A3807FBADFBEF0C06530FDDE2D2BF0A744866300C6BA1C7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 444500BCCF62BF500FD5D7FA15F9B4F7 | sha1: FDF40EA9DD2F763B659F1657782B2F214DF9C248 | sha256: 1CF03D3C15327A2BE1EFF501481C229BA4479F03087982B6DCF82A362F2CC1CD | sha512: A9B225B12B170A85F5F1B033C4D14E9DBAABB3C5505ECFB8CBB619D8BDD839FD8A8AA461173BC0773D8CEC50B23E787FAFAF50E14BD226E12D274FF3AF189CF8
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Client.resources.dll
md5: 8EDF8ABA1AA6E1713177275B3D9354DB | sha1: FFC4F4B3354FEB9B302C1460591B5EAE0B8CC794 | sha256: 035CDADDAE39C99B8E614002A1B0A9DF033C501E576C2042A51FDF20CC3A16B0 | sha512: EBB73C8C2A0C8D038D7389D57B280A3459A50776E941591A4D5B23AF996B73CF88C3D3E205559DED9DCF09308A06C8C60C07F299779DB94E9CE03400744786A9
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Common.resources.dll
md5: 160E3BA35F05C9487453DFF59DB4AC23 | sha1: FB0859A495148E8DE5CAA1FF184ED91D8AA94F98 | sha256: C02F7F0A40C5E22DB15F4E6FBB098E428316369E207596A1495F3F84D86A074B | sha512: 905893028678C29DBEAC7083A1A8D0E497287E2CC30A5E96C27FC7BFC83806F314889F392E65BECA9FDF8E105747A70E59355735BA26E92716D6048BCF2D2572
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 67FE5954145F767C20A152741C43D113 | sha1: 4288C3035391E3A0AB88508718C633EAB5A67FC3 | sha256: C02CA3E816641765B9C779D15277A5C81FE3CFA4BBEDFA0D3BD75E2D9B4C80EB | sha512: B7BC042A9409D5750988EBEE4B89E1BFE41F2088087818A878DE73B606E8097B1DF3EAC39757FA9CAF9D3606C8BA28D18A29A6BB02F408BB117E072DF36910EA
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: AB0A03B2BCA49DD105FCA9C9F9F0F889 | sha1: 33986840DD18A5A0E4BDC523DFD272871E4F873C | sha256: 768F47CD2BEAE602549E1484DE50CEF4A63DDBC4B9111DBFA272F9B12476DABE | sha512: C33072D0A0B0DF899CE46327B465D547B517E535B828D775A98F04D71E51B540E4CA9709652E25459BAEB6525EDC0D486361CA0BEDF98D775D6C64F50F8EDEBA
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: BF7CD4F65BD29056A829676C228CF2E6 | sha1: E5C6B1BD54915E94DB7E0C0B40BB8C50F63F4159 | sha256: 7E6FAEA3392289F65E44DEE628EDE875D6765B181FB1037F1231A31DA71624C3 | sha512: 5AFF2058830F441FBEFF70D21E6C0F80B75722731BC8A5FB4C3D315F2C7831392F36979F7AA1AFB53E46022F8EE609C287A34CFB0E71C1458181E22DB346791C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: C95429078C81BCA2CB52BACABBA9729D | sha1: 47EF2FE510B4F7B72779ADEBD787EBEC8391B968 | sha256: 5A4A0699C1035D16559F9349776F99B5BD1A873067F2ACB401F36DF9D9A987A7 | sha512: A9CFD4B38572CABD3454C0FA05350C32C67482AD2FA47A99E94AA2092F45A8B7B82E8B5AF6A03D5A9776D5CDDFF73AB9A7A3326D02CA145E4CC486DFA511D71A
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 48D8E083E51F9D1E3BD75924C5B2838E | sha1: 9827A1EAC9482748330040425C7F78E2DF4A710E | sha256: 4F487BFEA1F7F1D4F9F597294377C35159FD3926E51661D9CFEC8F15EFD61A19 | sha512: 9DCF10150EA1CA7E56279FACB4343F1AC822EB92CC943CCFB8AE55ECE5DFC37B5EC52E9CB67AA49A10E2A141D860580FB5D71E354110FB0B41AA81CA30DD505E
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 70B92AC247B9D8AD3CE77A28AAEFE945 | sha1: 4C6110B2199CD7EC31EBB6F0401911AA7CC3D0ED | sha256: 3ADCEC3784ADE1B153282698C3DE9E8EC02B29A691D8167B851044CF23C4AA55 | sha512: 55E1E610DF4D0F4DF9B0A1FBA8D9F4F93900399156A70D783E6146022567A1CC2538BDCE214056BB974E149CF8FE266202EB47045D59C4A8BD3B4D10EBF2306B
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 7CF672818895DAA93646E132A1408766 | sha1: AE27BA089F6E3A88B33F7BA0737AED003E1A41FD | sha256: 212B6AB2372050061C14FBD9A05C02092040F673D63982B0C9B61408711B97E6 | sha512: 97904705C29757ECC72675E52D454B90307F5B0A5EC86C4E3F1D75E6F740814A8629644616B6B9CFD8123FBC4ACC7EB00C9A9EE87D46426125105F620C363495
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 7ADBA620F39A376B75CB357A2FA20A69 | sha1: 6D1A1554EDD60076169851A51AA29148F25BAE16 | sha256: 14EB128200E4F67B969D7F56037014CB2CB61A00682E742DF8D131A45FA4F7B0 | sha512: 37E51F761CD09D464E13318812C50B138508261812DBACF8B652161E4501FFBC9C07B650DF6881CBBE717A82E3CC49BBB45AB389E14EAEB14D792C9DF389590F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 79AE72D7C6F0613DDC2C766FF867A17D | sha1: A182E242AC1A8FE320DE96F8BBD8FACAFCFE4187 | sha256: 3FEAC5A5042FEB63531141CF4D07290BD7C8A2D21BF9C3C22B68EB41A8CB62FF | sha512: 8CD477AD71807A41108C807FA2544CB6532953CDF4B9237B31998BEE075ED15CF5E0C891B623CFADE9C82F0C6092B9FD7CAE31F109933B9D798021FE26BA3850
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: F87C97C4FCF19982FD2710C027C5E49C | sha1: 619DE02B08506B754BB848BEB4E903494D51F6B7 | sha256: 003CC473F3E46960088FEA5881AF766D4C6CCDC6FE4ADC838D9503239B644E6B | sha512: 3E8FC13C1C8077F2B6840D708926754029D33AB070E234C6D27F9B2A086530A5BEA4773E949E007DCBD396EFCC8D964E73BA9C1C44559C939BEF4DE5A1B86B18
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 384C5DBB3CE48FFF9672E94B041722B9 | sha1: E05691125E61B1B6E92438769DA780149CC8FCAE | sha256: CD4863CA6249E3BA012A7D86B3D1D751C465C70543929C013DDD207A42739A67 | sha512: F34900FB4E4B29650F278601369AD8EA5B16E98826B9022D78929E605A436B528894307AA6D27ED7EE4CDA83E6ECFB6763D6C34DD1738F50C1BF388A6B76C46B
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: F51310662B1A82E77F80D940BE4E4477 | sha1: 9DFC542DE8B82667CC04611868B52FA46EFE99F5 | sha256: 5A4FEAFBFA6A7E252E594FA6F32AE6CC4F8659CE7908424B32B08A823AE0CF61 | sha512: 7F9F46FF21EDA3CE7F7C8571A66F5DACA85090D19834E6BCF98C72CCFE4BEA4BC9BB82F73527484B1571725CCFEE97879228537F827751276A299C466906481F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 032668E7B98A6752819EE8CFDFE6A714 | sha1: DC25F47468FEF67616CA68A8DD0B07E6EE5EA0F3 | sha256: D5387803E84C6AA4A028AC404CDACE5102A02AF89771203B1D2A10995F4CF4B9 | sha512: 37E93F34C2E9C083335E2AA807A0F6796B7FFFBBA77C88EE2819174D20B545BE7BFF9CE939D912A23C0EF77F9C4EFDB1933B492F571600886ABB769CA60A3D98
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 4F91A577C65F92D94D870FAE08B6C629 | sha1: BBD02C1F02A7E015D8AEDEC7672B8B053107665B | sha256: 9002CF5A7F4C3C89B0B29E6DC8A0401C48A1A4C8EC6AD38672ADDC50E7DE04E3 | sha512: 612850129D61CFE233AFC075B5D2370679D24CD0A664FB5D26F90E997211929BBF9C0A64FEB875CAD3E518633B88F6C4BE9649FC56F763544B29DC9A4F7692CB
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 1CCAFF4CB5CC981C14853415D9EAB098 | sha1: C41EBB61A7863D234A18FF6FBFFD032AE41C671C | sha256: 678F9CF629DB029FFC40E63222B99F82372D9559181ABB6EE06F2B1E9655381B | sha512: B45794EA76F8D9A196B4658AA7037DD290466428FE941E07EA14669E96E509EC0614FCB34D4684BB9F5B502D2A176021A07537D5230E295BA048484F324AD188
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: C6746A2B28884CCFD5129A2D1AB13083 | sha1: 46AE6D2E28E406A2503E9ACD175C0B3084D60724 | sha256: FC5F7F8A00B2C2354538534CF2DD14F4A03A825038E1CC998AF371C0ACE0C80E | sha512: 43C4058330A319FA1CD5FD260DAF2D89C805E607C8AC37DA58C08C8CE8B341CEF388D51707C579FF6C94685E0DCFE4C34A2697683A122BBAD8BF2CB9149E027C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: D94266659A0584FE4624AFFAE249A0B0 | sha1: BE804AE46D58523475662B7201B30F511238A07F | sha256: D95182960793E5525AC57A7CB6296581C5C52E66474B318BB3C137CB3593242F | sha512: 14092A252B0517F758C2E689FE03D59EC306ABAD0D42FF6CED72C6F71DE04FB213FA315B3F85F8D361B43B7850F64ABC1528BB527EC20B0DA52AC7619E2FC0C7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 1B314B569EFE2C7D007FD5E7C645C3E6 | sha1: 28FA472BFF9E12ECC4BC4235B3F6C38E6BFDD732 | sha256: 7813FA543202EED4E79915D7B2ECA7D53084C43F3B2A0FD8F7438CD0EA434C70 | sha512: 8947C931C54D670666BDBF7E69DD753AF30DA327B333350751EA5BA6429D4D612ACD0D48E226728B4973C0ED6B80111558FFDCE4363F3A39F00312038C9CC12F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 6BC0336401AD219757E6098B7C2C63D5 | sha1: FDEAED62D103739B8C8DECDF77E8DBDB5A90D507 | sha256: 053406D432A635F34813E545E56B882C0D932E59723D502065DA1F61B1896805 | sha512: 98831589CDB589949B27E8422066E5851A3673CD93CE5FF0763C99B6A5361B7F71F845F9920EEEB9B0D8EB84E1966FD0591D59E4A60A6CFC3022292047AA6E25
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: EF282A6DB0965193619D28FD84AF9D54 | sha1: 1748037BE4E5CF4B419B27EB143376A317E3661E | sha256: CCAE5EAE70A97A558B54AF791FBB9F6BA5268CA4F5170C8339F806834F07BCE7 | sha512: A44C8B27DF4B9A098D0EC66A565819800FCFA172A470C78B2D8E9571E409F691A1B3EC8D8B8291C1CB74D1C569D79EF7E6D947E83AD9CD875C886615A4F95F2B
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 6AC7FB62C87070A770CBC848413462E1 | sha1: E3EB535BC9C302FA382946CCCAB9F064D912679E | sha256: 54B66B6CB95A88CFDD3CF1F0F9EE49DCF38502649BDDF9DB4AF21A22482EA2E6 | sha512: D73431C97692CFCDC5BD83D7A68CF27716850D61D937257E7F4640BE1835F43CAA162D65E45A4CBAA9ECD4816FB6149DD9768436F0687432F6835E442F268F04
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: E28D7D75F0562038F309B24458959428 | sha1: B4A3E99F0DBFBA551ABCFC001F84460B9EB2E39C | sha256: EF1051E08082E9985DE59037D04BB4656271FBD9222619590FD707C8712E4820 | sha512: 7A6878297BA6DC1913A2E9E3E264778375BDBAE7E077B7DD057E31254F6548BA15614A14742D88BFE4F4DCB2D57089AA6A6FC1F5CA929661834426308DB4310E
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 7405C9DE1745A8F0AB753365F98A5B51 | sha1: 07702E1F894AFC44ACE86E0FE1BC765AD48AE79A | sha256: 9922881F0D36136113DF3BD90B067D9C3258FEC3287F33470EAE35BCE08C319A | sha512: 5DCED91A1F20052457D6DEA990E4AAED4FACBD3BEDBC4A408CBE9CD55792D3ADCE11AB58FCABB875C30DFC29EF5583B2535B474E61409E5862CC3CA44EC2CACA
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 7A24BE802110CDA989E68113ED7F7178 | sha1: 2F9D9D04562FE5D195D2BDEFEC674E41C5BED5C0 | sha256: 341D5336143285005BD455B4DC7176B0E18220929D80FF7D68F8116E4D40AC45 | sha512: 4B3FCC8CD792BC7B0675AEF5F087C6CB44ED94A640633B1EBDB6A7728D3CCF0452C639239BFE578A335FF984182A5E88B8899193E68210CAF3256BDECF4AA056
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: E00AD59CE134A31AC609F5B39DB5B56F | sha1: B8EAE6304B55654C80A8CD5BADFECCEF7B8949EF | sha256: 37803B981D3B4FDFB70DA920FECF26B432062C1F125A13389AB4FDCC1C05F64A | sha512: 6F6954B9378F4CBEF6BAACBA6B2ADDC4A52A530D1AB3A49D012B424A3B0D861857EFA6AD187E00554D2A35BE8835ACAAA59C25B99F423CBCF1F63B5A577BF8F0
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Client.resources.dll
md5: 612386AA49845482630700885DB37E90 | sha1: 8E93246E29009ECC10DBAA5E8D13AA5AF75E8D9A | sha256: 956F008A85A3ACAEC74ADF5F0C3F0991A83D46059D06B3B66239F5452D4DA76F | sha512: 7F6E85F1CBD4A0073F19283EA3E56210703A2C90D877C1B5B4430F75632EE0D613D3B7C6053D6D0C5DD6EC447D7AF9629C6035895A01819778CA17FDD710FCF0
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Common.resources.dll
md5: 80583B86536D199CF5D9649678EB1558 | sha1: AFF52E0FBE9173ACC576BF320675CABCE2F7F9C3 | sha256: 3BBF2725B612B52E64A6697F030014B36B7E6679849C0258A2C526211B96DF9E | sha512: 37BE4ADC2AD970351200EE9FD7240C9ABD1C9A7B020FAE6C6D289192A22B4805A19672EB189BC563191A57A2B453009D98C5795B69E65449B6605BE40771D14D
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 7D612957D7AE8847877AF2519A7114CD | sha1: 65DDC38FC290907F4D9D3AA3E3D965585FA36316 | sha256: C27A9AC89F28C2A0F42547C41A64145607E56490EF579EE351610AB524F22AA8 | sha512: 8EA85E09FD3D11F91894B5938D813D4998A9F27690F756F2885F090FAAB309F9848B87528C143CC219517873207A2FB14F130A99D7CE36F1617018F21B5D791B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 95549940F627707AFA8469805A9FE70B | sha1: 2EEB66058C15DD249A2F9CC200B215F99026D573 | sha256: 2E4578B6FB488FF2D83D79E10F9A1A8E71A26BFBAED13DDA417A46538CCAD1AA | sha512: 3D9D0BC86260275F6222D9D4805AAFB46FC7F17068BF297276012DB7F3C0E32844304D6CEE04586E6A1815392A78C29B1C4D8FAD583ACB1AAF21352A2D7FB59F
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 6E0368142AF69F3C3BED285AB0788539 | sha1: 41F2696B6D662B5539ADA39DBB1345E71C5C9387 | sha256: 5D077353A0E9C793555C7700153E7123977344949F1DCFDD39D1963DBED13A81 | sha512: 779743647DD60CB3FE5B50A253D50C4D157F775E7E392EF12478E5B95492195220CF212C9544A62AE2C700E7E9F6D2E6AA7293C9D827338CC2428E6E68A36B83
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: EABFBCBE1CC00CCF97E2811E1F264887 | sha1: 91BFD683E64502EF8AB8E51ADD3CCEE6F676ED6A | sha256: 15A9794666F75FB73DEB0B1BE7EE2FF4F3B741E9AC2DF5FE0F37146739A4FF02 | sha512: 67CF3C628DC00F43EB4C78DE9CF84FDE0FFE991C5FD650206056FF948798210AC43C019E8EC70E84CD8FDBFD4A06A59F877745E135C4B292168A5D5085731AD3
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 33D77149DE74DB3E42B5A80E5EA6F74E | sha1: D2246546A94E529BA12CA10DA43FC8D29311BFDB | sha256: A47DE40391197C6F6BBAFF4AA212A37CB27A73170557B6B0FD5B8DE3F4931589 | sha512: 5C184D4865453BD9223B9A298B819DE1EB7EC15210CCC537CFD0EE2EB5F1766A07C6465CD35DC1E55D5E1A806D70DBFAA8ABF3C80B6E0A11978D951A1EA17EDD
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 506BD6DEE5A22767E41A6E74794788EE | sha1: 225333A1422D8A75D8EC87EA1756931352D7D6A7 | sha256: 515DD467FE420D793A6DD0DA4040E20FB7931CE18EF9167A0458BC8451736631 | sha512: 0621FF0BA18321655CAD736461A4D4D3655A16C46249FE393CEF251DAC635E1DFF70839AB74B8F6CE785544385CF5B589815EA103C94C2279B9C08E20A94747A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: BF60175B5CF39A586DE1083930505352 | sha1: D8A0FC0EBC38CB3CF0FAC2783F5D4ACF409E5E64 | sha256: C2DADF1B523D966D2DBDA5A5508034D79BD9B5F2B3D3C568401EECA9C4B1F4C5 | sha512: 1AA08F2B4591D5DE272C43062A2799123B50891C0EB5D51C67CA47E4414F11805857628C5B89587CD5E551318FB84D9E2AEA324E6F458B4D4D47564CBE5CC556
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 678A80D35813A12BE4F561401F628659 | sha1: 8CD1DEE60644B06495B3CB097BBB1B2F36B6CDC3 | sha256: 0E219027F3D1DE8788C020E99059C8351283B7AE24AA6D752773E797D7791E50 | sha512: 5DEC0EA6B4417AB4E2BCED052CD294FDF0C83EE23EB36232E9160273AF777D08D44EE97FA46441AF26557ADE47C035CB652DC05145C235196A19B69F0AB2F87E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 2FC52B93E4F6A605A8E78C7289B723B9 | sha1: DF43F8989221EA0A8566C4136158125EBC4E67A7 | sha256: 3EFF29C3527BF84E2226D7CD46E8BA2F0E24E05BE891DDF08C069A767C86C7F2 | sha512: 6AC65DA92DF09AF5EA300FBA54AEE0624C5445044D4CCAE34D449EFA959F096405975EFB79F5D8203F2A8D8361C7F8A532E10E82F076CFAF8AC609A726F92CDD
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: F6B2C6978B154837F5816F4EDEBE9989 | sha1: 5A2D2A3C4258A26D7374946E7FE605E0365292CE | sha256: C1B1A2AA96633AA9D5C875C8228DA31C217AA992298B121CB6F5DA1F11544843 | sha512: 7909E2EE82B4D80DE8305A36DE03D49FC72B41F6C7CB4EFF97185CB464F5720BCA278D8640C29CCE92502EB0A5395AA8F3252DD7D299688FFB43BC073EF9380F
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 3AB3125FFA9156596EBB485FC3D585A8 | sha1: 8F99BB130EACF0E4CAD69585357A38C2B96A6285 | sha256: 0595FAACD2BD3C2FD6BDAB0F4A286856D4EA60DB74DE003FD066F53AE22C4A4F | sha512: F2415AA81E55D088A44A343BE6FD92EB9083816797A8C94A62DFB7052E93324F468301EBE1D6DDCCDFC6A26272EA0CA53A1202095A2FF3AA0A78638610A58FE7
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 2AB763E9D58E2854C159D3B42CC4E12D | sha1: AE08AAE46EBE3D46071EF5F720179A077F4CC965 | sha256: 0A8815A3046ED382D0373942EFE7F6B43AAC78757A67B858C0C1B6ADB575E6E0 | sha512: 4919D4F7CCC18C05F7F7DF45474E1D09AFFEBFF9380E3DA592A30AF97ADD90CCD66605EC261C4594CBF9B8C7409F6D2A6C2C42A11368BB106D37C5E0160248A3
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: ED9943DC2AB3005BD92AED40E7E3EB95 | sha1: 3C08F04B5030FD468CF4D3EFFAAADE69C83D1B23 | sha256: 839A2E636F8DC941C6754A16CA882A70B5BD7659BCFAA6951C7CCB9AF84F5A43 | sha512: 93676910578CCBDFBC74B6C76DDA8361B35757DB243D07C0764006E591719171E31F5BFBB4D5BECB5592F09A09E1A8F43C448290C2B9AADE56DA9E34C6234BCB
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 1CB27DB7E17002AD8B10FDBEE871180B | sha1: 98E458E0344592B535669B2316E4388AE29365DB | sha256: 8AAF990D88D68611C5E79BFBCE962CA1E29F0B3EFC490C77268964E8436CDE10 | sha512: 6E303988AE41F0E69CC112F2709C06761D517B51A65D58A3D53205462B759B0E7991852CF1DDF57FC3FBD845A1FFA5E6EEA81292E7F5FFD7E5243E97206A5D0A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 2086D2545931AEC515C271BECF7EDDDD | sha1: 3BFA7E16CF0DFD91DB358C05D94ADD1D2184E40B | sha256: D3770BEC9AA6F1501BB3E9F9C91C4693AC01FBA641F0A062B62BB31A8A14C8F5 | sha512: D56BD5CC2064E9DA193B4FC02F99D05583B6A23A07D4AC8A8DF4CD2AD16FA1130AF62F16D607F2750BD148861A645C2A6C0F1DDE0449CF30C0F6A4041C32FD85
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 3CE0619CBDAF9458931A6883BEB61657 | sha1: 8B637193CA80F676DA419849B9DF5A42840034E6 | sha256: A84310A733F63B877AEC915F65E2BADDBCE375B10A5A25F5C0E1B100A28493A1 | sha512: 1F7764621E27C540FF53F3F7A782E4E75BFB2482854D7AFA6A895290F14A7EBD2B42177ABDFCFCB22376E3AA5B2F10E6C5CF1815E64FEF142C4002969AE1139D
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 39AAC9E78A118D80E2EFD8C91EB8AC9A | sha1: 26D6FF41CCA4A20D89FC95854244F3E3EFD1B0F7 | sha256: CA0C8870C9826395C0BB7CF141762B173C950FF1F03C8507213E7ED06B7EC6B0 | sha512: 8DA5128412111851C6CB209148CFFC33E755A3754ED7C3EFA1300886D3E98110F95ABC171C6213EFBFAAFEFF19A7910AF28E8A8C300F32131EFAF0D85060C592
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Common.resources.dll
md5: ACD99D506EC9E1574DAA886C97F27274 | sha1: B59184AA8A71F31F37697B585DE0CC3EB4021B4C | sha256: 457C935D85A89211D978A618F1EC97AEDBB4D256656D9A2F503D53AC571EDCD8 | sha512: 1CA8DC676CBD86BA7B6167CC1395225569839ABE5CDE5EAB01567D778CE4D55605C53535DA2D91B8D89A56C608A2992B2BBE88257B5CCDA566194A8873D7A30A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 570FDB6612E67DDC913B633338062B8E | sha1: 8676A5BE4A18EC6BA07D656E302C3DA248FD1A03 | sha256: 9002244F076A7684F2BAA5A5C5EA0D23DCD3F97AC5D948424BCCE6BCFB21B3F0 | sha512: F0858E0A06BD2D8BF3046F546E17B26D398C91D659DB0A5BAF22A709C8274778F4AAEB0DE74DBB2C9890D2A3045B3049E6F8E449BBCA60A8935980364ED1BC1F
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 07B847ADAC4C2E06EDE06E804D79B416 | sha1: 379FB4B40530AFA0CFF70D0691AD6666A56DC17C | sha256: 3DAA2502F15B67A8A982DC18984B27CE06DC4CD79413750A8652876B34276756 | sha512: 6699FA1D139B4915B137CD1887430407C112BD8DC7796FBE4CBAEEFF4561D587DE0A1DE61C71F077A1F503AABAAF39B2F781C9DE409E42FB7F43C399C61E19E1
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A6FE1003D3A9DB2BCAABDBA572C6A47E | sha1: EBEF5046F38B22A613FE484EA3FB1493A9779560 | sha256: C71293D754A987A8A137B23744CF375023C0125A68AE1272FC701CB9A45FD9BA | sha512: CEBDFBB49FEFBD2DB59FE5F0BAE2A47EA8C77A432B4949A662933DEB989FCC0FB2F956DE8FF751823905F8F60AAC9EC615DFCCEC5FAE4693B26CD7187E3E21B8
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 711DFB645813E45687E48F54C08082AD | sha1: 52456A898C835A6F17229D167BE5DDA799CF8DFC | sha256: 52D628C8707EE42B6B66FD52920BD72441030A0FB6DB39FB3FD22DF020C030E6 | sha512: 38872C7157BB2640DD934E22C667F5D28CAA5CEBD2D9BCAD60B481852FDEE245EB195DFF8DE4131B6EDD16FBDB67804C71941E41E7EA43A152F554B0B4B804C9
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 83B8CF27507D3E33DD697E5CA4A1EB74 | sha1: A8A26F3CE41A6510639891871423E3EDDF9D48B6 | sha256: 98DA8F67030D40575D5DF7C7347E5CA23BB276FDADB19D14571122B69386F5E5 | sha512: 4A9D8625878E57C516659004FA608E5B2BE213806D4F967CDBE1AC9174167134947D39503350E6745AAE03D0AD21941B9B4A601A413F58A9A3473A8B6D562000
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: BF05DD2FD238CB2EF998424C21BD6533 | sha1: 952AB8F9E9E39996DE60D6A0EF71E12BD82AD50D | sha256: C06BDB729076F4C6FF583801057E1EABE906B1717A52BF2ABA401A71C649BAEA | sha512: 43AD2AA13D9820DD37CBBFB601F68F7DC7CF059D56010A3044119866C50A56431CDFBBD72B886E9544B81CF3CD96A15FA6625C439B6B64C07A512E4D9E36EBDF
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 2AB48D7DDBD001D923DB6DE82EB9D20B | sha1: 76DEA10625A31E81FE3B23607BF382F37A794F61 | sha256: F339A699A22D39095796F8AC5F2B6E2097F7C4BA870B9E3129B5E4E623AF01ED | sha512: F9E50CE297A9BA8DBB5D507956714E67B09EF9FEA2206AA876149F8C2D026C6E10227A501F15EA883A0D4D1013BA7CD702BC011F3C23E24EECD20C99E387DB91
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Client.resources.dll
md5: 827CC50922D989465CEBE0DB138C6C49 | sha1: C8702F8CF0E8F59DED681778D2EC257628035A9B | sha256: 92194C57FCCCCFB2E07A081FA5C0543E00D1395ABC3EC21C2E36B7376FF6AA58 | sha512: 2552FDFEDC24C12E482703097F3D1358E97A3EC65FC6FAF4F4A0C5E8A0214C4C135611D539F66E614660AC63F39F401A4A5D7CD0D8841F2E5BEBC8AEF381B1BA
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Common.resources.dll
md5: 4F7FEA819732FD5C65869953B3A9F52D | sha1: D6C6588051FEC55223AD0A000C6AD95DB833E4A7 | sha256: E712F109F9D2196D126ABBFA4F121D406A91289F509D93393E9D982E73B277D2 | sha512: BB1CBBFFD876EE29436B260E0590B325C251A9AAF5A2C9BDB9924C7F16150532031E6C4513621A77441A58851F49404BBD32C5D5EE11238F033828C7DCAC5E0E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 1D641DFC50F8078176D615C8D99E38AF | sha1: 3311A79679A3F97A982E9224116A518DDB6B9B75 | sha256: 941687227E8AB0D2F1D24A34772171F2DA3E07D63F2A68754B05D0B4CCD6D3CE | sha512: 2D451586FF90DA1B44CDB10C6AFE12055D9614A3494A0C06EA02FFB8CC0DD88F8520C52DB43958B9FBD6CCBE98E0091AC2F90C29910041A7BE4871FA8352EA3B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 44785726F80DF3D447ABE21D51B8FF43 | sha1: 595F7AE42DE5A8CEEC0DBE3794823390253BA722 | sha256: A435AD72FF9C27737AA65197DD6CC9D332BDE9C19225CF564C42992F1B1FC094 | sha512: C1A1347248753A8C579D38E05C220054173F6A5B7302117C5EBF947A4FF41A88BC56FAB0C8AF36D918217CBA8F672F96342FDB78005799D80857C8AA78F55503
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 01B970DEECD9F4A81714E74247615ECC | sha1: 4E1BA41BD399B2692762F7AA603424A756206F32 | sha256: 60FDD5F9287393E31D7246A7599F5D1AC7F4AF1B9B1504BEB2824079EA2401F8 | sha512: 7269C43E29632D2BE630A22E2E5C3759480918FDA37B549B67E54750C6AB615BFB29C29D0A4E2A9F0EE0277793B976908D6438997C80A1BDA45A4A55087AF3AC
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 2E1F109B9A82F2A52EFDA5397AF30CBA | sha1: C94BA222554346209EDD74767313121B2BDA64C1 | sha256: 80F6B25AF619104560BCD8A845ABFC1B293538D718B6518F7CC6A40069F19820 | sha512: 0AF5F2A0343A9AABFEE5189A133A06E95A4D4270BD22D9C6B26B058F64F4EA83B27525846C84249B6875D595C098BE7F89E19AFA98620B8C3C9DC8ACF0AA99C8
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: A11A3AE6E5994EDD2D48DAB29C2A462D | sha1: 49177FA5F1097714CF80C15D4F9CD60764EFAC78 | sha256: 10461F3EB5725907D53224FB3EB7CBC1F2E48CC5F14D9EE59BE5DB98E33C4920 | sha512: 0992D5A5BEDC359D31BE2953478118F16B17144BAC9FACA9CCE630F623209D870512229BD028AC514E53A81AF4403FB74C50C0C8596A90DE02C9F8F0554B8A78
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: A9025A94F431A3721F6D232A202A6E81 | sha1: A91C90267FF799CC29335F21F4DFD7221562297E | sha256: 1CED730C7C01A0DE61F451BF411C379C85CBB905ADB4F5247B06B38A5D168249 | sha512: EFB97A6AED4C8CAECC954A0C1D98F8F910BBBB663CC0A50BBF9763AF7F775A612E4CC92465F0074CA4854FD5541238F9E64B13246EAC902115C64565D6422FF0
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 36A87AF91398E6BF3787B41F9D1091A9 | sha1: D5E72447D8EDDB68899855B8FB270D8B11AF3D5E | sha256: CED61FEDFD1460BB0CDEF75473B91EEDB5F2E512868F92BD8CFB33969ACE6E8E | sha512: CA18282DB0C738DB23F568C8253C205330617C7C73BDDE3BFF466BB31A39BF493604E1F6A2729C66C55C5611F18F8A3FE47E3EEC87921EF086FEB8385A6F0AAB
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 068043B68F2C25675385D3CB7619762D | sha1: 6AA2C0212E8C1A9C66C416ABBE2088D31F1B2B6F | sha256: A4A271EC4B835946ABCA564167C0DF5B301F5D9CA2EE00E4ADF7C0A702A2F72A | sha512: 5B2D3B62A481CED6FD6FD0F0DC9FF61D9BBC3DE2D852C983760AAB8D615EE694F7932E356821BB8453E2CDA9E0005EDE01DCB3BE6280A43D31E2FE2A2B24EC38
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: B69E541254F78B8B269E70BAA679E6DD | sha1: CF798FD9D2B67FF9FCD8A97CFF6746478ABC2293 | sha256: 3244D6A2ACEFDD2B5B92FF90BE5A6CD99AB91E1DBD5513E63D6605B7BC3514A4 | sha512: 31488E48EB1A581534213BFA6D57C5F9AED91317FDDA5B34D4D8D7037215690E2C463D138BE6C2C73E0095027D9380E1BA7A2C79BD0EACC4E292E76F582EA11E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7C46E6EBECE5BBC85DE489ED92C7883B | sha1: 7B28DBA8D3E273936E1260DE4D20C8FA88A9584A | sha256: 34EBD3D9D9B4044B3E382DD866BA5C2879F912FA153023720B4D587863DD8840 | sha512: 2C42FDA55D6378C04C37563A0298191F77F11287AC07EC1AEB92F0B95E3F8E8D564C6EE70A71EE3E6D1063573643A5109D5C7FA8B77B05D365D7BD7D0BE90888
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 417979939BEE750C3B25D01B413ED1BA | sha1: 59ED738AC8E40775EF80026BE5A7E935C4AA1E64 | sha256: 4F6F394DB66508BC652876770FA07A800F8204E987B150B3AAB95A25002F46A3 | sha512: 63BD836BB7F7383DFABD83C108F14842D81289D2F26C94E0209901011B70A77E42C3BB4F5B9B187BDA39DEB7603069E8FCB679A556F90CCAA2C57E0E85534B3A
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: EDCAB9B98C1BEB43B8CC3BE8688448C0 | sha1: A14C0DF9605C3FF27A7884DA5C571E227B47B7F8 | sha256: 2CBB7744CF9111FF69058B3D85882A238F09E7EA1A357C43D0EB53E470AD8D8D | sha512: 6AB63A5FAC5EF8016168F394E554EFA2EA7A6891F3793E9A61E1445DD1C436A4D3001F6F8EC41BFDD2925612E8DC1CE3E54659385F74434222CF6AE3274A3D10
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 3893F9260BAE5F04CFD2F717290D5A63 | sha1: 9ED758ADB856540F28184709924BF35EEA07CA55 | sha256: 9678C70A41C7563E2C43E6C958CF0FCD6FF779A9AB78E53AB64FDA75B3A29F06 | sha512: 2903D3E0A65D68F65137F14CE22EAD90C489C0EB369462CA5D1CF52B6E12863D2E9757904FD29B925D06D93D0D39BB3B3D1466A2CF44F1BBE13CD735707DA73C
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 4AEE3584FCB4744E3D51BB81459ABE8F | sha1: 32AF8E491957834D82322DAED877AF4DB6B03A70 | sha256: E5FA45D2DF150BA3894F335ABC32C0E6CD1130682190D26FBB87EF1E41901FAA | sha512: 4333DDE420DF3057ADF1D619294862B979B91A99408E9FD01BA1E033295C210B6F69BF25870F4778CF1D890BF406654817BF8C32397743EC2C3E067AB62BF561
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: F1782AC5A8FBA4B01DEC3795B50CA6A7 | sha1: 0C0BB9CED7A3094898759F308FD84BC829501A11 | sha256: 5EA431FA7621F7253AE5B6A516DD2BBB51F2FC1D763659475B45B1883D26CC1E | sha512: B129ABC7906E457CBABDA96C41001D6821AB86CE90BA42FFBAC7888B4F5C76643C8DB33D3A8D2B4547B1DC2FFDD753C96AE13BC9865A1BA80896E2E3492100D8
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 5B4777D7A5D75AFF37BEA8C9AA6C83E1 | sha1: 45B26660E961A022467E3EA33CD14A7CE11AF67C | sha256: FC491647400EB851C18993B643EC034EC739AB0333EE55ABDB6186CB5941CADB | sha512: 3261ACA3B381427F19E9D93C928DB6C9687F50534126BA8B51590EDA15719AF90269450E7391D0323443C45CB5E61AFADEC6057E8A75F7A73A2648A246CED8AD
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 07286BCA585A658932BCE64182F5E3A4 | sha1: 9A10BD0AE1FDA181F8FA46EF5BCE594C2A1015FD | sha256: 2BB3AA3E3FCCC1E25C45FC7A79686F7CB9E298A1E76A647AF2F4C168078FD48A | sha512: 144E0879BE8FA4B7CC0E06034A3D7ECFDBA6974A6C46462CE935ED09E37E33E2732B960A71342FC263010F92E970F8D06D6B77451A7CBA3235CF6058CB6957F2
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Common.resources.dll
md5: EBD7877AC8BF8BAE7A9C4F2513FBB0BB | sha1: 3E57D7BA674C25FFA12DDBC16D7EFA6728842229 | sha256: D01B16BA15FAAC016E88957EA11ED44DCDCC65317CFFA68783C9225608BB832C | sha512: 515D73D9EB7795BAEE4765C2DEF6E2EDB99236901A91961EFCB9A7D3EA2C8029AC2C2BD365025ACBF49487E60F13E92FCCD6DDE1B1F9D9988BE29153A439A3A5
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 3D46A9B15B0D8758EEFCD371DD9D3A16 | sha1: 1663E6539BBBF3A057608D776A3A985E30732D6C | sha256: 558C45B690DEA2B10A73C5B555D84A6C765714D2B51AAEC2AC7BD7DBFA101D78 | sha512: EE806D5AD7A9BFCA384E3F5549AF61D8353E60CC2B82C6536F62E88A8F02A1494F5A8F8617D05E7F717E07484CC05F64FE3F65780BD842C129A5789223378BDD
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 1F25329121CD020BE48B7FAD409161D0 | sha1: DB1E123820D41E683D6AB01FAE9E574823EE59CA | sha256: 6C95D537C99F69AC49D059C90500E179F29AD1CCCFADE0A7131B9C9AE74712E7 | sha512: 1E91C5623056C45FD81C9B4947BCE144345008D8A343D8DCCA1A01E4D8E49F309465FD196556C0D7B4C213070A2BC42BEEB933A519A5450BD9438FE5E8155465
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: FA2222BD34557988A32383CFFCF2CFEF | sha1: D3C22A32790CCAE5D5B4252548C2A39DF7CC53FC | sha256: A2405D2E814BD22506E4E6E0406F9E92090E506AA3AE4C8FFDC60459895B0B98 | sha512: DB046876BFEA110F91C55F1E44848D5E260AFA54CA7923D4455B7355829B4A458CE9E9230C61D690293D2E91E2D5D3A2C2768D77841E4A66ADE6FFBD0399CCD1
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 90D33ACDC6D0BB62D78A0AD5F48AA54D | sha1: 927BB1F442CAC62F6A671ECEEF9A359F64BF9009 | sha256: 8CEAECD900752DF03249EE63BE3671981CA7377485B40CF6C678D471C60B45CB | sha512: 99268C0D6DB4E487FF54D028168693A5FB2228AB30F145F8161E162480932F6A83D1AF01C14C3F464C251441C0C09D7CB0D146C295CD1292F13A9098678C8A2E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: A11C5B239B2AC270DC0D346FB210F4D8 | sha1: 484B8BA77F50049858CEF0E5E2EBC103A71540E2 | sha256: B1959710D5EFCF7D171F82D5013F4C298F82AA999A4A40533115490BFC5853D5 | sha512: 536C16870724826006D8B7859F72AF0B1B5850064FC316172D683315D50B5AA4E0C8DB294B62109C89D5DA5A3344C0CD89EEC920DDA36DBD06D9A63351B94EB1
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\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)](https://nuget.org/packages/tfscmdlets) [![Chocolatey](https://img.shields.io/chocolatey/dt/TfsCmdlets.svg?label=Chocolatey)](https://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 'https://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](https://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.2.1 (_10/Feb/2022_)

This release adds support for the creation of Git forks, and fixes a few bugs.

## New cmdlets

N/A

## Improvements
  
* **Support for Git forks**. `New-TfsGitRepository` can now fork existing Git repositories, and `Get-TfsGitRepository` can retrieve information about the parent (forked) repository.

## Fixes

* Error when calling New-TfsWorkItem without specifying area/iteration paths ([#158](https://github.com/igoravl/TfsCmdlets/issues/158))
* Error when calling New-TfsWorkItem passing backslash to area/iteration paths ([#159](https://github.com/igoravl/TfsCmdlets/issues/158))
* Error when setting recursive area path value in Set-TfsTeam ([#160](https://github.com/igoravl/TfsCmdlets/issues/158))
* Error when calling New-TfsTeam with DefaultAreaPath and/or BacklogIteration arguments set to non-existing paths

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

## Previous Versions

### Version 2.2.0 (_05/Feb/2022_)

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

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

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

### 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: Copy-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>Copy-TfsArea</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Copies one or more Work Item Areas recursively </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-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="CopyTo">
          <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" aliases="Organization">
          <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 name and/or path of the destination team project. When omitted, copies the area to the same 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: 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: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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="CopyTo">
        <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="CopyTo">
        <maml:name>CopyTo</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: DestinationProject -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationProject</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination team project. When omitted, copies the area to the same 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: 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: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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/Copy-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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>Moves one or more Work Item Areas to a new parent node </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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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" aliases="Organization">
          <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>
        <!-- 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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 an area path. </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="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: 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" aliases="Organization">
          <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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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>
      <!-- OutputType: Boolean -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Boolean</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/Test-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsBuildDefinition -->
  <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>Disable-TfsBuildDefinition</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Disables a build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </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" aliases="Organization">
          <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>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml: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">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</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/Disable-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsBuildDefinition -->
  <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>Enable-TfsBuildDefinition</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Enables a previously disabled build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </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" aliases="Organization">
          <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>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml: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">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</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/Enable-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsBuildDefinition -->
  <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-TfsBuildDefinition</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Gets one or more build/pipeline definitions in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline path. Wildcards are supported. When omitted, all pipelines definitions 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" aliases="Organization">
          <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, LastModifiedAscending, LastModifiedDescending, DefinitionNameAscending, DefinitionNameDescending</maml:para>
          </maml:description>
          <command:parameterValue required="true">DefinitionQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Build.WebApi.DefinitionQueryOrder</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">LastModifiedAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">LastModifiedDescending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DefinitionNameAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DefinitionNameDescending</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: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline path. Wildcards are supported. When omitted, all pipelines definitions 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 pipeline path. Wildcards are supported. When omitted, all pipelines definitions in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Definition 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, LastModifiedAscending, LastModifiedDescending, DefinitionNameAscending, DefinitionNameDescending</maml:para>
        </maml:description>
        <command:parameterValue required="true">DefinitionQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.DefinitionQueryOrder</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">LastModifiedAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">LastModifiedDescending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DefinitionNameAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DefinitionNameDescending</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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</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-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Resume-TfsBuildDefinition -->
  <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>Resume-TfsBuildDefinition</command:name>
      <command:verb>Resume</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Resumes (unpauses) a previously suspended build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Resume-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </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" aliases="Organization">
          <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: 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: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml: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">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</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/Resume-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Suspend-TfsBuildDefinition -->
  <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>Suspend-TfsBuildDefinition</command:name>
      <command:verb>Suspend</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Suspends (pauses) a build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Suspend-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </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" aliases="Organization">
          <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: 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: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml: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">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</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/Suspend-TfsBuildDefinition</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.Folder">
    <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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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/Folder/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.Folder">
    <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" aliases="Organization">
          <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>
        <!-- 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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/Folder/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.Folder">
    <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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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/Folder/Remove-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsConfigurationConnectionString -->
  <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-TfsConfigurationConnectionString</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsConfigurationConnectionString</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-TfsConfigurationConnectionString</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-TfsConfigurationConnectionString</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-TfsConfigurationConnectionString</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Online version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/admin/get-tfsconfigurationConnectionstring/</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="Credential">
    <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="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>
      </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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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>
      </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="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>
      </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="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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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/Credential/New-TfsCredential</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsExtension -->
  <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="ExtensionManagement">
    <command:details>
      <command:name>Disable-TfsExtension</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Disables an extension installed in the specified collection/organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the extensions. Wilcards 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: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the publisher. Wilcards 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" aliases="Organization">
          <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: Extension -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards 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: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the publisher. Wilcards 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 ID or the name of the extensions. Wilcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</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/ExtensionManagement/Disable-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsExtension -->
  <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="ExtensionManagement">
    <command:details>
      <command:name>Enable-TfsExtension</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Enables a previously disabled extension installed in the specified collection/organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the extensions. Wilcards 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: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the publisher. Wilcards 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" aliases="Organization">
          <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: Extension -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards 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: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the publisher. Wilcards 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</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/ExtensionManagement/Enable-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsExtension -->
  <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="ExtensionManagement">
    <command:details>
      <command:name>Get-TfsExtension</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Gets one or more installed extensions in the specified collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/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: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/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="true (ByValue)" position="named" aliases="Organization">
          <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: IncludeDisabledExtensions -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDisabledExtensions</maml:name>
          <maml:description>
            <maml:para>Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: IncludeErrors -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeErrors</maml:name>
          <command:parameterValue required="true">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: IncludeInstallationIssues -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeInstallationIssues</maml:name>
          <command:parameterValue required="true">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: Extension -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/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: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/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: IncludeDisabledExtensions -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDisabledExtensions</maml:name>
        <maml:description>
          <maml:para>Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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: IncludeErrors -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeErrors</maml:name>
        <command:parameterValue required="true">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: IncludeInstallationIssues -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeInstallationIssues</maml:name>
        <command:parameterValue required="true">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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</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/ExtensionManagement/Get-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Install-TfsExtension -->
  <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="ExtensionManagement">
    <command:details>
      <command:name>Install-TfsExtension</command:name>
      <command:verb>Install</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Installs an extension in the specified organization/collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Install-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="ExtensionId">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the extension to install. </maml: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: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1" aliases="PublisherId">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the publisher of the extension. </maml: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" aliases="Organization">
          <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: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>Specifies the version of the extension to install. When omitted, installs the latest version. </maml: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: Extension -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="ExtensionId">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the extension to install. </maml: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="ExtensionId">
        <maml:name>ExtensionId</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the extension to install. </maml:para>
          <maml:para>This is an alias of the Extension 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: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1" aliases="PublisherId">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml: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="1" aliases="PublisherId">
        <maml:name>PublisherId</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
          <maml:para>This is an alias of the Publisher 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: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>Specifies the version of the extension to install. When omitted, installs the latest version. </maml: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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the ID of the extension to install. </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 ID of the publisher of the extension. </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 version of the extension to install. When omitted, installs the latest version. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</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/ExtensionManagement/Install-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Uninstall-TfsExtension -->
  <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="ExtensionManagement">
    <command:details>
      <command:name>Uninstall-TfsExtension</command:name>
      <command:verb>Uninstall</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Uninstalls one of more extensions from the specified organization/collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Uninstall-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the extension to uninstall. </maml:para>
          </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="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the publisher of the extension. </maml: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" aliases="Organization">
          <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: Extension -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the extension to uninstall. </maml:para>
        </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="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml: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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 ID of the extension to uninstall. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</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/ExtensionManagement/Uninstall-TfsExtension</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" aliases="Organization">
          <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, defaults 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: 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 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" aliases="Organization">
          <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, defaults 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: 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: 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, defaults 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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, defaults 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" aliases="Organization">
          <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, defaults 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: 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: 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: 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, defaults 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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-TfsGitCommit -->
  <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.Commit">
    <command:details>
      <command:name>Get-TfsGitCommit</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitCommit</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git commits in a remote repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by commit SHA -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by commit SHA">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Commit -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Commit</maml:name>
          <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" aliases="Organization">
          <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: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">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 />
          <command:parameterValue required="true">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: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: 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, defaults 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: 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: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <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: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <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: Get by tag -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by tag">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tag</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Author -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Author</maml:name>
          <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" aliases="Organization">
          <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: Committer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Committer</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CompareVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CompareVersion</maml:name>
          <maml:description />
          <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: FromCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FromDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromDate</maml:name>
          <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: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: ItemPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ItemPath</maml:name>
          <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: 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, defaults 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: 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: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <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: ToCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ToDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToDate</maml:name>
          <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: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <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: Get by branch -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by branch">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Branch</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Author -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Author</maml:name>
          <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" aliases="Organization">
          <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: Committer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Committer</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CompareVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CompareVersion</maml:name>
          <maml:description />
          <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: FromCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FromDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromDate</maml:name>
          <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: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: ItemPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ItemPath</maml:name>
          <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: 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, defaults 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: 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: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <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: ToCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ToDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToDate</maml:name>
          <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: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <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: Search commits -->
      <command:syntaxItem tfscmdlets:parameterSet="Search commits">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Author -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Author</maml:name>
          <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" aliases="Organization">
          <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: Committer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Committer</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CompareVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CompareVersion</maml:name>
          <maml:description />
          <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: FromCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FromDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromDate</maml:name>
          <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: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: ItemPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ItemPath</maml:name>
          <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: 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, defaults 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: 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: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">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: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <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: ToCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ToDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToDate</maml:name>
          <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: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <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: Commit -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Commit</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tag</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Branch</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Author -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Author</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Committer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Committer</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CompareVersion -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CompareVersion</maml:name>
        <maml:description />
        <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FromCommit -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FromCommit</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FromDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FromDate</maml:name>
        <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: ItemPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ItemPath</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ToCommit -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ToCommit</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ToDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ToDate</maml:name>
        <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: ExcludeDeletes -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ExcludeDeletes</maml:name>
        <maml:description />
        <command:parameterValue required="true">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 />
        <command:parameterValue required="true">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: IncludePushData -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludePushData</maml:name>
        <maml:description />
        <command:parameterValue required="true">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: IncludeUserImageUrl -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeUserImageUrl</maml:name>
        <maml:description />
        <command:parameterValue required="true">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: ShowOldestCommitsFirst -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ShowOldestCommitsFirst</maml:name>
        <maml:description />
        <command:parameterValue required="true">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: Skip -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Skip</maml:name>
        <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: Top -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Top</maml:name>
        <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: 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, defaults 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitCommitRef -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitCommitRef</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/Commit/Get-TfsGitCommit</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitItem -->
  <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.Item">
    <command:details>
      <command:name>Get-TfsGitItem</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitItem</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more items (folders and/or files) in a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by commit SHA -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by commit SHA">
        <maml:name>Get-TfsGitItem</maml:name>
        <!-- Parameter: Item -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Item</maml:name>
          <maml:description>
            <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </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" aliases="Organization">
          <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: Commit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Commit</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeContent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeContent</maml:name>
          <command:parameterValue required="true">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: IncludeMetadata -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeMetadata</maml:name>
          <command:parameterValue required="true">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: 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, defaults 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: 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 by tag -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by tag">
        <maml:name>Get-TfsGitItem</maml:name>
        <!-- Parameter: Item -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Item</maml:name>
          <maml:description>
            <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </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: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tag</maml:name>
          <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" aliases="Organization">
          <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: IncludeContent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeContent</maml:name>
          <command:parameterValue required="true">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: IncludeMetadata -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeMetadata</maml:name>
          <command:parameterValue required="true">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: 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, defaults 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: 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 by branch -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by branch">
        <maml:name>Get-TfsGitItem</maml:name>
        <!-- Parameter: Item -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Item</maml:name>
          <maml:description>
            <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </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="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Branch</maml:name>
          <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" aliases="Organization">
          <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: IncludeContent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeContent</maml:name>
          <command:parameterValue required="true">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: IncludeMetadata -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeMetadata</maml:name>
          <command:parameterValue required="true">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: 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, defaults 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: 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: Item -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Item</maml:name>
        <maml:description>
          <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </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 path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </maml:para>
          <maml:para>This is an alias of the Item 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: Commit -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Commit</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tag</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Branch</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeContent -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeContent</maml:name>
        <command:parameterValue required="true">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: IncludeMetadata -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeMetadata</maml:name>
        <command:parameterValue required="true">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, defaults 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitItem</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/Item/Get-TfsGitItem</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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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>
    </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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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>
    </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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Get by ID or Name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by ID or Name">
        <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" aliases="Organization">
          <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: IncludeParent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeParent</maml:name>
          <maml:description>
            <maml:para>Returns details about the repository's parent (forked) repository, if it has one. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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 default -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default">
        <maml:name>Get-TfsGitRepository</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 repository in the given team project. The default repository is the one that is created when a team project is created, and has the same name as 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: IncludeParent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeParent</maml:name>
          <maml:description>
            <maml:para>Returns details about the repository's parent (forked) repository, if it has one. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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: 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: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default repository in the given team project. The default repository is the one that is created when a team project is created, and has the same name as 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: IncludeParent -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeParent</maml:name>
        <maml:description>
          <maml:para>Returns details about the repository's parent (forked) repository, if it has one. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: ForkFrom -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ForkFrom</maml:name>
          <maml:description>
            <maml:para>Forks the specified reposity. To fork a repository from another team project, specify the repository name in the form "project/repository" or pass in the result of a previous call to Get-TfsGitRepository that returns the source 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: 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>
        <!-- Parameter: SourceBranch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SourceBranch</maml:name>
          <maml:description>
            <maml:para>Forks the specified branch in the source repository. When omitted, forks all branches. </maml: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: 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: ForkFrom -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ForkFrom</maml:name>
        <maml:description>
          <maml:para>Forks the specified reposity. To fork a repository from another team project, specify the repository name in the form "project/repository" or pass in the result of a previous call to Get-TfsGitRepository that returns the source 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: SourceBranch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SourceBranch</maml:name>
        <maml:description>
          <maml:para>Forks the specified branch in the source repository. When omitted, forks all branches. </maml: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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Get-TfsGroup -->
  <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-TfsGroup</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGroup</command:noun>
      <maml:description>
        <maml:para>Gets one or more Azure DevOps groups. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGroup</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to be retrieved. Supported values are: Group name or ID. 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>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Searches recursively for groups in the scopes under the specified scope. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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 group. When omitted, defaults to the Collection scope. </maml:para>
            <maml:para>Possible values: Server, Collection, Project</maml:para>
          </maml:description>
          <command:parameterValue required="true">GroupScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.GroupScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Collection</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</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: Group -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to be retrieved. Supported values are: Group name or ID. 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>
        <dev:defaultValue>*</dev:defaultValue>
      </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 group. When omitted, defaults to the Collection scope. </maml:para>
          <maml:para>Possible values: Server, Collection, Project</maml:para>
        </maml:description>
        <command:parameterValue required="true">GroupScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.GroupScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Collection</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Searches recursively for groups in the scopes under the specified scope. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: GraphGroup -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Graph.Client.GraphGroup</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-TfsGroup</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGroup -->
  <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>New-TfsGroup</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGroup</command:noun>
      <maml:description>
        <maml:para>Creates a new Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGroup</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new group. </maml: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" aliases="Organization">
          <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 group. </maml: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: 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 create the group. When omitted, defaults to the Collection scope. </maml:para>
            <maml:para>Possible values: Server, Collection, Project</maml:para>
          </maml:description>
          <command:parameterValue required="true">GroupScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.GroupScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Collection</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</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: Group -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new group. </maml: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 description for the new group. </maml: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 create the group. When omitted, defaults to the Collection scope. </maml:para>
          <maml:para>Possible values: Server, Collection, Project</maml:para>
        </maml:description>
        <command:parameterValue required="true">GroupScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.GroupScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Collection</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
        </command:parameterValueGroup>
      </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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: GraphGroup -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Graph.Client.GraphGroup</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/New-TfsGroup</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGroup -->
  <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-TfsGroup</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGroup</command:noun>
      <maml:description>
        <maml:para>Removes an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGroup</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to be removed. </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" aliases="Organization">
          <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: 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 group. When omitted, defaults to the Collection scope. </maml:para>
            <maml:para>Possible values: Server, Collection, Project</maml:para>
          </maml:description>
          <command:parameterValue required="true">GroupScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.GroupScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Collection</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</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: Group -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to be removed. </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: 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 group. When omitted, defaults to the Collection scope. </maml:para>
          <maml:para>Possible values: Server, Collection, Project</maml:para>
        </maml:description>
        <command:parameterValue required="true">GroupScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.GroupScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Collection</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
        </command:parameterValueGroup>
      </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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 group to be removed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GraphGroup -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Graph.Client.GraphGroup</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/Remove-TfsGroup</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" aliases="Organization">
          <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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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="true (ByValue)" position="named" aliases="Organization">
          <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>
        <!-- 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: 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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 group fom which to get its members. </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: 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" aliases="Organization">
          <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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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 cmdlets 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="true (ByPropertyName)" position="0" aliases="User,Id,Group">
          <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" aliases="Organization">
          <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" aliases="Organization">
          <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="true (ByPropertyName)" position="0" aliases="User,Id,Group">
        <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>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>User</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:para>This is an alias of the Identity 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 (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>Id</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:para>This is an alias of the Identity 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 (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>Group</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:para>This is an alias of the Identity 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 user or group to be retrieved. Supported values are: User/group name, email, or ID </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/Get-TfsIdentity</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: Copy-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>Copy-TfsIteration</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Copies one or more Iterations recursively </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-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>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
          <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" aliases="Organization">
          <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 name and/or path of the destination team project. When omitted, copies the iteration to the same 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: 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: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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>
      </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>
      </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>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
        <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="CopyTo">
        <maml:name>CopyTo</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: DestinationProject -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationProject</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination team project. When omitted, copies the iteration to the same 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: 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: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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/Copy-TfsIteration</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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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>Moves one or more Iterations to a new parent node </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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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-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" aliases="Organization">
          <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: 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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 an iteration path. </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="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: 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" aliases="Organization">
          <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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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: Set by finish date -->
      <command:syntaxItem tfscmdlets:parameterSet="Set by finish date">
        <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" aliases="Organization">
          <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: Set by iteration length -->
      <command:syntaxItem tfscmdlets:parameterSet="Set by iteration length">
        <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: Length -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Length</maml:name>
          <maml:description>
            <maml:para>Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0). </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: 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" aliases="Organization">
          <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>
    </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: Length -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Length</maml:name>
        <maml:description>
          <maml:para>Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0). </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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</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 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" aliases="Organization">
          <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: 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: 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 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="Iteration,Path">
        <maml:name>Iteration</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="Iteration,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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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>
      <!-- OutputType: Boolean -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Boolean</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/Test-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsOrganization -->
  <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="Organization">
    <command:details>
      <command:name>Connect-TfsOrganization</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsOrganization</command:noun>
      <maml:description>
        <maml:para>Connects to an Azure DevOps organization or a TFS Team Project Collection. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization or a TFS Team Project Collection. </maml:para>
      <maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsOrganization. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization 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="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: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization 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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: 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="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: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization 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="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: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization 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="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: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization 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="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>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Organization -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization 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>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          <maml:para>This is an alias of the Organization 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: 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="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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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 Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </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 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: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-TfsOrganization 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-TfsOrganization by default. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsOrganization -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-TfsOrganization -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-TfsOrganization -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/Organization/Connect-TfsOrganization</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsOrganization -->
  <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="Organization">
    <command:details>
      <command:name>Disconnect-TfsOrganization</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsOrganization</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsOrganization cmdlet removes the connection previously set by its counterpart Connect-TfsOrganization. Therefore, cmdlets relying on a "default organization/collection" as provided by "Get-TfsOrganization -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-TfsOrganization</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/Organization/Disconnect-TfsOrganization</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsOrganization -->
  <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="Organization">
    <command:details>
      <command:name>Get-TfsOrganization</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsOrganization</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 organization -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by organization">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</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>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</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: 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: 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: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: 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: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</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="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: 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: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</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: 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: 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: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</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: 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-TfsOrganization</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 organization specified in the last call to Connect-TfsOrganization (i.e. the "current" organization) </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Organization -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
        <maml:name>Organization</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:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
        <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:para>This is an alias of the Organization 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: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the organization specified in the last call to Connect-TfsOrganization (i.e. the "current" organization) </maml:para>
        </maml:description>
        <command:parameterValue required="true">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="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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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: TfsTeamProjectCollection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</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/Organization/Get-TfsOrganization</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" aliases="Name,Process">
          <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" aliases="Organization">
          <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>
        <!-- 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: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Name</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: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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Process</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: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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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,Process">
          <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="true (ByValue)" position="named" aliases="Organization">
          <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>
      <!-- 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="true (ByValue)" position="named" aliases="Organization">
          <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: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <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,Process">
        <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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Process</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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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" aliases="Organization">
          <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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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,Process">
          <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: Parent -->
        <command:parameter required="true" 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: 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: 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: 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: ProcessTemplate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <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,Process">
        <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>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Process</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="true" 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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-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="true (ByValue)" position="named" aliases="Organization">
          <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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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" aliases="Organization">
          <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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Definition</maml:name>
          <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" aliases="Organization">
          <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: 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: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Definition</maml:name>
        <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>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
      </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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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>
        <!-- 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: QueryParameters -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="Parameters">
          <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: 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" aliases="Organization">
          <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>Saves the API response to a file. If omitted, the response will be written to the stardard output stream. </maml: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: 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: 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: 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: 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="1" aliases="Parameters">
        <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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="Parameters">
        <maml:name>Parameters</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
          <maml:para>This is an alias of the QueryParameters parameter.</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: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Saves the API response to a file. If omitted, the response will be written to the stardard output stream. </maml: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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 />
    <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: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <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="true (ByValue)" position="named" aliases="Organization">
          <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: 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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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="true (ByValue)" position="named" aliases="Organization">
          <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: 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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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="true (ByValue)" position="named" aliases="Organization">
          <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: 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: 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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 subscription to get the notification history from. </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: 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="true (ByValue)" position="named" aliases="Organization">
          <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: 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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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="true (ByValue)" position="named" aliases="Organization">
          <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">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</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>
        <!-- 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: 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">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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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: NoProfile -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoProfile</maml:name>
          <maml:description>
            <maml:para>Do not load the user profile TfsCmdlets.Profile.ps1 (if present) 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>
      <!-- Parameter: NoProfile -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoProfile</maml:name>
        <maml:description>
          <maml:para>Do not load the user profile TfsCmdlets.Profile.ps1 (if present) 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="Team">
    <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" aliases="Organization">
          <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="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: 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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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="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: 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" aliases="Organization">
          <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="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: 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" aliases="Organization">
          <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="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: 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" aliases="Organization">
          <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="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: 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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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: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: Team -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Team</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/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="Team">
    <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/Team/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" aliases="Organization">
          <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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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>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: 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" aliases="Organization">
          <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: Default -->
        <command:parameter required="false" 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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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>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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: Default -->
        <command:parameter required="false" 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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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>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: 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" aliases="Organization">
          <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: Default -->
        <command:parameter required="false" 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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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>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: 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" aliases="Organization">
          <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: Default -->
        <command:parameter required="false" 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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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>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" aliases="Organization">
          <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: Default -->
        <command:parameter required="false" 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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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="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: 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 -->
      <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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: IncludeMembers -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
        <maml:name>IncludeMembers</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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
        <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:para>This is an alias of the IncludeMembers parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">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 team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
        </maml:description>
        <command:parameterValue required="true">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: 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>
      <!-- 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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: Team -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Team</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" aliases="Organization">
          <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>
        <!-- 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" 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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: Team -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Team</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" aliases="Organization">
          <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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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 path(s) that are associated with this team. Wildcards are supported. When the path ends with an asterisk, all child area paths will be included recursively. Otherwise, only the area itself (without its children) will be included. To include the children of the default area path, use the wildcard character (*) without a path. </maml: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:para>Possible values: Off, AsRequirements, AsTasks</maml:para>
          </maml:description>
          <command:parameterValue required="true">BugsBehavior</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Work.WebApi.BugsBehavior</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Off</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Off</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AsRequirements</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AsTasks</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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. </maml: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 </maml: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 target area and/or iteration 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: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration path(s) that are associated with this team. 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: OverwriteAreaPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>OverwriteAreaPaths</maml:name>
          <maml:description>
            <maml:para>Replaces the existing area paths with the specified list of area paths. When omitted, the new area paths are added alongside the previously defined ones. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: OverwriteIterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>OverwriteIterationPaths</maml:name>
          <maml:description>
            <maml:para>Replaces the existing iteration paths with the specified list of iteration paths. When omitted, the new iteration paths are added alongside the previously defined ones. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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>
        <!-- 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. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DayOfWeek[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DayOfWeek[]</maml:name>
            <maml:uri />
          </dev:type>
        </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" aliases="Organization">
          <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>
    </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 path(s) that are associated with this team. Wildcards are supported. When the path ends with an asterisk, all child area paths will be included recursively. Otherwise, only the area itself (without its children) will be included. To include the children of the default area path, use the wildcard character (*) without a path. </maml: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: OverwriteAreaPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>OverwriteAreaPaths</maml:name>
        <maml:description>
          <maml:para>Replaces the existing area paths with the specified list of area paths. When omitted, the new area paths are added alongside the previously defined ones. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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: 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. </maml: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 path(s) that are associated with this team. 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: OverwriteIterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>OverwriteIterationPaths</maml:name>
        <maml:description>
          <maml:para>Replaces the existing iteration paths with the specified list of iteration paths. When omitted, the new iteration paths are added alongside the previously defined ones. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DayOfWeek[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DayOfWeek[]</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:para>Possible values: Off, AsRequirements, AsTasks</maml:para>
        </maml:description>
        <command:parameterValue required="true">BugsBehavior</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BugsBehavior</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Off</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Off</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AsRequirements</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AsTasks</command:parameterValue>
        </command:parameterValueGroup>
      </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: 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 target area and/or iteration 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: 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: 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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 administrator to add to the given team. </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/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: 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" aliases="Organization">
          <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: 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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: 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: 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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 administrator to remove from the team. </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/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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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-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>Set-TfsTeamBoardCardRule</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamBoardCardRule</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: Bulk set -->
      <command:syntaxItem tfscmdlets:parameterSet="Bulk set">
        <maml:name>Set-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: WebApiBoard -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>WebApiBoard</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>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: Rules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Rules</maml:name>
          <command:parameterValue required="true">BoardCardRuleSettings</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</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: 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: Set individual rules -->
      <command:syntaxItem tfscmdlets:parameterSet="Set individual rules">
        <maml:name>Set-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: WebApiBoard -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>WebApiBoard</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>
        </command:parameter>
        <!-- Parameter: CardStyleRuleFilter -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CardStyleRuleFilter</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CardStyleRuleName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CardStyleRuleName</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CardStyleRuleSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CardStyleRuleSettings</maml:name>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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>
        <!-- Parameter: TagStyleRuleFilter -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TagStyleRuleFilter</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TagStyleRuleName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TagStyleRuleName</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TagStyleRuleSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TagStyleRuleSettings</maml:name>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</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>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WebApiBoard -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>WebApiBoard</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>
      </command:parameter>
      <!-- Parameter: Rules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Rules</maml:name>
        <command:parameterValue required="true">BoardCardRuleSettings</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CardStyleRuleName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CardStyleRuleName</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CardStyleRuleFilter -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CardStyleRuleFilter</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CardStyleRuleSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CardStyleRuleSettings</maml:name>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TagStyleRuleName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TagStyleRuleName</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TagStyleRuleFilter -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TagStyleRuleFilter</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TagStyleRuleSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TagStyleRuleSettings</maml:name>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </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-TfsTeamBoardCardRule</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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: 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: 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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 member (user or group) to add to the given team. </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/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: 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" aliases="Organization">
          <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>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: 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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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/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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: 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: 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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 member (user or group) to remove from the given team. </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/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="TeamProject">
    <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: 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="true (ByValue)" position="named" aliases="Organization">
          <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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <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="true (ByValue)" position="named" aliases="Organization">
          <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="true (ByValue)" position="named" aliases="Organization">
          <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: 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="true (ByValue)" position="named" aliases="Organization">
          <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>
    </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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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: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/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="TeamProject">
    <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/TeamProject/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="named" aliases="Organization">
          <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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <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: 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="true (ByValue)" position="named" aliases="Organization">
          <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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <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: 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="true (ByValue)" position="named" aliases="Organization">
          <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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <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: 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="true (ByValue)" position="named" aliases="Organization">
          <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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <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="named" aliases="Organization">
          <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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: 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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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>
      </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>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">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: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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: 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: Process -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Process</maml:name>
        <maml:description>
          <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml: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: IncludeDetails -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDetails</maml:name>
        <maml:description>
          <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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: 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>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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">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" aliases="Organization">
          <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: 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: 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">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 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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" aliases="Organization">
          <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>
        <!-- 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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="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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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: Export-TfsTeamProjectAvatar -->
  <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.Avatar">
    <command:details>
      <command:name>Export-TfsTeamProjectAvatar</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsTeamProjectAvatar</command:noun>
      <maml:description>
        <maml:para>Exports the current avatar (image) of the specified team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsTeamProjectAvatar</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the file where the avatar image will be saved. When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png. </maml: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" aliases="Organization">
          <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: 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: 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="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the file where the avatar image will be saved. When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png. </maml: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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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 />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Avatar/Export-TfsTeamProjectAvatar</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsTeamProjectAvatar -->
  <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.Avatar">
    <command:details>
      <command:name>Import-TfsTeamProjectAvatar</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsTeamProjectAvatar</command:noun>
      <maml:description>
        <maml:para>Imports and sets a new team project avatar (image). </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsTeamProjectAvatar</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 image file to import. </maml: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" aliases="Organization">
          <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: 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 path of the image file to import. </maml: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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Avatar/Import-TfsTeamProjectAvatar</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProjectAvatar -->
  <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.Avatar">
    <command:details>
      <command:name>Remove-TfsTeamProjectAvatar</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProjectAvatar</command:noun>
      <maml:description>
        <maml:para>Removes the team project avatar, resetting it to the default. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProjectAvatar</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: 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="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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Avatar/Remove-TfsTeamProjectAvatar</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="TeamProjectCollection">
    <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" aliases="Organization">
          <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="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: 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" aliases="Organization">
          <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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: 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="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: 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" aliases="Organization">
          <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="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: 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" aliases="Organization">
          <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="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: 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" aliases="Organization">
          <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="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>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
        <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>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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="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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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: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: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/TeamProjectCollection/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="TeamProjectCollection">
    <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/TeamProjectCollection/Disconnect-TfsTeamProjectCollection</maml:uri>
      </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" aliases="Organization">
          <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>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <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: 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: 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: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <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: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <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: 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: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <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="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: 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: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <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: 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: 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: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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>
      <!-- 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: 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="named">
        <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="true" globbing="false" pipelineInput="false" position="named">
        <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>
    </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: TfsTeamProjectCollection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</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: 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: Use database server -->
      <command:syntaxItem tfscmdlets:parameterSet="Use database server">
        <maml:name>New-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</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>
          <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="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseName</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <command:parameterValue required="true">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>
          <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>
          <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: 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: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <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="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>
          <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: UseExistingDatabase -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseExistingDatabase</maml:name>
          <command:parameterValue required="true">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: Use connection string -->
      <command:syntaxItem tfscmdlets:parameterSet="Use connection string">
        <maml:name>New-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</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>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <command:parameterValue required="true">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>
          <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>
          <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: 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: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <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="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>
          <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: UseExistingDatabase -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseExistingDatabase</maml:name>
          <command:parameterValue required="true">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="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Collection</maml:name>
        <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>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <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>
        <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="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseName</maml:name>
        <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>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <command:parameterValue required="true">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: UseExistingDatabase -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>UseExistingDatabase</maml:name>
        <command:parameterValue required="true">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: InitialState -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>InitialState</maml:name>
        <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>
        <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>
        <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: 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:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </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>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <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: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <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="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Collection</maml:name>
        <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>
        <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>
      </command:inputType>
    </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: 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" aliases="Organization">
          <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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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">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>
        <!-- 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">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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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-TfsUser -->
  <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.User">
    <command:details>
      <command:name>Get-TfsUser</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsUser</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more Azure DevOps users. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by ID or Name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by ID or Name">
        <maml:name>Get-TfsUser</maml:name>
        <!-- Parameter: User -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="UserId">
          <maml:name>User</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>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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>
      <!-- Parameter Set: Get current user -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current user">
        <maml:name>Get-TfsUser</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" aliases="Organization">
          <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: User -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="UserId">
        <maml:name>User</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>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="UserId">
        <maml:name>UserId</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:para>This is an alias of the User 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: AccountEntitlement -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Licensing.AccountEntitlement</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/User/Get-TfsUser</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" aliases="Organization">
          <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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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.Models.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" aliases="Organization">
          <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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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: Path -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder. </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: 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: 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" aliases="Organization">
          <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>
    </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: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch 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: Path -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder. </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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: 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" aliases="Organization">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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>B 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: 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: 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>
        <!-- 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 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" aliases="Organization">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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: 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: 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: Get deleted -->
      <command:syntaxItem tfscmdlets:parameterSet="Get deleted">
        <maml:name>Get-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: 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" aliases="Organization">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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: 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: 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: 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" aliases="Organization">
          <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" aliases="WasEver">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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: 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: 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: Wiql -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
          <maml:name>Wiql</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" aliases="Organization">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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: 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: 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 saved query -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by saved query">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: SavedQuery -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="QueryPath">
          <maml:name>SavedQuery</maml:name>
          <maml:description>
            <maml:para>Specifies the path of a saved query to be executed. </maml: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" aliases="Organization">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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: QueryParameters -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryParameters</maml:name>
          <maml:description>
            <maml:para>Specifies the path of a saved query to be executed. </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: 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: 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" aliases="Organization">
          <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. To retrive all fields, pass an asterisk ('*') 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>
          <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: 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: 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" aliases="WasEver">
        <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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="WasEver">
        <maml:name>WasEver</maml:name>
        <maml:description>
          <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
          <maml:para>This is an alias of the Ever parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">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>B 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>B 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: Wiql -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
        <maml:name>Wiql</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="Query,QueryText">
        <maml:name>Query</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 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>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
        <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 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: SavedQuery -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="QueryPath">
        <maml:name>SavedQuery</maml:name>
        <maml:description>
          <maml:para>Specifies the path of a saved query to be executed. </maml: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="QueryPath">
        <maml:name>QueryPath</maml:name>
        <maml:description>
          <maml:para>Specifies the path of a saved query to be executed. </maml:para>
          <maml:para>This is an alias of the SavedQuery 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: QueryParameters -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryParameters</maml:name>
        <maml:description>
          <maml:para>Specifies the path of a saved query to be executed. </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: 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. To retrive all fields, pass an asterisk ('*') 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>
        <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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Area">
          <maml:name>AreaPath</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" aliases="Organization">
          <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: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Iteration">
          <maml:name>IterationPath</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: 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: 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: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Area">
        <maml:name>AreaPath</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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
          <maml:para>This is an alias of the AreaPath 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: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Iteration">
        <maml:name>IterationPath</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>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
          <maml:para>This is an alias of the IterationPath 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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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" aliases="Organization">
          <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: 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: 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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="true (ByValue)" position="named" aliases="Organization">
          <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>
        <!-- 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: 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="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: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 />
    <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>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <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" aliases="Organization">
          <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: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <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>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemHistoryEntry -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.WorkItemHistoryEntry</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: Link to work item -->
      <command:syntaxItem tfscmdlets:parameterSet="Link to work item">
        <maml:name>Add-TfsWorkItemLink</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
          <maml:name>WorkItem</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TargetWorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="To">
          <maml:name>TargetWorkItem</maml:name>
          <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="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
          <maml:name>LinkType</maml:name>
          <maml:description>
            <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</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:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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>
          <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>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
        <maml:name>WorkItem</maml:name>
        <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,From">
        <maml:name>Id</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
        <maml:name>From</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: TargetWorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="To">
        <maml:name>TargetWorkItem</maml:name>
        <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="To">
        <maml:name>To</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the TargetWorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: LinkType -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
        <maml:name>LinkType</maml:name>
        <maml:description>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</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:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
        <maml:name>EndLinkType</maml:name>
        <maml:description>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
          <maml:para>This is an alias of the LinkType parameter.</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:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
          <maml:para>This is an alias of the LinkType parameter.</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:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </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: Comment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Comment</maml:name>
        <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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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>
      </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/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="true (ByValue)" position="named" aliases="Organization">
          <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: 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, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</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:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ArtifactLink</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: 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, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</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:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: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: 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-TfsWorkItemLinkType -->
  <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-TfsWorkItemLinkType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLinkType</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-TfsWorkItemLinkType</maml:name>
        <!-- Parameter: LinkType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
          <maml:name>LinkType</maml:name>
          <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" aliases="Organization">
          <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: LinkType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>LinkType</maml:name>
        <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,EndLinkType,Type,Link">
        <maml:name>Name</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>EndLinkType</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>Type</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>Link</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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 />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLinkType</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="false" position="named" aliases="Organization">
          <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>
        <!-- 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: 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="false" position="named" aliases="Organization">
          <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>
        <!-- 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: 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="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: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" aliases="Organization">
          <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>
        <!-- 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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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: 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: 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: 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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.Folder">
    <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" aliases="Organization">
          <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>
        <!-- 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: 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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/Folder/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.Folder">
    <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" aliases="Organization">
          <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: 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: 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: 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>Both</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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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: 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/Folder/New-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsWorkItemRemoval -->
  <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>Undo-TfsWorkItemRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsWorkItemRemoval</command:noun>
      <maml:description>
        <maml:para>Restores a deleted work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsWorkItemRemoval</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 ID of the work item to be restored. Can also receive the output of `Get-WorkItem -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" aliases="Organization">
          <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: 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 ID of the work item to be restored. Can also receive the output of `Get-WorkItem -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="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`. </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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 ID of the work item to be restored. Can also receive the output of `Get-WorkItem -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/WorkItem/Undo-TfsWorkItemRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-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>Disable-TfsWorkItemTag</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Disables (deactivates) a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-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 tag to disable. 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" aliases="Organization">
          <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>
    </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 tag to disable. 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="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the tag to disable. 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 tag to disable. Wildcards are supported. </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/Disable-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-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>Enable-TfsWorkItemTag</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Enables (activates) a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-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 tag to enable. 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" aliases="Organization">
          <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>
    </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 tag to enable. 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="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the tag to enable. 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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 tag to enable. Wildcards are supported. </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/Enable-TfsWorkItemTag</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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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>
    </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: 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: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.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" aliases="Organization">
          <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>
        <!-- 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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 file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <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 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: 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: 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>
        <!-- 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: 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" aliases="Organization">
          <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>
        <!-- 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: 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="false" 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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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" aliases="Organization">
          <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: 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 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" aliases="Organization">
          <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: 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: 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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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 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: Import from XML -->
      <command:syntaxItem tfscmdlets:parameterSet="Import from XML">
        <maml:name>Import-TfsWorkItemType</maml:name>
        <!-- Parameter: Xml -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Xml</maml:name>
          <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" aliases="Organization">
          <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: 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: Import from file -->
      <command:syntaxItem tfscmdlets:parameterSet="Import from file">
        <maml:name>Import-TfsWorkItemType</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <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" aliases="Organization">
          <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: 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: Xml -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Xml</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <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" aliases="Organization">
        <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:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</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:para>This is an alias of the Collection 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: 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.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </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>
</helpItems>
tools\TfsCmdlets\TfsCmdlets.Format.ps1xml
 
tools\TfsCmdlets\TfsCmdlets.psd1
#
# Module manifest for module 'TfsCmdlets'
#
# Generated by: Igor Abade V. Leite
#
# Generated on: 2/11/2022
#

@{

# 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.2.1'

# 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-TfsOrganization', 'Connect-TfsTeam', 
               'Connect-TfsTeamProject', 'Connect-TfsTeamProjectCollection', 
               'Copy-TfsArea', 'Copy-TfsIteration', 'Copy-TfsTestPlan', 
               'Disable-TfsBuildDefinition', 'Disable-TfsExtension', 
               'Disable-TfsGitRepository', 'Disable-TfsWorkItemTag', 
               'Disconnect-TfsOrganization', 'Disconnect-TfsTeam', 
               'Disconnect-TfsTeamProject', 'Disconnect-TfsTeamProjectCollection', 
               'Enable-TfsBuildDefinition', 'Enable-TfsExtension', 
               'Enable-TfsGitRepository', 'Enable-TfsWorkItemTag', 'Enter-TfsShell', 
               'Exit-TfsShell', 'Export-TfsProcessTemplate', 
               'Export-TfsTeamProjectAvatar', 'Export-TfsWorkItemAttachment', 
               'Export-TfsWorkItemQuery', 'Export-TfsWorkItemType', 'Get-TfsArea', 
               'Get-TfsBuildDefinition', 'Get-TfsBuildDefinitionFolder', 
               'Get-TfsConfigurationConnectionString', 'Get-TfsExtension', 
               'Get-TfsGitBranch', 'Get-TfsGitBranchPolicy', 'Get-TfsGitCommit', 
               'Get-TfsGitItem', 'Get-TfsGitPolicyType', 'Get-TfsGitRepository', 
               'Get-TfsGroup', 'Get-TfsGroupMember', 'Get-TfsIdentity', 
               'Get-TfsInstallationPath', 'Get-TfsIteration', 'Get-TfsOrganization', 
               'Get-TfsProcessTemplate', '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-TfsUser', 'Get-TfsVersion', 'Get-TfsWiki', 
               'Get-TfsWorkItem', 'Get-TfsWorkItemHistory', 'Get-TfsWorkItemLink', 
               'Get-TfsWorkItemLinkType', 'Get-TfsWorkItemQuery', 
               'Get-TfsWorkItemQueryFolder', 'Get-TfsWorkItemTag', 
               'Get-TfsWorkItemType', 'Import-TfsProcessTemplate', 
               'Import-TfsTeamProjectAvatar', 'Import-TfsWorkItemType', 
               'Install-TfsExtension', 'Invoke-TfsRestApi', 'Move-TfsArea', 
               'Move-TfsIteration', 'Move-TfsWorkItem', 'New-TfsArea', 
               'New-TfsBuildDefinitionFolder', 'New-TfsCredential', 
               'New-TfsGitRepository', 'New-TfsGroup', '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-TfsGroup', 'Remove-TfsGroupMember', 'Remove-TfsIteration', 
               'Remove-TfsReleaseDefinitionFolder', 'Remove-TfsTeam', 
               'Remove-TfsTeamAdmin', 'Remove-TfsTeamMember', 
               'Remove-TfsTeamProject', 'Remove-TfsTeamProjectAvatar', 
               'Remove-TfsTeamProjectCollection', 'Remove-TfsTestPlan', 
               'Remove-TfsWiki', 'Remove-TfsWorkItem', 'Remove-TfsWorkItemTag', 
               'Rename-TfsArea', 'Rename-TfsGitRepository', 'Rename-TfsIteration', 
               'Rename-TfsTeam', 'Rename-TfsTeamProject', 'Rename-TfsTestPlan', 
               'Rename-TfsWorkItemTag', 'Resume-TfsBuildDefinition', 
               'Search-TfsWorkItem', 'Set-TfsIteration', 'Set-TfsRegistryValue', 
               'Set-TfsTeam', 'Set-TfsTeamBoardCardRule', 'Set-TfsTeamProject', 
               'Set-TfsWorkItem', 'Suspend-TfsBuildDefinition', 'Test-TfsArea', 
               'Test-TfsIteration', 'Undo-TfsTeamProjectRemoval', 
               'Undo-TfsWorkItemRemoval', 'Uninstall-TfsExtension'

# 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\netcoreapp2.1\System.Security.Principal.Windows.dll', 
               'Lib\Core\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll', 
               'Lib\Core\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll', 
               'Lib\Core\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll', 
               'Lib\Core\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.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.ExtensionManagement.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Gallery.WebApi.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\Microsoft.Win32.Registry.dll', 
               'Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll', 
               'Lib\Core\Newtonsoft.Json.Bson.dll', 'Lib\Core\Newtonsoft.Json.dll', 
               'Lib\Core\System.Composition.AttributedModel.dll', 
               'Lib\Core\System.Composition.Convention.dll', 
               'Lib\Core\System.Composition.Hosting.dll', 
               'Lib\Core\System.Composition.Runtime.dll', 
               'Lib\Core\System.Composition.TypedParts.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.AccessControl.dll', 
               'Lib\Core\System.Security.Cryptography.ProtectedData.dll', 
               'Lib\Core\System.Security.Principal.Windows.dll', 
               'Lib\Core\System.Xml.XPath.XmlDocument.dll', 
               'Lib\Core\TfsCmdlets.Common.dll', 'Lib\Core\TfsCmdlets.Common.pdb', 
               '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.ExtensionManagement.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Gallery.WebApi.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.Win32.Registry.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.Composition.AttributedModel.dll', 
               'Lib\Desktop\System.Composition.Convention.dll', 
               'Lib\Desktop\System.Composition.Hosting.dll', 
               'Lib\Desktop\System.Composition.Runtime.dll', 
               'Lib\Desktop\System.Composition.TypedParts.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.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.AccessControl.dll', 
               'Lib\Desktop\System.Security.Cryptography.Algorithms.dll', 
               'Lib\Desktop\System.Security.Principal.Windows.dll', 
               'Lib\Desktop\System.Security.SecureString.dll', 
               'Lib\Desktop\System.Threading.Overlapped.dll', 
               'Lib\Desktop\System.ValueTuple.dll', 
               'Lib\Desktop\System.Web.Http.dll', 
               'Lib\Desktop\System.Web.Http.WebHost.dll', 
               'Lib\Desktop\System.Xml.XPath.XDocument.dll', 
               'Lib\Desktop\TfsCmdlets.Common.dll', 
               'Lib\Desktop\TfsCmdlets.Common.pdb', 'Lib\Desktop\TfsCmdlets.dll', 
               'Lib\Desktop\TfsCmdlets.pdb', 'Lib\Desktop\TfsCmdlets.xml', 
               'ACKNOWLEDGEMENTS.md', 'chocolateyInstall.ps1', 
               'chocolateyUninstall.ps1', 'CODE_OF_CONDUCT.md', 'CONTRIBUTING.md', 
               'LICENSE.md', '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'

    #Branch of this module
    Branch = 'main'

    #Desktop of this module
    Desktop = 'net471'

    #Commit of this module
    Commit = '4868f143cb49b1d643a317103ae65c0cc81633de'

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

    #Build of this module
    Build = '2.2.1+2667.1'

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

    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 Repository -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-TfsGitRepository -Repository "$wordToComplete*" -Project $tp -Collection $tpc | 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 54 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 50 Sunday, April 3, 2022 Approved
TfsCmdlets 2.2.1 58 Friday, February 11, 2022 Approved
TfsCmdlets 2.2.0 50 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 72 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 61 Tuesday, December 1, 2020 Exempted
TfsCmdlets 2.0.0-beta0015 70 Tuesday, July 21, 2020 Exempted
TfsCmdlets 2.0.0-beta0014 51 Sunday, July 19, 2020 Exempted
TfsCmdlets 2.0.0-beta0013 57 Saturday, July 18, 2020 Exempted
TfsCmdlets 2.0.0-beta0010 137 Thursday, September 12, 2019 Exempted
TfsCmdlets 2.0.0-beta0009 82 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 296 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