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.3.1:

58

Last Update:

09 Apr 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.3.1 | Updated: 09 Apr 2022

Downloads:

4,209

Downloads of v 2.3.1:

58

Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

TfsCmdlets 2.3.1

This is not the latest version of TfsCmdlets available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

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.3.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.3.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.3.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.3.1'
end

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


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

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


package { 'tfscmdlets':
  ensure   => '2.3.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 09 Apr 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: 066F17434E8E37BBF67E8C105E5743E6 | sha1: 14C5A538E607C102F92D130314BF2A63FC1BA787 | sha256: CDE18EE26A68F73F58A0CEECF9849D08F8E21CBB47B5BEBF7F67B17A05767DE4 | sha512: 31D74102E6FF7605622FEAB4BC76A4D36E397D964C01D6429E404936521D8D0F247A4BA02374EF60B7EB97169F240C426C313B3FC61B29D017AEDDFA830455C6
tools\TfsCmdlets\Lib\Core\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 9E09C9A7936553E1A4E6EFF84D887717 | sha1: D5FD56F73A1A07D96B6924749D92445C20D6FBA5 | sha256: FBB2970040E9E2737BDF53B08D771DD214BF99383B09C2B1C35A18F68292848F | sha512: BAC698C0D950C2412524376ED36A41E1BD71878182A34A5D76C0A436A4C254A775E860AF1805A8C80081780A6E3B15ABCCCBDAEF4A385669BC1375E1D533330B
tools\TfsCmdlets\Lib\Core\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 8644D664C04B203F3DD81B4C4D677887 | sha1: 82D8EF9949B3A791A8BA93261FD5EC3E87F5F25F | sha256: 2ACA544E840E2F673128541FA940419C7C51814102E8250125AA13D7594883C1 | sha512: 9E179F668F1776364C4046F0F06DDE216D8E3DA3C570035192D48AB4215182045ADD26E100F4EED6E62D113E4857BED15302E86FE25F7995F2E78A31EF844682
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: B4F69D6DE51740569F64C6D412E29326 | sha1: FF59A3D6C3E646E9A1DFB5CC9FCDBF54FBE566AB | sha256: 90DA86CDE1C3F4719A6BD441E3F197E3F43F151B9D504B221E841CB61D054B92 | sha512: 0A711EB842132B1C886501651B852A29D0BAF6D30236869CB11F59D14B7AC712C0227FFBEE3CC67D8B08F7670151985FF942F5A67D3378F2B3839418327EFDE2
tools\TfsCmdlets\Lib\Core\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 1D4C52BD4C1E6B16C7D4AD429180A682 | sha1: D9184F5DA728C7B9BA9B5A03CBD34B181CD091CC | sha256: B90CA453200982FA685CC9E9D466C60ECC65528E9A4ED0B9FDA32D7F0B7D873E | sha512: EB512AFF3A73D4CE2D5A81281897A649F4646BF93BD40C0F96524A8C43AF3DF4415A0E870544324ADDA63EB8B607111D35ACFFABA1298EDC3F3EBA0AF22AEB69
tools\TfsCmdlets\Lib\Core\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: E6C5AE59B7C2349E566AF33D3D3CAEF4 | sha1: 01C33E7E0127C70533116B83BDFBC197F37AAE96 | sha256: 382BFFA5F5B1FAA589984BBBE4949A1B447314CE8564C0DE2D4988A68B392690 | sha512: B3C842DD130BC1A3EDB2BF548DD25152C88603F9872106BDA1538BA53F4B31F4D29EC2490992FE0007C36C337DE2C32A0D2CE62B852FCE32AA073F8F872F483B
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 548DC0C1CE03BAC996D0767F5D46F0AB | sha1: F1F6BA10B981E09C030722C476987BF490709B89 | sha256: F5C7C4AB066F741B282EDC7B53DDC393BEE5E6D41EC384E5E93DE060E79FB4EF | sha512: AAEB4DDC1F667D31A293A8CF7504977A9AD15F05292D559F8A7E3B5E4414EF6BC15F098A652B922CA94CA08EBAE98178538E4C4912A04181B8A2EE6BDED3ABE9
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll
md5: B01BCB31C4160FC4BE3C57663895F1B7 | sha1: 76148BB6F1F3C41D9432C3DF8882D65098C84AEB | sha256: 3E048CCD877505D1A181AA4959CA943ABA0E14288678A52B30B30BFDBA241289 | sha512: 585E9C184A866CD0D4673F19F9FED34F11CD08C4B0F14209AA3BBD79A92ED831F47F6B996F5E4E8B060BB17D265A644F977F31B083C5C3E0EC9485B0A6690393
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: 7C60F4ADAF950A5AE14E8FED55D98447 | sha1: 0F0D1F6668BF7FDE9DFC41B9C3E6B86383CFECF2 | sha256: 978F40213C17674A6E840C3F7345894A13E700381EF6368C8C6913F7D1A0EB8B | sha512: BB9A7474DB5D2E9BB3F0A5070C1229F864E66E6281F5EE99D32F0843BB7172236EE6B967D2832F2F43F241C85050969034AA8FDB75B7A6F7714C96546387145C
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Common.dll
md5: E2790090DC11E7E11D7AFAE214596E78 | sha1: 21C49650FE3F7F4D336EBA970C84BE91800002AF | sha256: 4092439F9D3D3462E3DD483DFA1A05ED47E0ABCCC48E28640521A60A93714C68 | sha512: B951191832D4D424DE16266D71654A2EAC42D786793DC6B163CA90173412A23BEC41444D838F129E485A299E0A4297BE485909CCF86A786CF8DD4493931449B7
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll
md5: CCFFE009B1781B9B921B2AED7D5E2651 | sha1: 5EE49A0BB8E7B1FF37632D34DA9DC6E6A4798BE4 | sha256: 1273E2C2907821D1F4AC0AB214C08CFA8D2C3B28E82EE53A95E69D8F9883C5BD | sha512: A518636478E97B06224021BEBBFA5656AA938AA69FBDEFD9E2EE29277948F38FF6595E8DD12BCA5CB7948074799CCF12BEB52D4BFF51BA4B68DDC2AC2F446A96
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 0067F604F17924D0F774A9A9EEA7A2D4 | sha1: 6FC6638F7593EE3D7F9A7D275859A6BC33811881 | sha256: 58400B15BFEE8C7DB428975C09E7CC81C4F64819057D1CC3E853E24BCBF50F88 | sha512: 9B415940EFC9C8ACBC950FD0B3263CB092FDB8F0FEB8ACC31EEFAD542BED223D03B132D42A866899337A58148D05D085B39E211B5EAB51F49B21928CEEBE2083
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: 9E3A4A32B03E7BA5A490CF01B8C9F39A | sha1: F1F7A4B416397CF7A89A2F48796682B288F0D5F6 | sha256: 8A93534C7D2A454ABDB790AF846D7014ADD9115794F5260929FB8B63A83CE36F | sha512: FCD363DD93AC1093AC5B50CE51347DF470C16D1DA8D7F869C62768636723B20C0AD369A2FE00003EEFB7C4101BFB9FB9417A2BCE8C5A6AF742A1E6DF647A332E
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 7C89DE0244B5F3EFF998780005B77E88 | sha1: 8871FA3D7A39B4661119334BD954938E9BC7BDE8 | sha256: A911655E4C20BF1B6545E6A63B1DB30A4A8A367F2975DB222A7E774B213620CD | sha512: 07A920F0797DE70504F8CE4C89390D9365EB25366C14442B7980202D1BA5AB42A2D4DDCFD07A53505D165B8BF50A7331BE3C210715F2707F70EE84B55ADC9A5E
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 92B4193B38E9F6FE4017B4813CF00909 | sha1: 95F284F0C73F038F492621BAD70FCCEEBA21BF75 | sha256: 77304C57BD6754F690C6A937B59E658EDC01EF2671F3B48A980F5BAEF13DD234 | sha512: 992E750915C578D82369B3769B123DA0C96A162ADC8984C4FA0F77D4BACD7FCC7AF22FD04732AEBD6D55DC5A00AA2A89E42A110E140FCEB9AE7946CF1565DDA1
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll
md5: 878BC3FD25159DF67C1E0C5CEC557951 | sha1: 76A72BDEF2F86D453F413410BA599C0EB39ADC6D | sha256: 1EFAEDE1EF15F84C117AA63D9C1A94686C07DEE93A4B2F3586FFBECB9E175E4F | sha512: F33FB29283A02D1C1BCF506067FBAE0F41B0D433D5DA0290DC4769128F108440BD6E5377857241AAF6190CD27C2D436E1FB31E405716569D38EEEFB31D0E1C27
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 520DB3F98811BB5A56B15D7307CBAE7F | sha1: B814CA82925F6A5FE8824DCAA50BA4E839B0D950 | sha256: 0A16D3951592754E1359843D4E67D297A4E498A5B2E6D3CCA4B67269159B42B0 | sha512: 8F72B1E466BE1F49A244F2C39114565920CCAC8A2FB7C4E0403768529977BFBB89618B036DCA9B492272D20D8FD386788AD9ACFA6D42393D42710A744BDF2F62
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 3D77AEE6A75AF51DB761E0B8D5E5C257 | sha1: B68F8326DFA7A31768108E7D2E395D9A5B9DF393 | sha256: 8D6C4948340EFD064C0FD28D50D7CC27CD05C7441B3B3712C16F82D559EE9DAB | sha512: 72503AE48E98915CD9B3C18129DC7AA44345A25BB6A7C19AB94C4928D9B3A015FFE341B7FBDC8480F3716F35937D869DB46758A50C4B296050360CB4FBD7B48B
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 55F2253D991B06F022D24CB19DA0CA2F | sha1: C4ADA881A24A454772CE27530E06B5030D7D3912 | sha256: 145824251E2877EEB18575531D3F9B0A736E1AADD6F0C069361EBD316903BB63 | sha512: B6C98BB83EB9B3BCDD722384719C772B6F4C42B0A127C00E2A08032D39563A1851D90489C040531C2F19650407479FC91970892FF212E1D249B1123C638D43E2
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 878F3A03BE0D3C34C86CEC0B58B21938 | sha1: 766DB62C5AB92682D85EAA4A1DCF4038C7C6E492 | sha256: A3EE64D8B5626B8ACD509124D5AB12893C8A926EE0AD96863ACF18DB7557D733 | sha512: 0115CD7084105F6257957B385A501BCE8A5375264D4F50B34DEE4CACE50C29D2B335FFBBBB3368115A1DEE7CB204220594585E73A4BC652F679E9B94BFF6D640
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: 8605A1A37A8466B0666E71A1717EC097 | sha1: 9537A0346A2139F25F8B41E1F70D024532FE82F2 | sha256: 6F4A21F71BB224AE6F61122F79D2CF1FB39CEC17911E1F88C50DA1524A26E9A5 | sha512: 5EB5C1BAC21475D9DB09ADD99214FEA3CF3023D1EB9A4A5994B89E178BF86F5B81B7C81A6556E8DFD313D5AB4EA21C260DF5410A2EB611EF7BAD991A2491210C
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: B3B7D805E8314F1F86463AF4CC67458A | sha1: C68DE70FA8DB759B5997A6E5FED8CE6D79B3F20A | sha256: D9651EE3F03D9B3B379899FDA031B67177E7915F5460C8E20FA343265DF889E2 | sha512: 6F7E68F7BB5A9E0BF90831B0E9BD3FD6AE7B1562931354696AEF58F5D8EAB6B83D61D034235DFC53EF2B47C74B86157858FB1F1D32F89322F448AC36CC261417
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Common.dll
md5: 9BFB044A7B33DC3B97C7549063C5F389 | sha1: 8A8E7ADBD9AA67A8CBDC1F255A4E15EC3B32000D | sha256: DF40EC4A7E40D795A69FCFBEB96ED1231F23E02864D0792CAB5D2190A5623380 | sha512: 42C7DCC1DD201CC77B4EC945309EACE26487706406FB6E2614D546349FD479CE70A7AEB4AE2F3C60445FE62A8866EC0C78E5B26E8DB9F85A359D76B743E2778C
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll
md5: 511DBABD05BF37F0CC58B98CA077E819 | sha1: 794D56198EE4BC33E62862ED118172291221815B | sha256: 30B3B7705EE3DADC1F5C5A9FC3474FFE863205F8BA6276D6CF837B5290360551 | sha512: D989236BB28513372E3FF46A35339586D405C09CF455FF2B5F916F3809B04FAE03D6B7841DA103ABEC6A489E8BEDD0902300E92387F087C6A22DAE6C2895EF9B
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Feed.WebApi.dll
md5: 6D603D689CBCC0FDF20F8DC9A0D5C899 | sha1: EABAE97EB587A2D10B58E32AE4D850F72BDDD624 | sha256: C0148699CEDAD05BC5DFB2199B02F7DA8C7801EBCBF42970B0731989A1433D34 | sha512: 0FBC87B007C33732910B961F7FBEE2DD2CEE41AA8F839FF0922401BAC0BE194F68974B3321ADC4CAF60298E9F69439CF408CC0BB95B19E5161B827FB84B4ED7D
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Gallery.WebApi.dll
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll
md5: EF6CA0123051D7B5D7E0BBF6CC8704CD | sha1: C28AF05F547D33F2ED4383E03D3C67031582076C | sha256: 4CA6E3D97F6318073246F45F7A0E95B43B08C6790D6412899AAE673C1C2EFC9F | sha512: 9D5080118D79339BBEBC0A951041C9EACD63172A6CFC198B5CA263AC16E10FA2157F06677D112F8CB31CCC72F5805BF30FFBAE393BAFF7BE9DD69B0E3F75E611
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll
md5: FDBEE9D5B28523A629682803BE4E1C03 | sha1: 3F22F16B16CD0FA34828EFA7AA92967A1F8DAF86 | sha256: 200AE89BC9B8EAD07A78CE09968B907CF113110C5787D89DAFDB2A580919B4CF | sha512: DC5D4810928813751EE0F4292092D4F6B3FDC206AD9C8B0F172FA481CC9EBF373642E591E962AD4CACCBF1BDA14FE3E9C6975BA24C3A7E266903F5C328A50E91
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 0CFB32A9B5843182B276FD5AF613ED82 | sha1: 5FCD2ED740C62E694B46D9F83458C40DF04E2418 | sha256: E4AAEE7FD46D83E635E11CBEA608B9437E4C8B0DBDDE82525948DAA193644FFC | sha512: 8F29782636A3AACC494ED5A52135B493A6AC2D90C4564B8D0B4EA1742922468F833219481EB6362B42D936243AB967F38442303E7A73C824C37216A4FD240182
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: D2CBE664346E7BA125EE9D4C4B1BD370 | sha1: 9189AF2D1D5383E4B507C7ACB2DB3DACA85DAAFF | sha256: B79859788046D7B20A8730477D4662AAE3A66D062B2C20EE780FA94E6CAF8570 | sha512: E61B5ED1CA8FA399DE593D0FB1F81BA4BEBAD032D766876CBF8E92027401F8AAF59FFD53843E3722769E94AA2B92FE79C08F4E6548329B841C35F9A9C494D5B3
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 88EAEF1241DBD281E046673EB1877C09 | sha1: FBB6D5C6A6F4485957CA74EBDD71712635FEFCA7 | sha256: ADD2FF2D691BAD30EBBD7EC9CC3D285D1F332A766325A83E359EA6552AAD395A | sha512: C625D0E28B82BFA9F597C57160B23920E376AA1BD0F3751FBCC1E91E4AF55F9C1B77AD128711BD203B6D5DA0F34503E16BC30C19E66B1425AFD766A0728707EA
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: 2A3E046A56FA02EE886D6A24E1FBADDD | sha1: ECEB681E42C21548E4C97B068356FF917FCC3CA8 | sha256: EB27F989BC8F63EE4C9AA8786D76711BDE9A6CABC202F7E5F36DFCCD6FEAFF6E | sha512: FDE08A07BDAAEBEE3A87CA5E6125F261ADBFB7E92D6D1C63B1F41C56B4C77F1B76959AE60759D0F1F0830F0A28FCAE423B47DC92419F06C481A1B45F2816B0F6
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: 5BD40A889C40B339FC4BF81412739489 | sha1: 52A57117FEC667ECB8842D313B69B83911B05CE5 | sha256: 8D9057BF77D49A277D3A97AD4F94C8992835EE459F566951A93935EA6310A70A | sha512: CC58C1CA3FE3698FB2F320122082797EDFECA179DBEBAEEA4C1EFF46CF7BCCF30C015931AD43C46597225DD18D0D902C88C3A975203968D6BEA885EA3AEF7AB8
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: BB7BE6F482212E544286071EB32489F4 | sha1: D63DEB654EF8F58C55E275238D22F4FE0B1C035F | sha256: C38A890ECDEEA59FAD16D25352AD4C129AA6342E9EFD288602620E9E5D4EF1BC | sha512: 98334400BDE905AC081140D13A0D356C24C1F9F0A20D3462CA3C31CE939B49654E433E88A67D12057F82DE056973A3CDBDE5BD8384464FB8CAB92067A80EAF7E
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 3046E8E646F50459DE4FCA1953513826 | sha1: 7F6C888793274D4015C38E5BA8E17AF1C440F627 | sha256: DDD2FD10282F13F14A899163E686AC5B57A6DA65AE845D5CC852B65CE727B0B3 | sha512: C7966EF81FA3950EDCED595433F28F268A59C6FEE8433F608960CEA44F9B7403CFC8AAC077DDD11AEEAF94A70BAA31A0E2D2E0CBC6EE867CD1138324853793CA
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.UPack.WebApi.dll
md5: 763D7DD8BB59B916A758135DEA0316D5 | sha1: B6350BDAB7E6BA84C51F6FD46E67DE0D6BB3BECE | sha256: D1C133AA23FE8420D18A5CBAC144DF5C9C081BAD7B7DE12AED76660755FE11A0 | sha512: 5EC2E936B6571321E437E196EB73C0FB00B78BAA1FD3AC7F911C3E92546ED185D5B1676750FF3D0B1E2D0F5A23BE077976A1A02D6486CF5DC12F2A4F2A83846D
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll
md5: 7CB77935BB3FDE8DB6E1F53D2EBAA603 | sha1: 2E9D85CD58834B2304A767ABE848520C4639CCEC | sha256: ADFAFD4931F9EBA7F3369F73C651A4862987BBE14DF0CF567D13A893B347E628 | sha512: 45C4523D7ECABF29E486E8911A8C3DE1CA20BE7BFF46674F743D50E33910287876131BFD83BDA605EDC84D640D61584CAA35BAB7986680EFB468E7D00AAD24A7
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: D7369E4E106C14BC9C9FEA5713112D9F | sha1: 2DDA1659D5B55E54B436D1197D01AC4C236567E4 | sha256: 3868A19FCCC15BA856556ABC4A7D893695A40C3D87EDEE287BB6944F588681F1 | sha512: F374971170F0BE75399E0F9CF430ACE272416B052F6D019554C1781A59563BAB76DD3B22360E25F0A35F4EE2B4C569F99E70DE4CEE2144E897A6391A9ADF7820
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: F33AAB77B4FC9E9FCE46B5981632B4F2 | sha1: 2A27E637E1CC7A3F388B069561A21791ACB728BF | sha256: 3BB33590FC0E41BBEA010522C5BAC890A247759D598E6245831C8706CFC87BF1 | sha512: 836497816BBD927F87F6EFDA55666DA60E6F764150D1925CE39E5C34E874C8EA8515C871CD21FFFD4FD7D68823F93687EC19CDD0F97C87F98D961E6DB37F73AC
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: 576E5FDFCBCF538366FA2F8F0F76F4D8 | sha1: C0E18B945A0163964E6C437E6CC03084295270A8 | sha256: 8A83493FD02086573E7FD836A184937256A4E9F7DED885B16C46BABDCAD16B1E | sha512: B72C499521F3529C43D3FB8F757DA9D59FAFB1E8EDCB68FEF90BDF2DE9E3DC5AACAC133851E1FF48FEF5F524BC3C7B4912B1BBA04DBF33571BF9B4104C35D929
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.3.1.2724": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Packaging.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.201.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.3.1.2724"
        },
        "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.201.0-preview": {
        "dependencies": {
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          }
        }
      },
      "Microsoft.TeamFoundationServer.Client/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.201.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.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.Pipelines.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Client/16.201.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.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Gallery.WebApi": "16.201.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Gallery.WebApi/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Gallery.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.InteractiveClient/16.201.0-preview": {
        "dependencies": {
          "Ben.Demystifier": "0.1.2",
          "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
          "Microsoft.VisualStudio.Services.Client": "16.201.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.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Packaging.Client/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview",
          "Newtonsoft.Json": "12.0.3",
          "System.ComponentModel.Annotations": "4.4.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Feed.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.UPack.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Release.Client/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Search.Client/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.201.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.201.32314.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        },
        "resources": {
          "lib/netstandard2.0/de/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "de"
          },
          "lib/netstandard2.0/es/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "es"
          },
          "lib/netstandard2.0/fr/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "fr"
          },
          "lib/netstandard2.0/it/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "it"
          },
          "lib/netstandard2.0/ja/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "ja"
          },
          "lib/netstandard2.0/ko/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "ko"
          },
          "lib/netstandard2.0/ru/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "ru"
          },
          "lib/netstandard2.0/tr/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "tr"
          },
          "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "zh-Hans"
          },
          "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
            "locale": "zh-Hant"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.201.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.201.0-preview": {
        "dependencies": {
          "HtmlAgilityPack": "1.6.5",
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.201.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.201.32314.1"
          }
        }
      },
      "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.3.1.2724": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Packaging.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.201.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.201.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.3.1.2724": {
      "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.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G5xWtOyq06EJeq1ZVRWTzAm89u/8ktvOq7Jog3JpLTKF10UbWmsV2FkatgIUHzyITC3yh8tghuvnp3571eJHpg==",
      "path": "microsoft.teamfoundation.distributedtask.common.contracts/16.201.0-preview",
      "hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.TeamFoundationServer.Client/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VhwKd/WnNXAw1l6zUpmRlj4ss0jYPqzoDCsqIgE4y4lrIcQytIffDL6P7FLeZalVIwL+9OoH1r5d2m8apT+VIg==",
      "path": "microsoft.teamfoundationserver.client/16.201.0-preview",
      "hashPath": "microsoft.teamfoundationserver.client.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Client/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Wa/DGdEPTMScC/ZhXZY9c9nx3pfJLMyQU8ZpAluSvGbQmiboMFa3GqjL8mGj+0NcBZkZasmArj+3sV8lciiUg==",
      "path": "microsoft.visualstudio.services.client/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.client.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UO5eBbu3gnqlYUnzfAP2O6aXCj6EJ7ZFMLqZz+S0uvG6iSzpMWkhkI9+ke8BV08SKdUA+kgtTj+4lNW87uLpCQ==",
      "path": "microsoft.visualstudio.services.extensionmanagement.webapi/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.extensionmanagement.webapi.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Gallery.WebApi/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HJTzaoKvy3IgRy7ixcbJMA1mZxKsMMnDlrL5+kAly5+DCrk4BzzAf/FnSnDUO+KuISTDgjBMeCh0PNcSQhAuMg==",
      "path": "microsoft.visualstudio.services.gallery.webapi/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.gallery.webapi.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.InteractiveClient/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4T/ZcnLKAxw6gu7qOTJpZ5J2K0pufmY4Z6ahhPpwvm0GaIwwibhWqc0R0pvL39vCZWcxPQbvednXU1s2dyuQYQ==",
      "path": "microsoft.visualstudio.services.interactiveclient/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.interactiveclient.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Packaging.Client/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-J4Ab+F7UyN4Fn7IZg6ZzrpuRrvx7ZdYQkQEh4xAwE2zRww+QmnNY4+zZLU4HJNP30+Vt+OZ6OM/DZuGGTkQIhA==",
      "path": "microsoft.visualstudio.services.packaging.client/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.packaging.client.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Release.Client/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bv+p8AbL/PZW72lvaVQ5etGmKwhTxIC8NL+asVC6rDdi5yZjR4EizGaUU0Y4NcEvgSzNn9cvDbPRSLT4veNd3w==",
      "path": "microsoft.visualstudio.services.release.client/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.release.client.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Search.Client/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lqpEdDVf70k1HwO9+hjUmQ3h52W8NRhEN/sFQ2IZmByZjvT1U6OwILOnlf2NTS7vf8BXZkRi9Y1KexwNrqqyHQ==",
      "path": "microsoft.visualstudio.services.search.client/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.search.client.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RdDgNe+niy7hfI6bsXwCzlq0Q66bmfwBvuCS/p20wBkIS/5k3/6zzVQ1kFcHFyZcM/tHaId6vXLMnpN4ZMXeYw==",
      "path": "microsoft.visualstudio.services.serviceendpoints.webapi/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.serviceendpoints.webapi.16.201.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.201.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kJ14pKN1Mgscpt1xyng/FOmChV1CCNVU8Cg2t2vkxCpfLT7h4xWyZN7oTIL0wF61aBVKUtGfKCujuPHrDheOaQ==",
      "path": "microsoft.visualstudio.services.servicehooks.webapi/16.201.0-preview",
      "hashPath": "microsoft.visualstudio.services.servicehooks.webapi.16.201.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.3.1.2724": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\TfsCmdlets\Lib\Core\TfsCmdlets.dll
md5: 8CABD8F2227030B0488618B6A661C090 | sha1: BF0D640225EB03AD75E3D238B57A00E2EF81E2C0 | sha256: 2311B8846E64FF97308893F313FF512C3F1A7989B9A71C82EC73DA33D1EE6323 | sha512: 2202BF27C96FAE8D488AD4688201A0F514BDE55D0A733C099A3CDB491A589DC5B30DB0E1914F52543EB15633281D254DEB601002162622A4E0F4C4F959D60422
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.Artifact.GetArtifact">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Artifact">
            <summary>
            Specifies the package (artifact) name. Wildcards are supported. 
            When omitted, returns all packages in the specified feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDescription">
            <summary>
            Includes the package description in the results. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludePrerelease">
            <summary>
            Includes prerelease packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Feed">
            <summary>
            Specifies the feed name. Wildcards are supported. 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.View">
            <summary>
            Specifies the view name. Wildcards are supported. 
            When omitted, returns all views.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Feed">
            <summary>
            Specifies the parent feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Version">
            <summary>
            Specifies the version to return. Wildcards are supported. 
            When omitted, returns all versions of the specified package.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Artifact">
            <summary>
            Specifies the package (artifact) name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.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.Branch.RemoveGitBranch">
            <summary>
            Removes from one or more branches from a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.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.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.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.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.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.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: 2CF4C68D3290308C9104A6EFD20DF917 | sha1: 5E21F89750257ADE04D0D34F7D3745C7D1DE4FD6 | sha256: E9CAC85A13A7DAD4EFC35D446DAE915D0C91E47530643DB74D1891397758586B | sha512: 2E658867FB27186F737A9F9A95D9E631A115AC543037CD41D6635A2E0B3749ED17CE7874F490D97DA3A397A5561FBB56B44832C9214C87856E5E1171AAED376B
tools\TfsCmdlets\Lib\Core\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A0044559553F0FC25E3FC8C729533E92 | sha1: DE83BE602FB45995BBC6C2F6FE557DFD3D722B36 | sha256: FDB9464281CB4C7003AED2DE322229191670C6280A88D982ADE185079722929C | sha512: 35EC12E0CA139C22C636F3CBE8896BFE8BA6C14BB2F6F0F42D77816E43771CF82D54672C5E6809754F48AD2D1B7C73259F5ADB496971BE385453DE51CF8FC224
tools\TfsCmdlets\Lib\Core\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 4686D46686900F91216A1644AD3F62BE | sha1: 27C072E59DB5C369BBFE07C349CC3A13A9F9124A | sha256: BDBB680D2B3BED63ED93D7A7E6AA9FD34187608E473E04B6FA9E5AF4447D0F5C | sha512: 7CC4689A0B5220B69AA588F1979DA54D06BCEEA140FCAB32F7CFA8B32B56B43EE6D3508966799D33C7CC14AE834BF54FCA15C0C4B887346C9882A4BAD94A0E68
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: 60726184BFA02B209B627794A9AE41CF | sha1: 6A395FF4201533CAD2A2679A57D887166AC92CE3 | sha256: EEE0748D82989155FCC96B46E966D2D88DE7EFD1F46F9535180A7481E61569C5 | sha512: E97DDE137C55E3214F2A0ABE2318E0F7CD2C8695B2A567A8102933F03CFECD3BAC405EE656BC5D8AA14A44BFC0EED29125629B787141E18D59663A781A435D90
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 38F82AF63A90ABCAEFE99AD2F949BD60 | sha1: 8536159AD18F370D13525B08D27E2A632C7A953E | sha256: 31E62E7D93F90B2DB681D7C08461931BA88CC7FE1B2D02C06621CCE50CA3F2F8 | sha512: D10AB26283A1A7897277E0775E1465B762C15FE93D1FC339A7ABBDF68B3FB49651417CEFFC753A7D046A914E57DA0182A7FC76B5C4DB73B136BFA4B73FF049B6
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Client.resources.dll
md5: 84E5FC6FBF563A64C041B64F0F006858 | sha1: BD33971DCDDA01F6D486815A08F9A927BDA490FB | sha256: 70070C9FE2FF29E020D8E5E2FFE155A7AD6DCBF5C0A8989338121C9813E76C18 | sha512: C6D205D3A459C7AA858E0604D2736EF86A7C6F3CA073F1325F0A655C31D9A3CBFF3F4C95245D7D4DE68265F659834B5C7FD01E3478CFE7A47267430D5D906006
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Common.resources.dll
md5: E0EE63B9AE41B75944A23F0CA259D889 | sha1: 5933ABCEF1153A33783E256BF82C46C7C99D26CE | sha256: E9390C4487A04DA9422C0623DB66C493BBC2E91D21A3D15E25E35F30CE4D1036 | sha512: D2CDF6A076CB8860516F090B89053F2281963AF02CAE370F3A911FDB3FCD7B28439199CCE052D876CC15D977DB5C93A5F3A397AD6C093F6082D987671037B027
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 96688DD192B51A815CC0F63E810411E9 | sha1: F7299967F26981EDC6F980914601EE514EFBC7BD | sha256: 5189032147C0D6E3079EE45B522447BF054147101A12EC62731BEB8A0EE2197F | sha512: 3E711ECEEC171CB2946BBDBA8E16157A3854E54E4FF8FBE08F922074BA66BCDF98E1FBB830EF0A83ED0AA549FCA67BA7834C9B0354C3DFF22E6EE201393D8DF4
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 77F5D630068630FA1F2CD4546F8F1088 | sha1: B30FFBD6B2F7CC51F94D177577B7C2B8942188C0 | sha256: 7E89A8F64F1F3212B62223EABBDBC9CB0520CE02B8EE0D06D8E5FFCB3B468057 | sha512: 3D82AD790C32A9956CADC386994A03F225539E20755366EF740569C0306604F1F755C1BBEAC24C763FF59F9C1AF71F60EE54AA2C24BCF7B2E4345EE86912E678
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 87F7DB796EF70674BBE7D06F34DAD693 | sha1: CDA4CD2AEB94A737BA27CCC053E4C3DDF64E04E3 | sha256: D1B17101CC5341320DD85AD11E551AE7198F4D66E9665B8F826F01338392AC92 | sha512: C829C0A1E6226A397F13D3610282BC51C77558CD9B757C0A105CFE7C5727AE3D4D70394E8E81803FD1CDD688764A6E74E307F2EA27807C5EC451C40C788D811E
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: CCC2B916A437A740FD9C640255B69FF6 | sha1: 8E3BC67163248845B532EA6FFCB5F8F2A88C3247 | sha256: 59D318B2538E2C15FE468920FCC143BBF1EE1C41BD9EBAF96327ED7590EC5A4A | sha512: 65A018A45DFF19D7D5CFEDAE6A8E261A42A0CB4D7DB4F53D8F503DD4D27A57D68FC6A6499D11E73F51CE2C5D97E455A8035D4579C0B8BE325799D31F9A7D8E74
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: E499A3E052AF26C149BB4AC95E0FC41A | sha1: 5FF55DCDB14D75F5FD5C33784F6DEEA9E2E9CF5C | sha256: 69F8276E20D4B1F7F8F6D6ACA347BD879CEEFAC3CE09D5E843AB1598393397B9 | sha512: 8937B6E8E9C9E6DB0DFB2EB4464472B94D8B1555D7B1149A857278AE22BA32E56FB726E1BF3D52B8280781C73610D1B860226C7A7F3F0470232003284EFF2D6B
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 7D351865552BD27600F355799D7D9084 | sha1: CCC8E002ED18A2915834D10E96E3D6A337A52519 | sha256: DDB0D3CC9C14159C83A43F5967D3C9450FA79AEE959C845CB9B7AAE4247CA99F | sha512: FA025A9C2574F2760FF0E7C8414A48C131C099C3EE2743FA4F4E5CB730E4F5FE1DA06E0F35DFB3B0C3C3FCF325B4C0A568A5AC764DBD04345050AA27DADF40E8
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 81C43AECB7929DF4751ED0AC4D3C90F9 | sha1: EE72E424AA6DFB56538ECA1A03EE55B4BB29F9B8 | sha256: 78770CDE78EF0706052138C669E5F67003D72B26A1B76E36B2D72C847583BEC5 | sha512: 59FFE6A2EBEE776BC28F5500DA7A489AB1EC6F6DB3024905396391EEE84BF4C7FD8EC41DA01C8858501E0AB9C9AD573CD91382D63A67FD2E4626312D2A9DD763
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: A0824A0E8697D8A8FFDFA6F604433289 | sha1: 68E7606564744CD3AC0933F3CB3518575693656F | sha256: 71A6A1D85A3787C801E87F7625D66EF402794FA6A02156969B33AC9D6535231E | sha512: 7F59EF097648F6F54DCADD0F14CC3E6F8F0E6D35300285564DB8AC49ADF1308BDCD610048E3066A434654C6A965A3B76188641E134B09FA8858F6C76A68463A5
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 267E0E519A801DF65AEEB4281F6391DC | sha1: D356132D986AFD9A6DBB867B5B7E59B6EDA9A73F | sha256: 7B68A246916BD017C43836984BE1F664E43285A1AA0C5CFE3609ED5E7803A985 | sha512: F415D003E5D2C3662A52774C51317BA9F554BA2299271FF01F0620C8142743C0CB67586ED9B92B7FFC87C65900D53576D7A18B495ED89EACCC5EDD370A61F335
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 4807F4E34D788B068C23F0145F34A77F | sha1: C8F0F897B4BA5EA9A6AF004C19E6A2FAB2CAAC4D | sha256: 833CEB4DCBA752559A33DCAB0BCB79A449337252310BAFE56B8359BC4285CC21 | sha512: 923342E2C0E7B87028F8FBF25DB717F2FC9DABE73BFAA0ABB0DAE6584F3B69F2EFFDF0FC417ED84E4D14F7A9E2C20C7FC2E820189E6524279D85E7B43C37151C
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 9CA4B271EC8CF132840C7386EF31BAEE | sha1: C713F9A1BA4F2230C7133CE59187BA20B20CBD34 | sha256: 88E2D6975F81ACD12767318DC6C2F5435C6D98B585E7516EF885E0BA9B9BDAF3 | sha512: 1029202B86EAD0B7422F03726359A00277C2AF25E6CC225393A8570385CB1463A3317168B26051ACD8C1E412FB35A200FE8603B588CCACA479E2460874D172F9
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: B544CB8A1437F8C849EE447C299E4015 | sha1: 7C1C2185D438D220600BB0A202618282571489B6 | sha256: 4784800CB1A5DCDC3B915E2DCF4585D31430A3DA7D96D100D6BFFFB466A1F3F3 | sha512: EC6E8276DAE50E6FF4C8A2DB1EE72F156624C541B1E94AC802EA563DF78D7295EEAC986693493F4F6D95E3122B1D55FED36AC9CEC8C922A0F96A07A372495549
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 246765CDD0048D0EF813E517B436EF27 | sha1: DD2AE1A7A39A3E066E290FACA50C83596B17E3DF | sha256: 7A2FC1B98F22B5360AC310517B30F5E4EC75E14BBF23FE30FD3A38C3728029B8 | sha512: 24EA8FD6446DC1D9D571396E8B446402CD6D6B4A4E7E7D941F78184840CAA123469EDB76AF5D46DD07816D8DF8B70E839F739A186C5FBAB8D4FAA2AAA43F20A9
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 830918659328D23EFBD7ECABBB0C54F3 | sha1: 3F1281078AE886C867B521B1F89160D99376527D | sha256: 9B8CB2D87ACAA2C1101F0D1E24CE6E242817CB3833DE2845019BE39864CCE966 | sha512: 72A4089110842A3887ADF6B8D42F873F47DB1D024C6C74D69531B3414361F0172148492913015C1BF501E76078F6D440C95FCFE481EBEC93260AB48C360C7495
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 494A28DD6BC3DF7234F4D0D4A5D371E2 | sha1: 7474348C0BD8BE4438FC141AAF2E276F12AB0ECE | sha256: 62DA388147F02A9A6CB39BF8A5A8E568AFF43A8EB69BBC5DF9A4CB2E96DEA87E | sha512: 94F1752266FBDABF89754CD9C51F0E90FE8FBD14025F4888AA2E879AB04E4F16AB1AC3CDCFB292F1A77DD40DFF5C8C6CAC97C6ED6560638D60BA78D24F655D99
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: D562230881A773D93492ADD43447701B | sha1: 8DAC00FC39A54B5AC17062EC559E2605B11849D5 | sha256: 8E4057BEBDD1CE35A5373259FC5BD136C1362FF99880515C183E4E9225C9EB2E | sha512: D1532A83845E92503BA7CCB8CA5202BA028C9A9CB778C60D7F22E185C4B9B9B616CE7DBE0CE57D69C1D981D85B2E7930E2E040F06A8D1F5C046681492C54A8F0
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 1202567A1EF0F70283BC45B00E1CD406 | sha1: CF98CF6AA68FA0F26A6815B26B56BD4F3D698566 | sha256: 7C7BCF7CD383BBFC7E2ED41A7D324F7C2A1ECB361B98E78D74CB0DBAB2E6CB23 | sha512: 5C0DD1A4BC265A7761A6EBD52FF8F43DCBE0FADDF7796234329D2E4E2C581722723ED6ECCADCC377EFA23A3F83FEFE1EA05C5E606E3FED88C596F0A4AA29F0CC
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: E13877D337F08BE22827FD4368526D3D | sha1: 3F3523F49713CD742371712A6D95E3E5321D30B8 | sha256: 65D78DE0A52F6177DD2421CF7E7344427BBDDA8777A52A484503288FA86C4004 | sha512: 34884293C8DED480BB039835D4C5CA30A613C25B53C17E6FF97043EE3184A9AB7BF6E7D861B941875E3617A946F1EEF706450E312CB693AD2029A3ECDAC434D8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: EE4087F0D2370F88924910EF9F11CD9B | sha1: B996353EDCE1E3EF745FEAAD7B0502CA52E8DF73 | sha256: 8CF7A432A085B06FB0923901AA147F1F46F435C08D0C49ACC1AF0922F059C04F | sha512: 807B85B4174170D57FBBC7524F9D01878E80B8CDE2B30D1B370D87648AA98E82CEEF7CB8A972B75455CB2FC7260CACC4F0971A247C38180016F3EB7DD8E9590C
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 3995A1C69FAD74E3DD1E97B9A0977A0F | sha1: 02E428DFD5E2F43472E0C99DF412253AF8280891 | sha256: 0ADE58ECDA246A237C2FDDD97FE43432109AA539F0BD76AB94D4CB123EF3E379 | sha512: 6F5CB8599CFC94F39383E6F514952E0D4B36BF6D9E519529297E5F102852C785CA272600D3B4963D44CA5D686FF70CF9C47DC22E9F4B3F3BC89C782DD7916E87
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Client.resources.dll
md5: 853FF60B5AEC59AD69DF29D7E1755306 | sha1: E72790F47BEAA50587562F7E977E7F8EB1F0A68B | sha256: 4D292E66B597ADA8719953E7BD39B62C2C0C9BA5305249443A192AEA682B84C9 | sha512: 9AF783D6BC2D41D1C26629503719D3E873F466396F6DDC01C085D8922CBC1A2D27CEE885E4640125F9DFA006D4808815CA0976943B8AB49197609B4D9C25637D
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Common.resources.dll
md5: 05E1404AA21D4423B5FCF4CBF88CD027 | sha1: 85B5A1A94BEEB1B275F8C44C910375EEB87F899D | sha256: 94C5B69B568EBE1C1B225843B9647689E686F4D0C77505D9126D52A9372AC273 | sha512: DAEE21E47B73501BE017A3C3469307EDC24DEFB02ADB9AA0C54849A77BC10C487EF8B242AA99063588A27B7B506A9833A4DFD73B3FD0808D4F88F82A33EC7125
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: D85CDCB8A7FBE6C626A7C0AD4A79F326 | sha1: E979D2983D63F05DF7695B63B09DDB89FDE5DE96 | sha256: CBC7ADE431C03CCB644B9247D4B040D83624338A7B4B4AF4E43EC49535953264 | sha512: 61A95B418EA88EBA51202EAF4C25A351DF9F33B55D431DC58F05C67EE45837309CD023B74419BE7CD49CA75D325B56775E4B728FD10FDACD7982630B8C7A45E9
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 87C19C2493D3070779DEBDB8C31C3954 | sha1: E5F7114845E673DB37EF7E01269128F2A1379EB7 | sha256: 2B00BF81C0FA00AFF105EF163604F1A7E4B2E5115FCCE54D60FE3A96A742C9E8 | sha512: 4343220C9EFA89F3E19C479C9701C4BAAE34201AB9DB82C5735E575004FFA84905A0DC40A89C14036799AA32D950C53176147CF58CF4ED12E6C80DAB73A47ED8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: E1CCE97C2431BF6FA25A38D38CEBBEAB | sha1: 4BD176F4DFF810AF2E519E4E4878C6323F443803 | sha256: CF77254AB546DE75499B4301D0A433072C93C1A18C6CF01D5FBFFD2837C44606 | sha512: 0063EAA47EF6272EE55FE42D39E9A4A88254C24459F35CD5BC0C344C06556B534E4A3B625893F19BDB89FE7E340C713C5D9B64676C6427C50B198514ED5C66A2
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 248F6B2177B1C7DDFFD52CB425D2FCBF | sha1: 08F110BBC679B842DC2E9C9D0038CB1FFA7507B2 | sha256: 394B403B6F3BF183B2767FBB591F00E172040B1E9CABA1A06E8CACFCFA4BE2B0 | sha512: 1E2BE4091AE453A54C753454C1F2398602938E1BF21DCD7FF059058D2A9985CFBB29A902C3563FAD2DB4FB0B69B97F285480B3E2783002C11C1F5FEC594F220C
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 8CF54223F1508007E3385898860A1A45 | sha1: A769BBF8DCB1267FE0229AE227B8291EFC518153 | sha256: A351106A603AF03AD4D7AF7BEE93CE4372868C4B9BA23796BF5FA7C1C0157DB9 | sha512: 44C6BEE6FE41949AE8C2113DA370393751C1CC012B37D8F85D07308B212F99146FEEDAB8507B3FE6AD4D734A268486272926DF5372B26BD4777E4C2CA5DA3B50
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 8EB840B42560ECE32F956BB9E4ECD5A5 | sha1: B98D9B234FCBD73A38EA1D1ACEB9B56A2B29CC87 | sha256: B4E65257110398B64BEEC7BC4DA8E92F0107839019BB17CFF6118CC8911554B6 | sha512: 8D79788877A60963B3EF094EDAACF38900A635F678AAAC7FAC726628BC3F20BB89ED2C14C0890E4C12518319296CC4C0D515A55355AC43088DD9218B02D49206
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 0AAA2830FD29857D9DB297DAFCEB6787 | sha1: C0E68C2B28D37309F52A0868DACD89942349D927 | sha256: 69097C4A08D953A53A5EB2F0A6B3E48D95A2704DE0B6654B0AB23FC8A005DD9D | sha512: 597760E1029FFE7A58CCE633E76CCBB1500F79CC686CCABC1E2E1643D212914E73BA7D67DA7AC3EF5D829304F04997CE59CC4A1B2FBB99CBED287024CDCA21E5
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 7804B9454DF87E3C3E72161259700FA0 | sha1: AF344C8FA42E7569FE63FC17538875E1F696F13D | sha256: C2672B84EC0EB388BD77B5620E086874D5AE31863807A7F51608FF346FEBC813 | sha512: 5022540563787C4210EB6EE6A14D713B40F0618DEC3BBC8ED12271A7A8EE7AA8F5C9FD194768BE354E3D68479D6D15D24C68D70BCC36C5FCAF3BBC083267EA3D
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 2635E1C2C82ED34B523A8FABA11C18C4 | sha1: 5F2B86C485C12BD31418429DBECAF6DA4BFD7C48 | sha256: 8A590B7D2573EB36EFAC14F81503FC73EA42837A1C34A94E8D57747C5B23DF84 | sha512: 354EF8FB365853A553446321A3F0E63733A637BE4E3655D3A1388AF770E40DE0FAF716C967FB693FFA97AC86E19C61485DC9E8925A0162A7EFB8C97744CB967C
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7F15934E37CC4E45A107E4080B06D6DA | sha1: 02F9A08C749F84FFD243022DC63A5BC42D45B029 | sha256: 64A6806CD3D53BA0270CA07B439A3145CDF4B046D62C6CE49723725BDE18C54C | sha512: 37452D483D35174B262FCC641DE7DD625B000B2089D153DE345AF5816166F102E713552E756D91470F96261E64F315CC2617BE592EF6A90DBC54601AD1913ACE
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: B91FF83A962588B034921B047224C2DD | sha1: E4F1642F0146F6D00068B850B4AC12A7AEF7347B | sha256: C7C38A075ECD0333781376BCCF70A9DF1CE0FD3A135CEE7F43B95E45B4B4ABC1 | sha512: 1B06D6226D4B428841B0287158D52CA0C29FAC960222DA1701AE611378A5C9F0D808ABD6ABC02353B5EF2BC13EDD05417BA58C9774FC3A8AECA5FA348EE3C0E4
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 4B111C7FB5102EC943D43681D5C88990 | sha1: B238B16408704E9B4E52AD282D9B18504EBE982D | sha256: 3A4093F12AFD301C09CFEBA5616AE53F4F83E18F342AD353C8ADB22D825F9D57 | sha512: 914367D808B2A10B41C2D879B26E05CCA9F37B906356A94452F169B409475387CFF69E096448A6561CFD76B6D5DEF133A396CC0D13EE6F10A99121D7025967C3
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 73D8A746EAC01EBD494114D0C765E788 | sha1: 9BF73D7307FE2F8CD22F764C11E561729A903F90 | sha256: 22A104BF5BDF0E4073B39E692C4C82235431B2D982D52C66FCBAE2E7D1205C2F | sha512: DC810443A9C064F516C2CAD31C1347B03EC774514E0DC789C8BD9883F2AAB2AE3212437A4C3C25E8276DC226912C9E9141C00B37E2816B93958C843D79E6912A
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 182CBFE75DA29511FF9FC297C90F082A | sha1: 605A777AD15F569F4A04BABA6A2497D6377434F4 | sha256: FD398954122E0B4A80827ACAB9DA90EFA6AEA46717EBFD0610453F6AD40C85FB | sha512: FCFB4E62FC33B206133854FC3A1FE7899183AAE3F1BE8E2F4EFB0A36DE3C9A39B3B7A1403941D9CECA3DDC243B573A0F3525EFEBD7899ACB39594B218A259199
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: DBBBAA21158D0157DB0885AE1218AB65 | sha1: 6EF058F8903F9EF8D72D9C0E038092ED393F65E2 | sha256: 81EBEEE81F1548220D5FEB713446CCB197835C9573282FBF50791B758BA99034 | sha512: D9C08DA87E65F701E3A1AB672450EE735785EA795089D739618F2CEE7516280A2B1FA060C1B254841575853F4D411B71264742B49E2CF488BDDBED3F622DB2A3
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 06B977EAB64D79017080A2121F4BE54E | sha1: 991671335E1119E7A97645FBE64A4E09C8E81039 | sha256: 5E8B2854EF68B478564338416DBD4930AA35D222E917A92411CBA93F4DC62C5A | sha512: DAA66B187364FB673BBC4D99F211E3050EDF31C471C693043BCCE8C7929DD9D4C5810CDD11933B0330B1270CF013D0FA3031EBD5954EB9C689A1B4F16F9BFE34
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 86E71B9EC29C0662E6444BACBD3C8CB6 | sha1: B8BF1D17DCF624C6DA863617BBE6490634105C6B | sha256: C0FFBBB14E6A22F7E069DA1896CBE70CFE1E9EDE35AF26FCBF012C7802CBC63E | sha512: 97CB196BEE0E6DD5F0C6D52F1BDC1C59827CF50FC25F1A6A31077C41ADBEC765EBC1B6EEAA71055FBDC941903D5151CC5902C1B38FE8DEDAF13A43B36E67D7F4
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 5A88F4A7CA61B2DF63C9D4E08631DDB3 | sha1: 7769FFB279850549F63971007BE44B1769340EB7 | sha256: BCA8BD5E07F689DDEE4B68724434FE7497611AC5A279E7B4BA9771AEB6AE9169 | sha512: 3B37D5E1E23FCBE1963E104683F9EB52C286F26A70E58D0E85EBAEE301AD09557A7BE0263102616782E249D927E5E4E7873C9F02E1D2D5A5B396C5DFDA648423
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: D3D44A1D280F28449E598E5D12EA0DEC | sha1: 186D5CC5EA2A140029E32EA4F0DAB242D8C47864 | sha256: 59C88912AAE9EF97B1DDA5919E5FF086530A86AD9B7018C1CE8007F8660F8C6E | sha512: FBE077CDEEABBC481147569064F673BE064CF731F8F7C71ACDD3F57EDEE6C3CAB951D35638578A08449F9AB3C95493AB6240D62FDCD77B94D92A93F3E63950AD
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: EA78A5A51B8997A39216287A3BCE8A06 | sha1: 973A21C28CF5EC8080315391216B2171A94E37D8 | sha256: 2A9CE213F549D4BC609E2ADCD6AA1AC4C05BEBB7E991C6A97D72FABC1F65CF88 | sha512: E6E39807D859403D4147D5EEB4F6A48ED7926F369CF07CD14A3D9F3B120BB80A76DCDDDED0CE3DFB4D15565E04B2D7BA92DD7A07C7879835C9AAA0A575EA1264
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: C03574F18F8113D1B8874456612BC5BD | sha1: 396481C7587983BE033B43FB4D8AC43B1F7049C2 | sha256: 22AF6B401524059B31D8B0D363A340AA196F3D0B4B4C8B468A762160A6AD511E | sha512: CF0FB69BD365313E71386618675C0FF4B50E4973EC635E00D3F6E80E87703289944C3D2BDBAF7B82F6A4ED17C46BDAC1EED684E9BF76C9DD9E5A0C55D5D47715
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 1C3E64E408C3C10D8A75917AFCC93A28 | sha1: B9B1ECD8EE0E40EFA899DF9B960F88189E24EBF4 | sha256: 8CBC896F6F20B25903019D035615141E262EDD2322C69F06A02F3C747BC651FF | sha512: A6AB58AA153A571C834092AB2E2AE6BEA8158F4696C0EB5F3BF3C3FBFBD6AF4E63878AF1574A3E49D273F5DCA182919753517E5040C61D967BDA9EE473A8B438
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 8629EF05C5E4F47231DB83814833F226 | sha1: 7C7AA703C8DA50EABABF10A57889BA3DF364FABE | sha256: 5E3971381C20AA3546182C0A7496FD4F65DBD65C73D66C77A0E3374F4DB9E91C | sha512: A560FDB20A405C9A83A7AE294491E5CBF04727FD2F3756D6B9D7EDD558F5B7756AF4966C67EB74137FCD01D02ED76E31BB6C6C44761FE85EAAA32A48EE43C27B
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: C81E9A0AEABF0E6360427F0D5876A4FA | sha1: 726F3A1F94DEEBCC3957FD6B8E1E47ABEDFCB560 | sha256: 5FE1DBE5A2087421BE2E4E114B56853230C432338D9F9E2F569D4EDC78B64673 | sha512: 44D1067DBF12C21D131035C0543A6A5D9B9095403A0F78925F68A16ABA950486112045A221BEC3BA1F006E34C5586EC004F042D32B0624619040AA9095108AB7
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 99C134CE2A9764A1E2C12BAE5EDEC779 | sha1: 74C5A26B314D85EBE577A0059EA1589EB3A7D62C | sha256: 62FF3A135ED05E851384BB89E0FB765A3686C3BFD9EFB9B37DD5D46EB1C42BC5 | sha512: 3308ADDF96536CC18E7FCFA938EAFD2E538F4265F184F70C02573B04CEDE1B3C166D701880F565590ED26E1A07C5639E4818F1AA22CF0D9A09713C9F8834CD73
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 4F24E3D97B0212DD00196D5B9F067536 | sha1: 8D3C13DCB8544FCE8A779597E66E4218F5070547 | sha256: 884446FBB5ACA3227603DFA597D5BB7ADBEFE2CEFCC085777680EEFBE6ACECD9 | sha512: E14DDE3BA457FDA09872730C7FA37027B86A4BFD4CC0AF703C98A64FB7533DD956249EB25245E10DAA97F0E03D710318979206EBBAC1B58B9A5F0BF3AA0DC38D
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 4475E4B797B5BE9F4A900CAC2726A360 | sha1: 96E08313BFE0D7B2AEC26C328ABFD7B7F0E1B300 | sha256: CE043CD17ED535C01473261C6628B03D18DBFE735243631DEB068464F1EC88F6 | sha512: 6445BC117834DB7E5EE0B683DB0D503A45CCE83321869DC867555D748D3F58A15203A1D0D360F082D887197A629503F0A7C42B4849A96452421C58DEF8CC4172
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Client.resources.dll
md5: B7C0D279DA98DDACA1AFEC977E5653AC | sha1: C48557EE8DBAD55679AA03CBE6F0A66FC90F8704 | sha256: FA31CE02F32C4DCBA978C250131FD7A9A265392BDD919BD21728FDA76EEF11B3 | sha512: 37D439697B9BAD4B5D59F2D633FB760D2E5BB77F702CB92443E0336866CEA3329D1D9B23955B4C30D1DE2B222AC13745033797D21A8C1A38E1EE6E1A48727D89
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Common.resources.dll
md5: 2ED2E42D8B21C1A1793E220B6B8B93EC | sha1: 60F5914DE2CE4785C25CDE4487F47EEEFBAD470C | sha256: 9C73B0D277176BD103B1DA48F9B309BCA3FA0FA738A57D05B7E8D3C9F8FA43B5 | sha512: F1D964FDE20415AC1F74A77827002A2FDB8698F60C511D05D9C86FF7F44836A19A6D5D9A668E5B80AF328EA6DE2E954B0B45965C80CB96EEF009BB74BE18D29C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 7BD694B50EC52D9A00D62DC91FF8F8A8 | sha1: 3F53D5B380846593167B714C18C9F0CE284E58CF | sha256: AF4B3658850F2708B91C2BBE34CE586C236A8F5F6BCFF664FDA2F8ECCF074106 | sha512: 73E56C7B07924B3160C3120C1C4A0F637881F5F66EA910075847783E140617309346F50F5FB53647D14C606649EC92A2C8C496B2774596AC7A13948E6277513C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 8D9A0C5128DDEE360495AAFF1491885B | sha1: 8089F3A20AFFB57EB5C5E95229DAFA962759DC26 | sha256: 644CC404B4307FEE683F15D676FD9EFC4D860641850769E2B083461EF0529C3F | sha512: D09090773D4D17F01195046C070F7183D6A027C905EE00AAC5F4A65937C4BEF43B062E86D783B3FF909FD81B4A944F3F575C2C4D653B82EFFF0BD2F82982CF49
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 3B2A824913ADEF7A073C6F208C51856F | sha1: 811C920137D90AF9F4C767E33D3804CD364A1CE7 | sha256: 3847A11BFCC86E91864585E4E754138E35A83FCA9FF8F529EECA736B7989E009 | sha512: 861E6AAAC591C77085E27D996A70C5A4A831128183988E0F0FB2A93757470F590864609B28C7C0589E95943EE5D7859F0E7B1CE789FC7924482777A10E8A06DD
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 9B0B722646311337B974D7F63E08E170 | sha1: A32C121791D2DF4426D12BA20B07A89F59044D85 | sha256: BB41007A6F06F1E8F899878A1A72AD27D30AE71176A5733F6B566479A097725A | sha512: A17A38330F11F9807CDEE9D262A50179FFDA7E9D3C7FA31D3633182FA14454222BE0E8EE2230FA96184D66C97ED7259E1190A78361521D9E3862445B3B5D48E8
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 1CFFE69F29CF118F639AACB1D04FAA1B | sha1: 8CAA3DE7A0DC9B149EFE4D69FC600E49D365BA7C | sha256: 6D3ECEF9C0830D2639EA7FCD5E46BF29605D1DA31EB8D302CE918EBE81713C74 | sha512: 7C3AE92FC1775F207DF3748B70515D601BAD766C1F6E3904662BDA6601D99B2E51A54E92CB0BB81D1EFE6BA6A9EAFDA0849FA9878AA93CB31FD561E20E4A2EBB
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: DFD8BA3D23AEA5FDE93C1A51D1A963E6 | sha1: BCBA2F7787FF8FC6D6AE9BB19832BB5DF71CB200 | sha256: 66C93B3B197015EF1BFB7FA2A311FEC34CF751DB6CA08B56379933860020D984 | sha512: D063F352FAF507EC64FE3A12FA231BF57E182E63C8D113EDE084A6B266AAFBA942D973D89A347B9419A0535C9369098B3BF1D70A5BEBF0DE21F88693C7000A8F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: C7BB9AB37EABEE6B2B55C5E44A31C9F6 | sha1: 9B1D15955D5DD73164E6B3C2947E36EC7DF641A6 | sha256: F116E9D5F81C6C1607B972F4F1ECE5EAEA85F729E4D704F3DC95EC86EBE9F515 | sha512: D7DA8BD6B42AFAF0DBC5A99A0CE31E5BAB2A6E5C2117913369498FF9FCA7EE84E681C944D39C4B388DD83B6BB9EDFDD152862A576E7CC30369074143525E632F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: A84F5C4F2B3CA54A3C58150321422717 | sha1: E7F481E20AE9528EC02DA6E1D5439E4CAD4DBEC8 | sha256: E4A3DC1F716BB55478B3EFF747D7F5F1AB7AAD08B90265C126591E4669FB1434 | sha512: 3E15481D90CB20FF8D4BC5581DD67D82DE65CE9EB64B6970429DA750B73EC8176D91195E30404BA8A29549DCE02D7738550023FB00E39035CEC38ED6152ED989
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 6E1690B1500788F7FD135F528C53519F | sha1: D1C0C22BF387490EDCA79E1678DB272C12102E1D | sha256: 6D238BF74704773228B5C580B19C0316F87F9E36234E13C1B79D8F42D6761B56 | sha512: DEC1ADD225EECC7BF6BDBCAAD270D61EA97DA34D8DC9372540940D8D54D7AFFE753E8CC35D92DAF6DDE8EE509958579A025A4F28D227D11BA55E05D88BBD2610
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 921D414C36DA8B53CF8C2EBE30D0348A | sha1: FAFE8A060ADB3700451193C7B6EF3F8AF8538357 | sha256: B9D2B60FECAA8CD3768F539F04768313FD87CD84291E10183586E4948180844E | sha512: 00EA7E8181A454A4ACCFFB86DB752AB75DE4C90A07572EAD09B91CA399B04747113EFA37FDA264AEF4820514E45C96FA599715BE59BF635818F859A0760D0663
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 088EA528553EB0B05BFF8E2449EC4725 | sha1: 6E996D5C88D9944F2753A7074CEC691897E6027D | sha256: F200C1E31582D8212F414E3DF278DB8FBEDCBD88038DDC80602E33E7631E6F1F | sha512: F9E6930526045A275799FA3FB335BB8DFA7BBE3B8C27F5D2F9D582E655E73F9F3A74BEB1B185451E3F76F61662FE29ED161300FFC51FC7700341529F804B2FD6
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 6D398606CDBA600DD43EE8975EF69C09 | sha1: 43533A931EBD895C1FA15FAC3DFF91EC5C39F324 | sha256: A116FA60659CB95DDF5725851216E26B6234F36C861571D7F235F9A35170B6AD | sha512: D43CBB18617E77A21225464AC2BA61804BA32B5D60ABB81BA67219C72E15872B54F5DF8816B3C41E1B2D6EB42305FE9CCFCDD9B21B1E9FC374D9B6A9BE179E62
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 88C3BB39849416FE5D37D6AF4820A6F9 | sha1: 1C8D627C47532F256A1E8064B3E1CC246E9D065B | sha256: E813A4C8568F4B0E64A0DC7578022650B4D30373B3763A06AA84AA66CC64B44F | sha512: 46BAD65BCC4B3E767F26C489EF52DC29778B2893C35E449CEBBE5F1C7E416693110890187D0F11D337EE6F9DD3DCC7253225F35712AD07F03B371D2A8694C2D0
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: D5E23C2F0C9C35DC1B745DD366E9C998 | sha1: 44D4A90DEA032CA6BA315560E422A1EE89E3E586 | sha256: 2A987D8D5B5BEF167B6D6CD124B28CD16CF6CC992326A2581FD965F1F7320DF8 | sha512: 6E3282E22D4EB54F968CA1C708F47204229B11C655190C644DA6D314A234C39FD3C39CF195D28974F1A525BBAB7998A56A22602897DC60FA8BF6B64FAADE54E7
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: CCC695E9D0556D2DB24CE1C998939637 | sha1: 7CD56069776135F8501E431BD0EACAC76C988CE6 | sha256: E284AB56CF6BC1A1629148AA5CF92B9B1E256BDC90FC05C8577DBB1AA0BA449B | sha512: 496E695D943D8840CEDE828DBD9A1D16916C9B9F5855B91055E414C60D368070894970C50213E9BFFA07FEB04ADFF587344A876EF898ADF532C62442D4404927
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 1F28B3FCF8B56665A5B3DB040AA54979 | sha1: 453647FB6E9592F1BF9011062D151C6A744776CC | sha256: 8A97F49FC36927EBC6D627994C78EC7FB20E5BF27EA7971CCBE87B644B3E9F34 | sha512: 300E351FFC4D4732CFEEDA3F2242B05D87951F4BEBA4B70FAB40FFE480981FBEDDEC8DA99D314C66C8076E556CA6343809278ABB088F30B89EDA7DC9924AA829
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 3A96004DE3E3F70A5DF9E5F330E25965 | sha1: AD80F151617A4AA664539AAD5FBA3FC1621D8DBC | sha256: BA6402347B285B127DD0EA72FA98B63EA22F1A0A9AA60E0024D20543653804FC | sha512: 8CB72C5F42A0D0EB754AE9BC4501C4804DDE6FE0C2F35C9B204452CF6636AEBF937F675F989A4EBBFAEBCA96F6F659F7C7D0A651E517A8A7D1D0A530017259C6
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Common.resources.dll
md5: E956B6835C0A55E100E1FF865376649A | sha1: 10AF30CEC5016790CCFE9654AEC1AB9AFFFE21D8 | sha256: 3B4E5A67BF7E8A2984C16A0F53DB46592FA56FFA7A63FA63BC42DF4393AE9055 | sha512: D73336DD54C5480F66374EC2351B903044F767EE002A85BAE016EE356A3B57CF9110E17149CF41ECF54306E8B9DA7A0E7010C457EDED5BC3B622CC8F9E46A15B
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 911EACCA09B9B49A05276C0143C6B256 | sha1: CF47981875A979DC2B2C964A9E46EB0A229E6EF6 | sha256: F9821D304D5101C07E7736C77B2A822A79B4D70C202FCDF0F7A66F8BF69554FB | sha512: DEB2648DEA918687082818B6E48F05CC16B16FF1724F7E7A53706F450BFFE19A41FD3BDB66B0A86401AC9428CA163A6AF354D0DB554EF2594DAD16C9BC9BBACF
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 00309C49C0CB6AAF4C5AAA94E45C107E | sha1: E4600B67B805EF4BFD7057152B62E1A69C6C65B9 | sha256: 505828A5EA3BF69D16D463AD0916F057D7D56D2636439A2112D757993AA8AB08 | sha512: AF1EA3A11E18BAE7535923063D177317D1181A5A0F1E21F0DF64FC802EC83929C09492D07AB5D1DD8F87AF9E06EA12B92B4439F8296CE60B46A3962EF8AFEAA2
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 950368E1C645AAC13D2B446472ED3BAC | sha1: 1CBF442CE32C8603F853C47F6A5E1B34776FDE47 | sha256: 42738D2E67928A2B5DEFEBC709D4FFA9C32928EA2203BEFEA393493FB85151DB | sha512: 1D78D88A4365EAAE33F01137FEEC86B80F178CC901CE760FD81CCB66B993DE216FEBA0D76ABE2C439664A6A1E2A7169492A9FFA3AE8CE3890A65EE1626CAC65C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 1DE3C799F2F388832D9AB8AD0907D736 | sha1: 5FFB1BCAF820C24872AE5640974D69B05E2C14B0 | sha256: 2169438FAB1BE627F6C7BC09EE610C15C347E0F52A3BB7641E8A58DD58C203F2 | sha512: 1E2574255EE50D9188D182966DC6DE0C478BA75FEC9983A8D94A40A311DA7BA31125ED85A13E72CAB0332B3D3852A9F71F92F7B6DEA45E89A1998AC263DE25B0
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: E9E31218ACCF712FEEDF3999E178F658 | sha1: BCD7DF4E262E9ED78D95F5DCE8D97946C2F87597 | sha256: AACB8110DE3DBA4D4D12441114E494817D2EF7BCE908AF59F3B761C60E6454D2 | sha512: 87FE6FD014A252F2CF2D43CEF4B02EB54839DE627829AA5C6091C42F6DB43F2849D6A29328F73894CC0DCACFDFE434E2A4398D9450F17B12179DCB48BB4C8708
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 671049C68968EAA5CDAFFF9C1970AB99 | sha1: 5AF4CB9A94B4036E1F60340BF48CF47628276A8C | sha256: 83CA5BD95A3D9F81929A211E64EF9ED8747145346582179F2B501B4DB7C05630 | sha512: D110F771C95F51708CE8D204139C35B75693D05A816AB4AA1F1B2B666D7264F73C26EC717E607F7F10BA1967A945B81FC09B1B8A4CCD89FAB88B0B9A1D0923DC
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 8046887DDA1C493D45984AA13D07FD7D | sha1: 2198AADAEE07381CB75151FCC1B1F54D8B060C26 | sha256: 3E60D35379E85F1A00A3DF0C24211E32CA395280B0783675C3B29C2A322A4DB8 | sha512: 645F634AA9B72B71603400069738DA2EECAD4D62A69CB29AFF416B0916D1D8E917E38126C29F7EE4DA70C3AD21C72B8251A8C6B6D34F43386972168FFF153E0E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 6FDC1871AE0564FDFE90135327959C17 | sha1: 192C2F57D05B3049D10C7027635BE03CCFF419D3 | sha256: 05DC891B5DB187FA256B6406B118BEA20FDC98B86BFE5FB34D94389D8BA31DE3 | sha512: DDBA25BC764FD4A904973EDA71CCB93773936F8CD563AF6DE4F941D1F7FEB3250F9E2BF065825FB8C5197E31B4D255DCDD60B9A3BF92E87D2D9A70C4D2140285
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 667FF56C8B0236A82432045516854AF7 | sha1: 78606A180FC7D3689E69F7D8FDD09A53509D3521 | sha256: 305E82076E9E4ECC0FEEAF97D25F30619C7F43378CE11459ACB47612124E5633 | sha512: 912FA305B3E16BF574CDC9E3B5DD8ACA1F5B358C7D372626C65D324CC135093CB6D91DA567A52F351E3F0EF53D342C30E361B51F1D0FD70C5B50C72D27754193
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Client.resources.dll
md5: 6790BA9B0ECD526C6BDCE315B5D26C57 | sha1: 913846BC5A1736030C8B9444325D4C8E2857F8E7 | sha256: C1A131C542B82CD3409D7E9C3F70FB8B3BDFEFB88A3003B78FA7AAF269BCBA39 | sha512: 4FA7DAE24F1C08363B3248710BC7D8167697CB9B1E699246CA666B708BDE293FCEE0A905EC7B80741BBB6CF3753EAB6FCAF5BE4C938316552383594EE26D4A89
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Common.resources.dll
md5: FFE81B7D6900E92BFF9259D90DB026E6 | sha1: 6D86609C7FBF97455CFF32D70BE3F2A2D5FAB225 | sha256: 1FB07E004D0ED0D40D30E1F59D25E3A2BBED81270FD2FC8CC2CD1CFE64C76A57 | sha512: B28A3D695ABF6157D9666BB95154B9CC7B739B56E4FD3BB0E379D088B871B14298928687FE1F70E8E026FBC20F0C623643AA4698387E160D263D9BEAC59D682A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 44A4C0CD68BF0CCFDF3F192C26420B3B | sha1: 2739A1BD3CDBCEDD005FC3A434F6053A3939EDFC | sha256: 5919D88AD4667B8E9ADC4C2934D0BD7AA718D7C78209A4FD19B812179E5B79BE | sha512: E1CB029400BE78450AF81E466BF760CD2151E18EAB1DF7B8CC6EF8311F133461D6430782449BAD1E6C22D0203CF3B8818E863C2A10053E738797241F344BAF52
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: E9B92A352AB7C43B482FE090F2F99A24 | sha1: 0FB7DFDFBBD24525E844EAA16B9F39BA86BC52DD | sha256: CC72D4B9A63A2DE55E9FFB35A5143BBD21CA72F9DD3C17AAE65290F03FB2E914 | sha512: 0259E4E9CE2BE83D6F74A67C90B6E263737517F656A4851B18496DB480839460D9FE7CBDEEC56BDC3B9BBC79C6DE18E344304A64871512BC9478C1F4F46F6735
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: A767C247A8E75BDB4E516A0F23D7EA63 | sha1: 4FC34D471837F749A7E584064C8F737E0D46652B | sha256: CC8129E9E6FA8FE00A9FCE9D2B2820B92E7B13798E347CC9620FEB81A4AEDFC5 | sha512: A1EBE7E46F4F00ED1FC1EF943C08FF3038C872E74FBF59794F2D44A125D2CAC56D9C91D8F86D40649519687DE8C7FB31C24A8366F92A67452D3A8D2C8D702A9C
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: DA5BD9A15080EB881EAAFEC4651C7561 | sha1: 73D9932BA7997AC9BCDF3713C280A0E7DCD8567C | sha256: F377D1D0CA2370DB94102D116E8389E3432E5A71DFAA91DEC31C6F031A411FE4 | sha512: 491F6FBB586C7E3FF98275A9130D867048505F795898EE7453E46AD4DECBB2B35766F72BDF8A492517ACABAC381DAF44550D1E563787712BAFF134895D532ACE
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 5F6B009E604FF016248782D7C3484605 | sha1: 8B23FF5B9FB0B5459466403A5D9239C36F54EBF6 | sha256: 3618258D12D4955E6F73D0C360ABC1355720EEDBC421BA8531DF0575749EF5C1 | sha512: 4DBA7EA5981DD79FF7724675F0D0142692DB4603277827087BFE9539147B429A754739CCCC2E07C10907CDDD48CE5F80E00185D71529697F203DFF92E607CCCB
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 3F9FF2AB4C547DC33A82EC55128F9C93 | sha1: 140D1C332BC51029BCDB5588E6F910B8B449101E | sha256: 3227D5FD3383908F25A6DCB9D5B2507FDAE2DC49999450DCD346F31BCBF38098 | sha512: 6D45634F39881238A134022310B8FB44E28A149974A3519ACC90A031DC0B2C85A23638137F17ADB099571556C8B5C7F8C46B5CAB09ACF9041CBA55243CA1BA91
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 992EBCE7407E09C19F0C8119571A2619 | sha1: 488C9D63443A31E1CB3F4B9FA8CB53143141657A | sha256: 287205C8C4939D0F03C1D41C56BA9FAD11B0B09BF11AF3744ABF1133FF422329 | sha512: 5473059A8D17BF14CB0292BBB08D6EDB1BD369E389D972AFC1598FE2C6DD26FFAFD16144E68E9579C940F9AE83B0EBD4B08726FFB7B25A49C91797AF6A0C0FCD
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: EFD4F3F4C6B9EDFFE557A5BDBEB4112E | sha1: 329EECACF86CA5E33CF98D85812C7D665E66AFCA | sha256: E78040CC454CCDA129A9032689641F9AE19B20A67B20939500E2BF604B26911B | sha512: 40D57274B3BDF4F92160C8E8EFCBC98B86FF75899D8D4D14DB79CD17C328F755AE622A357DD98CBB8EBE185282B380CBA03E1EEB25756BCD801C299977C91C02
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: F3EC03871AB5389F3161DE1739F985F2 | sha1: D29773462C7BDE57E9DD9040DF0CFE10960E7DBB | sha256: 5766249D91CFF614F8B70FB7D090397018907FCCAFE2DC52BE4C5192ED70F432 | sha512: 155B6F769733FB41A452EE8FC8C47C52C518D36EC3CA26090FEFE588A9F392C6C7844541427FBCDA75A399B5B1F2D746307159291A54603C9249B247157AA9CE
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 32BF83BE7C30ABEC7207F8D8DAF63ABF | sha1: 75F1EA8D7B3F64E5D99E349665DCCC29E56635E9 | sha256: E374F3F2776C609850C5D1BDF322BA08E9F9CDC89DC73BA74B87D1322FD54593 | sha512: 7B9190AD593DD0093E2E6A1B9B156AEA96C4F5DEE2E96D0A1CADD28ABCE339803235DBA5923CBD1E7455FFE6269503CA6742E50EB12EB06F50DED278702541BF
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 4019C5FCBD05127E736B1BD8D171A5C0 | sha1: ACCC84BD717E98DFDC600FB77C75B1238033EDDA | sha256: 5DB9EC3A359FAAA3828738C6F2C974DC85A27B4309219D0BD1B899C7B922954E | sha512: 155D8243F661096C63DEC6BCDEEB95AB347DDBBA6937362D573F13E2D35C794D2D593325719CCE5AB7F1E279D8F76B7443CAD074168C963CCD8A0D94797F7CD3
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 6F317C6DA7934976C8D70B09D10EE4D9 | sha1: A628D0FE62C4CC4DC3490163F9617A31ABFF383B | sha256: 97B42CE7B09FD462629752CA0000F6562999B22E24BDAC9445BD2A62C16E17E0 | sha512: 4AADA2F03A9689A48FFB920E6E2F38620F1804F803D5F10EB713E3558CF2F01A8C46AC04DD49E9FE189647F87AB8DA7D96E5AF1B331EC07B1B6C2BAB5E6A688F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 11E4287549DDB51528F341F0A9266D82 | sha1: B79FE557293723644CB7616E74571D2A3FE7D525 | sha256: 2966356D18C7D070986CE55F8BE551A791CF14EECC2DDC1D5067A3D8C084AE08 | sha512: 9C7DF7522F591DE27105201075D5C492C01458B00B39B441862DD3592938CE3FF106E00CC3E9C708E5E31BB221CDBF961BBD0386852A3CC81F630E8F0A142403
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: EA75BEA4662EB5DBE72CCAF0582ADCF2 | sha1: 8B837DE9C54252CF5B6761574FD32A79F1A8C8C1 | sha256: 4CA30619CCA21CD5C33FF78FE9261B2233AB98CAF27CAD5AAAC25C154CCADAFC | sha512: 52723F1FBED8753A1CEB1C2F3263A105836A819F29FFEEE7B5796DC0AF7B99F8AF95E82A200B672DCDA24AF656E36B82E1158BD33EC0B43557A1CA8349AC123F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 499DADAF5470F2BCCF6A7187D3A8C9F4 | sha1: 9D4611118A7118C7A274F8CD58673D8D0E4377BA | sha256: 495BE06A6D70485182CA46BCA6446FB47CA6399FE5177C159D029643FFA81FF9 | sha512: A0565248EF260E0A818C2896CDDD157CD1788BCDAF9D72CC68BBDE566340548846BB7B140ECCA4AE6092C06006BE55CAC377C3A7D403D5F41B31C08FBB31889F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 7420372A05EB0BD3BC74E283AEF9E6D4 | sha1: 9161525722503A4C8919A940F9F2A6563C8902DF | sha256: 6F18CB4F1FD98BE9DE1E9936994E07DCA3E1AFDEFC881F120F7C5619A7325902 | sha512: 8E0DD48253988CC352D78EEFC73005C6D301E40F9F35E28BA58FA4E9C702B872C58B732D0086D5500E26FC14A1E4B1F828DD7898B9F5CBCC78CE84FAE2CC10E1
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 2E7A8464241B2DD0DC4572975B8749C3 | sha1: 3CB6D3C59B4F25F9A698192212510E6A682A8406 | sha256: EACB91A63612187D80F55240814F5AF026FFF5D100023627F659F02EFFE0BCEF | sha512: B0EA4267909F52D19A340230E1F290A347DD7D9F3BCA52B3ADD47C850284D94A0A6DCCCDAAA577CC9502ADF3D28323AE98D0EF090CED3E4D8B5266CE5FADE778
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 038E050A4112C4F99335935A39EC3AE1 | sha1: 8E702F408BD55B750A89EFB37E7582215193BE83 | sha256: 30B3BB11352FF832920A9A60A6A227356B2643BF8009BA64F1534314EFA4CAF0 | sha512: 1BE4B74A83772A53FB17C787DF669EF2E2CC1BE53C8FAB753F822E343A72F8CFE681B0FC58A6B59E357743BF7C288B064B5599AF88555BDA0EC17E0BB32B22FD
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 9A4F793C97A484CEEE048C212AEB85F8 | sha1: 5157B660224320082CECF7C99AACFE3E5EB2700C | sha256: 23FDD9BC67BCA1CD5D06196C61AF0D62CA21C4C0C6AEF6BDDB84B39653B50E6A | sha512: 2DA779F80E2B20A1554AC011B5C97C43A60F62BF3C0C71BC196A1517A96CA0BC27F2D85F370EE3259DAC9322EE5380BE31C8B0A9D8EEE388F7700D31D8BB8E6D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 920C8ECDD8CB2787E673A5FB35523066 | sha1: D49245C82517C72B3C3647913EAF115309F6D717 | sha256: 75E0410F44480C5EC175F1873FBA7AE8DFF9C19B2250717704094AB170F475B4 | sha512: A06ED7ABB5544C472ED2E1F9ADD6D7B6659B331683644D5E15D13B053B598900A177D18B69A802822418DF0D8EDC0E67E993CD0EF3B19C8CD5E2E26775317E5F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 20B5BBC3D5A572A70C292967A9C6AA3D | sha1: 9BEC6F6E7BE6AB7896A4C7994227760EFC52EA69 | sha256: 34BFA3FFBCEE472BE5F595073A44C746340A239ECA1FBABCA0CD32F53DDF82C6 | sha512: A423E469646CE331D77F55B3C4F5C3ECBE1D35E98CB93CBEB3F20B658316165E1D4A43E5DD77DA04EE5F705AC3C7367AFA2A6BA6F4979E936E4CB7C90CCF9045
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: B48FABB5581C241E008EB7CA1854D007 | sha1: 42CC310EE071432985647470C5904E35B0926A95 | sha256: 906738A56EF2A4B62BED6C620BB62EF994EF88CE43C18FE754300F98C9D45FCC | sha512: 796464CDF568A69FFF141D83E0B3FFE6E82B1FFA685F4A16CBC32BB640BD2FDBA85E8FC9D2F90A06E5DCBAB6E259FBEC284593179081D786A2047860D770A16C
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 7EE515DB026BD4AA74A68875056501C0 | sha1: 80B27FEB6D2514B1258DC030E2729B4A950F5A2E | sha256: 841CFF7B4FC88ABB6341480D08C77B7278D62DB25F2ED2A53C08CA14A2C4A549 | sha512: 817873C1C0AB65CE59445109D057D4BA50CC4CF5ACD8B89852427AFC17BACE7133A923348963BA9CEFA57EE588396B4C3BA139D273928FBEA27605091389B81E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 2785B3BD27F73F7E07D23DCDFAB9F662 | sha1: A8A515B1322A5260A53DCE35A940FDA00DAB49BF | sha256: ED13A3022165AD482725D8BC6ADDA170F74DD94181160C4B97A84480305CDCE8 | sha512: 66E55B1A1F2F9EF424828A8FC504C375D2C04FD71FC386EA065867E6B6E16D8A4C273B1E4B0708A5AC7132402E11F7CC03429E8859E55DE048503717B46B619E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: B4F03CB3269B14EC5AC1BED235DFC546 | sha1: 91EA6751FABBF907E5DC4415C6585573403175D4 | sha256: B52E918A4AF595034B9938D35DBD1D46FC62C6C0BA33AC69DE1555499FCCCFCE | sha512: 77A1704E311B6889729B359B0EF243A1ED047B7E5527204984799F47C0F0E55C42C4EB5F435FD2D017FD3E5131ED0F9ABB38ACDF1478C57EFD21727B86018FC7
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: 860A1285B395075676A8768B5ABDCDAA | sha1: 9A287099182E7C01053F962708A8B0B1A751C602 | sha256: 51B2DEA465733DB57F01C0A5C22D8021F2CAA22A2D9AAB24AD07CA6E605F6119 | sha512: 4C0EBE13C8972D9DC47FE26DE28D77EC1DCBB08D1E14E3A39147DD2F37D43A684BDD9A00E373893C6E79E0AA8B171F935ED97E056969273A7CD24E6E9BAEDAC3
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 79423284633E269ED6D96B694F7A519D | sha1: 0C4250E96BCEF5FD983F527A650201558620DB35 | sha256: 8CAF58B3684A2988A9980076988063B7FF7A2E7D6A107FDC0B004E634FCEC532 | sha512: C1C5440CC89963C93AB16947D32A0820D4CFDF87F48C7E4D7C14FE77F5BF8B561CF4C8B801C04D9B65DD4C546A96E76F902656DEA8380EF748F4535DFC8491DC
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Client.resources.dll
md5: A9948A986E2C9F7074CB619708783DA4 | sha1: 0ECF946B0BC4E05E0E6AEA99CDF2AE49C81CC81A | sha256: A3D9917349F8B4DAC0DF53CB1EA696B36D5D9097E872ECFAC4428B26C135A36D | sha512: 5FA5524A00A085F904564A400ADAF6F39BCC98AD1B4E5A32BB00C790A98ED50A7B4BAA3E57B9CDF5D8CB832F9CE8ECA07CBCDD7D09155093FB9568CAD40FBE2E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Common.resources.dll
md5: CC86C99EC7E297A7DB5392E55F3860C7 | sha1: 64DD72C05434000EDD24937465B03602463A65AB | sha256: 22E28E202A40FD89A11AD63C256CDE3042A1ED3A6ADD8833E8D32EDF520DC289 | sha512: AE9210E611317DBF08D4E87360B9B628C71CFA62C19302B93B22CB7332B0DE9E66D5D920575D2BACFB081B5C5F0C60E566A2D06D29C362C0857744625E0B6F9A
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 90D7EFCD1DF4020069A0B202B40A9FD5 | sha1: 7C0E88A873DFB225E511368BC6A25EFA618BCEE4 | sha256: 2F482E268E3C4A9173CD7409AB31E7A723868E5CE8BA3F912CEE11C07D4766D7 | sha512: 7A936395621DF9D7DC61F8F6F7B15DCEAE3E9ABE23A2FFAA1DB7870B46E1C087DE07A519EB42FC62B3B9BD9095684D622489B155CCD06B8FFDE8FBFC283BDD96
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: A8228FB9CCA0580B7594D64658DF736C | sha1: CA4971C1BFB4C043A9460BB637F4EF172B130BDD | sha256: 2431C1CF77E77F7D7C444A5938056339F8B5DC88CF559D780E0AB478DE82F977 | sha512: 38A85F95CF43DCFB686536A5009677F17BE921E76BD7C061F5799417CC03746AAD522EEEBFF6FA117FFE5B479B71A2F8B0447AE6A37C3E04D67FF8B19D3F9089
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: F9D39BC4488591BE02C186B6FD5C0BA4 | sha1: 3AF19DEED45C38F45F3234FAD10C9F4AE0820FDC | sha256: C9CE546125F942B0867CB580CF628580E7D234325F83ADF5EA18CD4AC174D845 | sha512: 23251D54DFABE7A612FF46B2959D7CF786FF1EBE67FC4FB79270A5F4CBC6293A28792CDFC937F7913BE4CFE8813900CEF2C942BF27C06495EBE656C19367064B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: FB0562227257FC9FDD460324D198A1F6 | sha1: F67053D744B7A715D2F1779B2FC3AF0F31D4FBF5 | sha256: E5B1DBEC5122B8666CAF6AAD4DC60836B06C0E990CC4533315D8B73450E9221B | sha512: CAF8252FC276CA41836B8495451C1FB65B0443158CD6E28C5D2788B995E5FA7C15FB24AE4AD9731ABA5F07D4338DF84345C7522B9370CF7B516B21346717C027
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 0462759ECC0FF0B26853347D68E4B091 | sha1: 46AACDB40DF398E15DABA3A0355333539B004CFC | sha256: 5435B70394B04EA15F3094D93568CC9CCDAF741D196B2C807BB8704AB84FB995 | sha512: 56C8A6178F5A16668D5840F57BF885FEA1D30D086522BFF854FDFF1031BF78B92B382936A8D8E50C4D774D1C93230E1C5E126D5A704831742FAF04E27AE6677A
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: CC71D76FAB9C59F698FD063A5BE3901E | sha1: 5147CC37F2C7FF4A0CABC3028FC510D7DA03A8B7 | sha256: D7C8736D9346259ABD78281D444016883D3B8207B12FA73EDF57F5E5C9639D73 | sha512: EEE9D9FE201C027BD1BE01804DBCAA938B216DFD75124916D38E5D1AAD2E9CB4F810EE14695F67938183E1CE67AC4B36797AEB5A2B2E4F5509C8D94CE20EA8FA
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 486A960C7F733D4FE8F4606E0A052E3C | sha1: D8BAC420C2C77E116651BB6F9D80290A9F5DBBC1 | sha256: 5DD4E8DD9F38ADA133E1DCF66BCDF8FA7D8359CAFD88952AF7C4ADE762F1FF70 | sha512: 8593EA019C0F528C9EC46B3728B545B90EC4E5D7B7EC97964175D6812CE1FD4E97C93F73AD37AD8D1B8FFFB9D72398603930A5F4F3B314AD5804A4872FFB3C15
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 1D6E5B7822DD70B5360C2FA8674DDB5B | sha1: CF3C5ADFA9F67BE1AA941ED1FDB564535E9372E5 | sha256: 740CF87FBA5DEC1CC0CC2AACAA1F63CB767B25A41F98C1CA8257D0BFEBE72B74 | sha512: 62B1EFAFAFD0B85A6669F50C209EAEB754114CF82E8C7496371C0877D41B98C17D3933CE0B164ACCA928721A85D31C587590F67E79B306D824A840D4162C607B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: ED03400E03DDB5752E2D1EF3FF747A94 | sha1: 7221AC1D279C25A7AF6F2B1342F23A40B61612E2 | sha256: 38F37230C862DF15F765055DF56F966A5F4492E766D98EADBE1D6674A2C6B7F3 | sha512: 25B4EA248C1987A2DF27F6F46CE5BD0A998FC4361F42AFCCF6D07CB8154085C5D897489C0934F11DB2A3118E4417BBD360A2485D604598085C7D5015981B2632
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7BBB6808F4D7A4077E17D39F6732A09C | sha1: 352CED69E5191CFFAB8A9E0198F5269007A67FBF | sha256: 77376B2A81820E75B5DD99FBB829EE1A6241444F2EFACE87516309B82613A157 | sha512: B060B5FB0053C93A81F64BF317D28577BEE9EFE6C622E2F1496441804D2261FE5A3F9CCF75E32BE3C04384AF1724C677DBCCCFEDF9F55B3C1645A2371D20F223
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 700C6F2C508257FDF4EF4D8C161F9CB2 | sha1: 8459FABD7AA925EE1F5CEE9F36B0579D9288CDC2 | sha256: 06EFC9EF950821EC57B7ECE604357543FAC2F885964F45AD398357B582CD0C04 | sha512: 7D33113734B80D5A8C3D58106029FB514224DFD611AB5E787E8DE6117DC80839FB752B5C591F80A750AA61EE238B05847C4D0611D3B4DC3D203002EE1D405CB6
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 88CC74AA6AFD25F9216BA7E804BCE439 | sha1: 1CF39034B07C1B88185A07AD625089119F04D891 | sha256: 1E05E2E33C6293AB33A0C429289DD7EF6593A7CDA204E797F2D53514AB9CC840 | sha512: 34552EDF07D2A601D2B0295BCB718A941299312E962C4C08F00BE6CAEF8EB8C5220F170F36E1FDE4C4C9D44EC9402850C565A987366D816A33B091D7940F943C
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: C4A898D325D7A0AF105A8163AF160593 | sha1: AA369FFDA59E0C403A12E375D4E01AB550AF2266 | sha256: 5A6B1956FDB704B9AE58CC328B7A8AFE8C85808FB59042EAF2DA2952B5F64A98 | sha512: 6898E977817F3CB2B0AF766928BC7340037949B788028D738060DF2FD8EF00B839B50DB758FEFC36C5213125B4362BE1053EF4906B927CA281134FE60AA95BCA
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: FAFFE1BFE5C43B289ECECDE2B1DB9BBF | sha1: 9D142DE5B2F2DF6DEE54C3D08A64D65AD87FCCD5 | sha256: 9AA65F9BBAEF8F3144AA13C3A95E387C13F5FB14ADF34F497FCAEB90A77A9ABA | sha512: A4D737F36C198EE343F2B46822B697373DA6412B5B78C694EE64BB60CE54199B18C914C5ADE8F99BE4FB9D814287146A5DE678EA8E363EFC973FBA470A4585AA
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: D4DE1A10BB1C9182DA8B50A83571E2E8 | sha1: B505ED5FBB80E0BA187F31C7CCB8CD0FCA6E47BA | sha256: 931F0F99F0031C7EC18A5D5BF0B9DDD072ACB2030770096E1C96885F86C9974C | sha512: 7C7401A68EECB7D6078F15168C6198394EB8F96D33800E2FAC3147B846889024BEEEC8D454F3D86D8A242F1580F2CA174BF7C27D91999EC70ED215867BB3605B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 618726424ABE8DD1B0E7A650CA1D3FA0 | sha1: 204F78D46D493A0A664ECF9BC03993AC5F43BADB | sha256: 1060BA5876F7DD4E5511D47664BC4C83DF6A56F3CF7980F5F7DF7FE8BF2AA0DC | sha512: 10C35F8FE5AF5747E3255E53A666ED3FFF53D0532062B0C5F84E8A5A91B77AC66F58B89242C1FF3A1084E8E51D7ED29961FBAB5B240F57AB446AC9362974B5A8
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 51FA18B16570FB291B25B6EFDF6000A8 | sha1: C61E7B13D1084FA7BA2731F63792861B4FE6AD50 | sha256: FB792E82901A87F509E73AAB04E497DFA341656DC3807FC2EBE1CA2CA5778ECC | sha512: 0C8485D00645A2DFAFF4B14A5A130D19E90364AE9A9ABB813C7C630A74600D90CE5E676E2392EC1ECAA794CD2E6681845D730D154011FF59109983A0D3159E76
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Common.resources.dll
md5: F17DD3DF6E985033484B7485B5A4D10D | sha1: 03C35B81E128529ED70B4F8F67CA0622BAAF19EE | sha256: B428CB9BBA0ABF988F762AAFD29C91A7F7BF4EC715E7C95874F2E09D94FB3265 | sha512: 08F20C737215F8BA4BCD95DB81882B7F76C620282160516DAD989E213B7A794D43D12AEDD222A18F05595A80CF8249A145F796801C762EDE2FE3BC6C1F6FBFDD
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 16052C17DF1AD35C0B5854616A56A049 | sha1: 7CD61639065EEF9DAE2054400DC06D8B07AA3CE2 | sha256: 61CB6A3581CBE47D31484450F139BBFC7EDEBA59C1404B5D0049C68B4E075049 | sha512: A1BA09A8ED247D436AE86A205AF1C57D25D22C992381C7A8A4C9E5452F8BC3DC425CFE5C50AC3603447746BAEFBA0280BE4BB6E79FB21A4DF65C627452401871
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 63A2A321AC8653CE3E607A646AB529E9 | sha1: EB5214AFEDDC84EB553EF86B6FEFCDC464B37312 | sha256: 4BCA857052884E728692A5AA24904D4B823F8670AD897D83E2074842CADFDD3A | sha512: 33FD1F4AE639A68963208A5030F7E9FCCA7FFBCC5CB54E431B2078F5B12E3AA445F8D2CDB00EDD5F64E6ABC7509A2B830DFBCD6C02EE03F7EBE86AFE6C13CCC5
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: BB2580A25A69050FD50E0F6DD9B8DB20 | sha1: 8A5F9D6965864955BD49DAF9C19A12BDD6F1796D | sha256: 297C5E81D117DE3C5028A0CE1C597628DFE509F371BB4E17A5D5D37D8DBA272E | sha512: C98D1BD2989C24D85B02B639D3C5E423F2A54146D8E9B8F987AD67C838FEAC3972767AA9C7F02CB61869A6CF715285552FCFD48130FEC190178A8CFF1B1359FF
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 673B47225D46CE9A5B0D73EA67964E60 | sha1: B8057EA1D25AC2589D81C84F577F4636AB69CB8C | sha256: 3EC2B3ABB67F53E9EE7A7EEF1B3453D5548D5A03784DF1E5F15F106F90B2CB18 | sha512: 1034A81D7B71EA37FD5A504C204BD74B39A340708AC66AEC4B8F0F26A9AA7451581C2C697C612A1E09A11FD37E5D23EEC7187B34DD8CA2021928040599635AAF
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 5E202D28AAAF7C43654825539375DE17 | sha1: EACEA28D8EB3E8732ECED4712A47C90A804A0D0B | sha256: CFED7930979942C71D72201DCF5173190206341F2968CDD90C95CAC312A40A60 | sha512: D6F7C6B2DEF517A6420BFB180A20EDF766BEFD16B2C93DBC16A1D9ED4A516D59D9FE5DD324746EB54253DFB4FF50CFF1EB640C76D6BD84E9A074265A267DF146
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 020362D55AE2E68DCB0A30B472483F1B | sha1: C9E8C9BC01C52FE3B2FFFAFD2B23FBB43B08B068 | sha256: 29FE737697A599A474AAE9C99BF134A9734EF28FA14B5A66557F31D7B2B8CDF8 | sha512: 7F9383C2CDA10B39E10A6D16511687FC6A282685B3C41EAF414A96885272BC2E519D42446C3127BFB5596F20610B64A4671E1E21C56329ED908AAF0D6103A8B1
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 801E225B38F0E84A0177EA92DA24403B | sha1: A10805415AF16F1C9753F47AB8E56D3EC86CC431 | sha256: 9CD360FCB33DEC38E2495ADAF4E4A6AE9D2EA827147303169C552FF95D9A09CB | sha512: C79E509DA5CE2D4480E75524311DDFC0F277F0EC00D2337833A88259B15E568D42DE4DEB59F01C949C2ACBB672FDF5F4B78F7DD26BB905DA8F85C2689FA60392
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 1E2390F3C49C4F4FFE2AD7C0EF3BD7BE | sha1: 0A21E3D02B70FB7CBB0EF43F5CB0171128F83230 | sha256: 1DBA2B47BC08C731669D7BCD93D3608B36D70F022C0DF3EA9F965D3ADA1335A6 | sha512: A632312708C2FFABC76EA074B4EE3D1595D630C3710F9B43C9814D47CFF8A13EE556A359FF912BF695DDAB8C579AF2211FDA81403D7A1A17573DCB0944519444
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 1B01CDE1CC30C893A7BDBD6BEAEFDA40 | sha1: FCE0A7D0ECB5F6C509EABEBE1D719ACBDED96CD7 | sha256: 9E135D92BDD996C80C9E298325599A44288F836F03CD89C3840B36088E4D0D12 | sha512: 0DCA6E525E688387B0675EDF76AB65D4231D9C00BD15B6AF5CD0F2B605D1C90BD60ADDDEF26D85FA2A0F4CB9CB8B568C0A6DC9E4309E2B31AB69E15E9F637EB6
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Client.resources.dll
md5: 447237657DCC4795DEA24F5A587414D1 | sha1: C68E594F71608FE3855D6FF4FD9881F4EF26D1BB | sha256: 441555C43332249C1E49E610CFB9895B1D7917457C207D08ABD07E15FCC7EADE | sha512: F3620A92707C9D900A1619F6006F85FA691D412B30CF3D977C36DABD432BA6E4DAC853EDF3A309970669FE7505718BED95A18647A5AE07788AA1E0CAA26D8268
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Common.resources.dll
md5: 3E77EE4BEDECC241FA3371CF4E24FF26 | sha1: B485879A2455A61B327671C94CD2F6857EB04FB6 | sha256: F56FB0F3313196A11972825AD9368EC019CE459F271013D67E916AC27B51B278 | sha512: 5E54ED6F5A5FBE817FB8ECD808932C8DE83A18B695FC21466548FC1C9D58B0438FFE87EC077AC752BA266BE27D2EC06827C0984C4D30272A778250E8F6C75E5D
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 99AE30975852F6E878BFC3DA1A9889B4 | sha1: 0013D1D65E9637DB45AA61A2152BF375621CFC76 | sha256: A5A39EED04D15F0E6A688AA2EA0A29BA541F84A8526473214089C95F284022C9 | sha512: A7FF22826887C85DE39D118750A5BA333291E81FD251B405531E8C191E61DAF698471914C2EFDB5BEA5C9023ED63D0651A84E28D7ABD47BF5A4B57CBCA401655
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: D4174EFE38B43DD81D3465DCADAC20D9 | sha1: 7D9A07B7C3AFDBE718DCFBD7F3195F29155A6E93 | sha256: 98D2DF82CC7984ABA58417FE1DBB5E15E8A80E1DF0F2B9F389F0E120AB25D410 | sha512: 0CF04255A0D8B0F7F4F68C14A8AC309EC1A40F6AC733E98CAB669F7E3C6B260480D97BC0F6BBD9279B6AFCD94F9E6AD7CB2CF0515207BA13983DA6BC574D7A14
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 7AE289B05CFA5BBE0172FE1EFB4B132D | sha1: CD251A0BF7D8BAA4E2181E63C41A3270F2DE4A47 | sha256: 93FA8036E0DE4ECA67FCB82E807BDD702A883BB39E34291BBC5790127BF9A5C5 | sha512: 03E9E78E346CEAD0A3285BB5AEA23972AE2B389B14E5B7BD12C2E6F9DD4600261EDCCFA095D943007DEC5460CFFDD0ABEE7A19750CB7B1958E17B2E7BF63536E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 7F2011E6CEFE3C9FFE6A12A1B3B75BBC | sha1: 4F11DFCCADD73D879B7A5248C0B565A41AFD8174 | sha256: 8FC52C82A37698A38865B6E69AFC39EFF1A65749C7BAE156FF63F4C093813665 | sha512: 689457B037371E74D735871C4AFA3CA1ECEB8DBBAAE6AA3015A2C41AA804EF9715F13A3FC76CA1D31CAF71D23AA4D9A8FB278CE1A4143A776D8184D1C19936AC
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 4E4D961678983D244DDA1869E69BD0BB | sha1: 9653836B2BD03D6DF088D87A6499EE632CFD694D | sha256: D7883F5A51C0BA52C7092634E56E9E30C16F11C0E81D1FCB0679770D06B6D8E2 | sha512: BB05136B1AC5BDC6CC91F2A80985D7D875EAC001AF90FB0CED7D0451F9E3CD2609895D453F9799CD7AF4809D7107C01210CC62271B5EDD84D11CB64A50F51292
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: F1DC78AA57212A2B7D35FF7691FFE38E | sha1: E8A43FAED17850674857EB2B80CECC0A59361DD3 | sha256: 43CE960FD364187B5C82DB29E58679E3231C5C3D240AC9A72BB57E83245F6113 | sha512: 49B814250614102DE7CD21912249105DC08688876792D640E5577F22D2561507820B2CFBF095A1027C997B9F2BA78E70F2719F057321B2FD447E73BEA8B5627E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 4853C261C6A48CB0B2583A402E0A3CE2 | sha1: 132EEAD9F48F0456A58C9298FA7F44CC3ED2D54E | sha256: 3536C78C012AAC9F219E3748115E4796AA021F9432084C9F98233A354B9E6CC7 | sha512: 447B036ED954EDB1A16142F451CF4B42BB86FACFF959EBD34996EB5DF24F82A2E015F2A91B8B0F0EF2FA3E303596A9A952DEB7F31696BC0027D18C1EA5D04501
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: A87C18A0157B0FE6FAB3CC6CA8E72A37 | sha1: 51A51AE68C1B749F9367FE3DC3C77F8C35C60D84 | sha256: E534AB79B049B95121544A6E9ED0788FB4AAE605BFB594720785A04A6CD83555 | sha512: 17630788F5E62EDAF03EF2ED30443549E76B7ED47E68A48E00BA389F3B7C90947A9C1478F182D3BAD92221B87351F1CEF7F77A6C8A8876B64AE5513D83294DF9
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 315D1B38E76E77E0A15DA437187AE6E3 | sha1: 6955828E46842BA17A673DD64AEC88E23BE07BDB | sha256: CA6D993FF1403129A5AB90D148AE7B9AA8DDD75572A4873C5338B9839F08CD59 | sha512: D663E79EDBCC28FF2B72A1556A6FFF88E5C9471237B997426D4344E4B84B9D6109F6AFBAE553CB38E547EBED88F691E258422709646AF28D49FD2CE59718A52E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 3A2466270FF7991DA8D0EB0B6934C187 | sha1: 1FF871C8E4B2FA0DE66A4974492BDCA9ACF47D15 | sha256: 61D014B147A67F41C72B87870BB187CA3FAD24C0CD195CABAF992B7BE3385E4A | sha512: 0F778A249BBAF0AAED5DDDAF43F6DB098547E6A27DBB2C99C3995B596E04E9B7266EF4EF59B1E51903E3C3C5286300231F19F8601AC9B7CAD7142CFA73BDE32F
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 6E7F429269D7BC9F2F91962D94AB5F06 | sha1: D5A2930E5822CEFF6F00FEB9CD973147708A2B9C | sha256: ECF679A1B54B604A0AAB0D7D36E78066063730CB3CE0A240514DF25E9662AC93 | sha512: C99257087F5D684C2B9859CD3171C28618CCB23BCBC0DA4A1EC1C32868F3B051EC42442FE320EE093F614E498FD7576CDB0085D3812B91610240C4E64239D860
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 39EB9657108CD1405C96728B7C566DF7 | sha1: E22D5D321F6712315C3A9CB02B570357CDD4C720 | sha256: C97CB511B1E576DE2B8B131A76E2E0F28472F2097610A7FF1149A069D1E42831 | sha512: E985DDEA0C6B1BE9472BE52A6A90880E6C548EC04B29E45832940C6769C4C7B546E90C1E8C3B4CBA0BB564C687590B4D2F64BEF6B153C08796A42BCF3E3B3184
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 7628AF04AA2837A4FD8AA67947B2DA07 | sha1: 00E41028A4691E38E1B12757292E7ADDBF6D740F | sha256: D6F48D0CA8F49854B90B21EFE3D496FC6D040C0F8425C20773FB81E2C17CDDA7 | sha512: E5EADA89EA11555DE4A094EFA72D4B5A5442C4FF4A1518D1606466806C581EC627C89C73457F86CE8DDB8AEAE70CE94A18768E90D971B3F6D25C31454E79D44E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 07269E1E0B9EE23A7A38CAE495B4EA3B | sha1: C5346389DD5D57E85FD772AD0D4E7A334CA5481F | sha256: 0F2CE506E1DA2B874AB6D77A4DBE4F1C7BCBA0F53F26DF650601367E467911E0 | sha512: 065274A3B433B71A4C9BD00CE14720A2C115614F0E7DD871A4CA100E78346B10797425757933C67A89E844DA781FC4C42CC7C983B70815432E30828ECEF1B49E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 0444F22581448A0390A192A755EB0CD2 | sha1: 8A82C02C0FECCA79E3FB6CC2CD6FC1BA1992C78A | sha256: 600F1F0C12AD8B127445F71CEEA9E8A07AED4D6FE7EFFEB37B1CB30163CEADDD | sha512: B1DD653D914A035B30E9FE811EA9DC6C2D7C75F9DE1A1B8FF18198767DEDC10D11D1361DD09EE7CDFEE052F883192588AD58C801F2EAAD65F542049CA82AD587
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: C48A5560493DE11F97C01777D407C27F | sha1: 7D432D6815916C84F83644D9C84083F51F526A3A | sha256: BBFCBA80BE860068F4B27893C1AA6269206B6C7EA713A14DC472FD3966A9F16A | sha512: CBEE44E33C657C4BEE58EC46E9F27A06B2153F625E5BB94D15516915897DB14218D6AF9DE8794DD764C00C23410EFF3B128A638AB9DB972EF481C699E164EAF4
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: F258084C8F6524BCAE2417851F415C06 | sha1: D3DEEEA043F3F30BF7BF717F394D7C05BAB8FE3A | sha256: D765D70AB9E83BB58E89A45AF633DC954EE8647AB37B75A212E63DE505A1EE3C | sha512: C88A385CD0E2DAA1278A90C7B21C8005F1FCA06EED0C791B558D059FC27C979BEE066027E40616AD77DE2B601B169A867505F955903CF0432D2445D6F1F5FDBA
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Common.resources.dll
md5: D9A2E4645F063ED3517B1A9DDFA61573 | sha1: 8608B364F41CB1090F18AB6D0C1FF14792EC01BC | sha256: 86E51D46D70959910D138669519306C9B43C34380ABA72F50929A4EFF4D84574 | sha512: 9FC933068F79ABEDA709E556264E936873B1F4CCB8B2A7C8621B242341A28E01752A34465C15B109ACD514727753BCE057C3CB7BCF98C22A7A761C35F142EA05
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: A2FEB8519B6613D6708C06CCBF838C79 | sha1: 72B8BA4728E41A116C893CBE2DBF6AF2CC0C80AD | sha256: 04E1CAD640FC2E5F92D4C0CE2FAA5D0254E2C589F685CF0E8895FBCD740EDE37 | sha512: 47A6DA4344C011EF69C016D70DCFCEE140E8ACE9D531218F2C97DD0500D8F7367E8F65CF22ADE1FD3068D6219A787F2A672901EB9EFCEAAE6C4D41D5A413C9A0
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: A0CCAFD7DF276F640AD1A330F67C8B28 | sha1: FB2AF0C0FC9D1EC1A8EEE5EA40F2E22C025B236D | sha256: A8CA3E0471524100259D1A183F720736C0A28E3105AA32083BDA17DA76513419 | sha512: 289A9700441637B5108BF1B69DF989C04A7FEA8190A3D12DB5D1D442CCC1CF27B52D03214F1CFAD305669CD0C19A2CE3F561B2F0CEF73172E9C85DE28B12499C
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 70BBC9742639D0C5B5FF1E3D6DD15188 | sha1: 34063993B9AE311267E1E25F935177BC0B33E350 | sha256: 62787C60D3D861C6E4D746F4C1D895EC3E5654631068CC1697A58E5163224B2A | sha512: FE8B5AAC1C24EAE9D4DDDA976C8D5EF6A9286F6F240BEDEA1F324AA7F7D1C5BF5B65C30388CB54005CAAAB72F5E9212A2E370D9D88A3FFBA4DE420ED56132F14
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 570A9E633158CEDE681963A4BFF9DE63 | sha1: DD422089B9540F4FB95F5C644FED17F517C3AC12 | sha256: 28CC9480B301718DCF328109F8B2F478DE50592BD141793C1EB86E0CAA4862A5 | sha512: 9EF82209D87906B917B4DB9F971EFA568AE3F001E3A2F4D65FB51437880F92E991CC30D55BEFA4A2A5A68DD3A51D216397222925DB3B89C0B7170D96D221D900
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 84795F507E5DD017D31ADE096DF591D5 | sha1: 6FDA1123C949BB6ED23501A2BD1804F439BB8CB8 | sha256: 5E91006B74729269D2F20EFA372B54654C59D37A493CEFF19634CAE8A0E87553 | sha512: EBD9E2477B6D4BF59C069D227F4839FF49A97156A7884A46C6A288E4C0A7EE15423D2F16FCD51CC5719D2F6CBAF6FCC9F9ED6186CF087A67E398E240979051C3
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 8CEDE882E19D197C6A4012A22B85BD5D | sha1: 82A020B6E20FAC20BE5F7040C9A8879DE6DF7D35 | sha256: 5C26A24DD870D3A78A05F3681B172023DAAFD0E1E6DC1182A4632E63AEC2EC37 | sha512: 0E3E4A5BAEC6C41FAF8512EFED1BF8E49B8AAF4F74164910C286C77D81E01AC45353B8CDBE915C622CD7FD0B2B2F61B33BD959DB334B4CE707CB650A428C2532
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 8991282FBB8010E0E776BC34EBA40F15 | sha1: AE277F78F5AE7B31B635AF0D4A8B0CEF0304F795 | sha256: B18FBD742A9B920BD5BE215B15718D7F4685924178CF96E86FC640C655977F84 | sha512: B246528754D4C569AB4FA073D80FF5459A95C40A410D81068D642A4747DF52E88A0DBCCB239FAFF4E84EE9405D8BB27584508D6F05C7185D4CCFC5B0456EFAF6
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 85F326D30F0133A85420CDE4C2DB1944 | sha1: AEF2EC2ACDC695D46B0E5C43FAA9297F9C7F96BF | sha256: 2CDA9C89C778C101FED40283E2D4878226DAA224AA4743BB49AC40FE6D673D36 | sha512: 07076E81893C0A86894582CC7B3A31B4C8EB261FB14143488B1E06B293C52D642B1220D5904BE69605AE97703F0176D31F4C47331BEC9AA7590C6722947E9979
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 6994754F85FF10FA1CB765B6AB477FDD | sha1: B688303D8222802F4F27C87D0F67E9A610355580 | sha256: EA17ECDEA5290826A87C501228F9375C8BAD2BCE7ED72F8FEBBB0AAFAD254456 | sha512: 0A8E0C6439FAEF063E19B0594929FDEC7B36AAB4E7D4D0B8C92DE264A879CCAD9A877BC5DB4E62E557B44B6B3D9A9360D11A00BA948B51BB57816FCA8A012A6C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Client.resources.dll
md5: 6017FDDD3354F59432699E359224D23F | sha1: 09ABC58EA0B86053234F7A6D999C44D578A47DAB | sha256: 492C2E70F7C8B9ECA74031794091934C856818122E190563E6217AFB36DF48E8 | sha512: 4A0186579CD7BDD92D9C268A4B548798F72FA993890A994DF74DA677DE5A3B1ED2ED14B434190148E7EBC4EDCB9EA977D68AF11E18A084AC74EF43EF36F30758
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Common.resources.dll
md5: D7442DA998A0C321F70896971A83FC46 | sha1: FE9165D3B39271BE83016F4D40ABE94E42CE63D7 | sha256: 04E385373A0C4BB26AEAB91A1479C3F37988631B844AF2308524C74A38BCA1B5 | sha512: 89421A3CF2119D305932C41C1837065231D18C13D26FC2EB8360C224D56508A7A310A56045D8C90DDDF2D292D6A44BE844D7E570DB541D81591B627786AFC056
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 3D52DEE7512FBCBBE32399DFA1BC50B7 | sha1: 8EB8F3EDF707AF5A1C5FB4ECFA4E8B57A669F785 | sha256: 89D0BFFA72B3E1AC078608B912D330B9597BCFF3A5A63E246BF7BD37CBF497F8 | sha512: D97EE21779A01C47333DC77D31D3052DB69654412BCBCB2B9AFD24B87590306868547064CF99A7BBA5D8BB721DA442F8F3D5B27B8F0AD600ADAEA6D10351D127
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: CD7D1D29E301636FB6C5E2AAA5D042CD | sha1: CA0EAC22B0A8E72C5B5AD5D0916EA633A17C1A47 | sha256: 4974717993EA41871D3F9C67B0DB9BB00A824FDB3850A4038A55AA4568AC9084 | sha512: 9A092D03167AC0747B124463D9383D0C7B5D68B0B79A80E34D4F9F1873E348FE66C3B5794BFF4FF4703A616754CFFD44D760B022B342770C7F22222FE52F6131
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: ACF73B4C0F70D8AEFCA52383E9B6AB97 | sha1: 8C0AD4B80A0AC7714CEFF347D4FB4430036BD718 | sha256: A383CFCF854613C6D5F3CA9067CA1F61E1BC394EBC801D2FF1A874D380C5BAB6 | sha512: 358B8F290EE684CA2C7D655A196F1274AAB7F27C527F586FDACE4CA48836C7F57ACE8A1FF4542A1872D8CF79738AF1A1C08F4CD24E7868EA1EE7C1F5C68561F5
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 9BE05AF39DB0CF238BFDC9F9FA8F2056 | sha1: E61BBEA2003E3B74EEB002ADB08EB570C9905752 | sha256: BEA37DEB44BE335454CA20C71E89389E5AC2017EB01129B8147796C29E7515AB | sha512: 205CA33B38F18BD8EE847F075BBE16C7FA3A4D51DF9DDFB3701DB08A802F496713E20E41B8B270A6E5ECDA9C611AB9EA6046EE7116170F2033CBF0D854C6B1B4
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 7606C74BECA9D56DA80E79F68B5C99C6 | sha1: 3E365E669815A37D31002D1678D71182E313B1A0 | sha256: CA295C24D08649748D0E3A051FD29C48E7698D3390790E34CF4D312B7A530994 | sha512: BB92D80EF1760967E1592A29DCB3EDFFA930EC2F3F76D7E589BD138E65B1E33D5D541F6E26A1BC94A04781062E13E4DA757EF033C5D6BACA183C50F58F1301DE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 6C2C1235215F4A97C0E51F21341E499C | sha1: B8640E9EB745FAB40E27563776FCF7C118796CA8 | sha256: E2503947083A97BC23B9E3C67636891F6F8A28A93F47A4F3AC6D2FB670812DF4 | sha512: D9BA4296F97EE68068126C0041F54FE68FB8CD588432E6FD3971C8A39ADB2C04437F996EADED7CED2D0D5A1AA43B40FB8DC197DE0017E700AD17B6F90CE542A2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 71ED94D2BE02CCE8860E3E6EC271AABB | sha1: D9E771D51A5BB30A39D98F392AA31E15A26ECAB5 | sha256: 3FD98C9C5B464BD9AA55EAD7C5CCAE82F87E6B4770F3FECBA9B3EAB5FC3BD04B | sha512: C6E6EB8B4207E08FC9E5CD24769560B2671313DBD11BA3509FEFA09D53B693D8EBD05727A95C94F06ED3555224B1E26E075485919D621204EAE5A12718D938B8
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 86E5D95BD91DBA4D3DB0D39C3643A6C7 | sha1: 049D6BC3DA66227971443038DE86455CA6FF77E8 | sha256: 28E8600C15B6BD9DBA944392EF2AD1CDA054A7A9A9945AFE86EAE92A41286014 | sha512: D381771AEC240E6224AC4594FA86D9230EC621BB23AFA818EF246078CE8BECB8EA576B336927617394E11D8A8C3F0945C1262DC8C8A2E85F0F2C8B1CDFEDBBCE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: B2C72C1B03791E0097484CCBE3978641 | sha1: E364F506D3E9056D7C477C99F462E7258DC48FC8 | sha256: B1EE07591C6252AFF703FD5D15D1A38B7223D828D697E14C85C1AC54EBA6C1C3 | sha512: 5D3D1AEA983895524A7193C7103583E8872EFA67C0805DB4CF0C0C94CF17BBACF26D0DDB44EF762166D5B1E2B35C8258B63F9D787CB7614564C1D3C4F46EFF8B
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 47F6BEF3621F2FD328281FAEDCAD49DE | sha1: 2621153F7F2CA56938B4EBA0AAA5F8461E4771A3 | sha256: 9CEA43228A7AD4D01D306232D77C97DDF87488320AAB34BB626BCC735555FD10 | sha512: 0E38B5EB69F99EEC8F18B57AC9F1D12BC09FF12BB1CCA2AEE803FB6D91FB90B56D0D3BA5908458C4443843773FE848DF046EA153A81FB49CAE50231929616EDF
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 9FC93BE506F86E8D6031F545CDDF1DFB | sha1: EC3E3638AD605FC5ED341922EC6C6706ED17FC45 | sha256: 236DBEF81ABA3433BF4697AAAD0F0D2E71ED37D23D176540FDE4D0D5A85591CD | sha512: D41E6B3145F938E96FD877201D26F6B51C9CC8560A6D751787E0C8F517B42409AD2D3A31AE111BEA6B515FE64446B20FFA1001D9E1F761E8C283C917A54B2E0B
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: EF8FDA2A1DAAEE2D15490C43F5C7AF35 | sha1: E2698C1666D77DEDFFCB150E823D8A0C325DC3C0 | sha256: 7D42E9DB677D8E0C1CE79C4880B21B434FA54BC933F3F17A75D5D6F15F723129 | sha512: 005F95D0400920E14E2FE8C531D4226E361B50D71D63E4B68857DB6936450799EE1CA410B3E3C54025D4BBB876D2A6756CEA5EDDBD19401C85A52D1582C778EB
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 5464C5AE363B1FBBA240C49E629EA673 | sha1: B744BFC1F80BD8BC079C142FE9FB6D2B4FA1C388 | sha256: 75C8ADD3B2FC65835D7D5C5C099ADDB7A8A4C5E4D5D5F3799E54625F49EF5786 | sha512: 5C7247F4DC314D5E45771FC91A8D58502BA61A29DF9EB7463DED88EE02E91CFFC9B5C623D9CFBA5CF7CC12B4F78184B5BACF138E88923C1AF30B2E36B4616A5B
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: A8D48F7CB27B255C2CBBD953E8D93EA9 | sha1: F32E868AAA47997E11D26787B2CED2130C26A29B | sha256: 136172D03CF8113E839801AEBF144243507E4C0C43FC8685D5B691A596DC107F | sha512: 349C921A9A6E2685947F045A27618565F5F57A740FE24A93443F6C131882299E779064FBF65718D95F093D1D96CC533CCD44431E1AA467C416B3E1751A3339A8
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: FAEAE92443281C1C67FBE6A6D2942231 | sha1: 93B6ECC6F58503ECF740AEA60BED14B0BBAB7F5B | sha256: 7710CF45F48CF9CECAED7D6EEC2C978B3BE82C9348FC0E0665E1A1C5C5173136 | sha512: 788E96214170E12513B0F96B3B72C4B713C239759FDBF58ECEEA0C490A0461C96F930DFDCE0542C8761E24302EBA34CAF75577AAB7CB7DA0D3BD1EFD0F79244A
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 0CDA5CFD0E51121135882686DF0643EC | sha1: 9B72422FCCF0EAC7E613CD0F415424F083702039 | sha256: E098BA0FA578FCD748E069B2B1ACDF871ABE060E3482B331A039A7D2584545CE | sha512: 9E93B8E4B63AA3E986DCF89FD7BF6BC9289BD8C1FD201CAB9CAD7F2F62806B857737A233FDF7F4F32D7CDCAF4F07181310FC2F49ED1EBADAF00E8FE0F3361ED8
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 54908239CDA23C4FAFB9C7F677FE296B | sha1: 3DB87365799E683CC067DD23A2D317EB0F517C88 | sha256: 96B21E05EF9DEB8F091CFD5B4B9A18F34C8DFDC8E5955FCCFF22FCBAA63323B2 | sha512: 530637103D70D7F5530A8CEAC4961C0A0123C49A71E2B7152B86A564E184B95CE8D97B4E2096F67EABBDC52A583428C3B3D66242805B30584F90CD6168B24BE2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Common.resources.dll
md5: B22E66E37933B042829E5AE41A121A98 | sha1: 767142AB2A521307B16CDA90495D7FDE92A00E2F | sha256: 47C359102AA3B31BE8316495036F5B096E2FB7F2C05E1A51C9D66D56515EA0D1 | sha512: AB46B4A5877A5AF776736D8E38EA1ED129CE8D4C743BDC27EB6E0CEC7714610CD9FCA01C7106B260E9AA9FD6B7C522D9BEC817AE18089232D1EA6663CAF2D4DE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: D9138B730F7FE7A5C7447B5490437FDD | sha1: 687FF58169942E28B645C9057DFC12659BBCF81F | sha256: 5ED76F2D9913F3CB83267FC1BDE14D8C6C815CE4C42A2A16CD44D4AC401A290F | sha512: ABFE658FE46D609F6FA6929994CC640407E14F94D02D59146B0EBFD9CBB431FE6F24D9D34B6F91E4BD2680C318520C3A123E47B724BF69A6FA4A0C81F192C3F4
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: E8CD2F25DC4E6C1199BB0F70C419E005 | sha1: 4592B7E0E34B282C8952375D9D0F8E6829FA1164 | sha256: 84E37DA155036AB2E2E53CA14B1609C3454466186B84A9E36FA132DA14BE3EA0 | sha512: C4306B3E4082B95D7CFE43961860B942C9B3EB00255D296BC9F7BD9972BC3CB008220AB29AF751F677479138CBD198DB1068887082EFCCFF62DDE1A6AB9E6D7D
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 82B52605F46F051FC81EE1EC21BFF5CF | sha1: E0966FDB53AC0A5A79F8BB3E45E9A742BC456409 | sha256: 54DE9163107C06DA4A34CC76EEB00590ECF5D700F84E35B9ACF6843D7B2659D1 | sha512: 093C2558923DA71259CECFD7E52745C37FB6A2CA5A73BCF1BC58D97466170183EF8CA72EEC0969EA0BC50E9DE57829AF1C1172E9E3D19E7C790C0B00B6C2E6E5
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 2EAA815E1D1F43578EB990063B34A859 | sha1: 2174972CFEC99BCEDAD7D8D25538C68F90974151 | sha256: B68C59E4A4B2B4047C50CED8935925607AAC83497ABAF295B57E7991BA1CC143 | sha512: 7B65EEE81BA0459652BA2A1EFEEBAEC707C7F04EB8A141A971EFBB4C35B3C338E498089721B72FE6051A8532BCE47B1051F800DE00EDA971F1601BB5D0C9D78D
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: D503CFAFC5634D8860E60487CDF72847 | sha1: 4E13B63B3E798374F911232FCF2FE72981D25FDB | sha256: 2DB58F3205FD023BC258395C8F9D672AD03B04F52DFB6A11B910C884C23A145B | sha512: 47020A8C19F1BFF27043757F885E80811E2BDB8AABB8C2FD89B514C3C1E7DB688C369019AB59BCA76DA2DE5C65417D81A82D16B5F9FF282B29873883A1AEC989
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 0DAA69608EBF52C0A6D66F7E22320386 | sha1: 6F6BE9C8BCCB4FACDB286A5C527974EB16683B0B | sha256: 9FDC8D67CC551C1D1F63F3A2CAA94375D28A6ED1D6101D8E5CEAC94F90086D35 | sha512: 4135435422B19BA1533C6CB31F3E2FB049340C5104FDF68D5EA4134DDA8236D3E1122A0BCDA5749361FD4BA18900424A8FA6D29D476D64F21AC4FA4FF54FC670
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: BF61EC810FB77AEA765C90084A715725 | sha1: 683C7AA7B0359A3CADA432003A16E2B1F0151B7A | sha256: 6C6C2F519EECC79F01A3341DE33EB79197F1BEE50A21001CF6E3A708A5CE5D6E | sha512: 5B075EFF23F7CA0A1CD99E78E325EDCDE454D3EE04E2FD3341750F19682E6439925371AA22CA5F426E60673483EE38E5BF5386B1A971F5DF5DE52DA3EFEDE71A
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: C24E1A631B54BE1C4BE4222A92198EDD | sha1: AB5C1510CE69559B7045898DCFDF0983ED1ECB96 | sha256: 8379A0A3E53E7A632CDC5379676E517B0D2E0E0F50D741DA1A9C2F273BB5D6B9 | sha512: C422137C1C00728D5C7C89D3CDC972BAEE88CF157ED9D8EDFCA7BE884581577AD2E4951F3A85681C4CC5A25DE848998B957055310D4FBB6D4E8993DB0F0B377F
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll
md5: 485CFB30982DECD6532B9FC0F9CABB24 | sha1: 677964972EB6F7FA2E5FD6396D254E09202F5235 | sha256: A89B81702280B11F18CA90AB2D3923368A2CDCC285A60FF9828E17940842934A | sha512: EAF0B622261086E51A3C180B032ADDD2CC6B11701E395EE696AD4469677B94439361195BD7F29ED5803EE2A7171D6A55C5FB3B59B7B6007ED1CB7564D409BB2C
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: D4F035D35F7AAFF1EA111FA45849269C | sha1: 65DEC068E6C1E1D27D441F2AA6967FF257EFC1DF | sha256: 344618F6353FB8213A98B92182DD351B8671C09AA60B39605BA7753FBF6853A1 | sha512: B35FBA497566D56F1204A503A39DF898C45AD18F90074AF21A12B7BEC8FEAF2223F4243515070AF8ABEC52829AC8BC8C41D869165177E2202DD4CE4F261757AC
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build.Common.dll
md5: 2BC04CCF1C4890F4993C173F95B94D68 | sha1: 8A7C1B2DE8B5B831FE7820C6058F0297270D1E91 | sha256: F37696C6F037F074D0AC7C5CE68041E756A8F56D979F4D3AA9EC6614A38E026B | sha512: 9B8179FBC10BA81C4E1DDE35032828D7C95635AE276A4664BDBAAD26FB9813300EF60585FD8B6376B5BDFDAEBF53D52223C7298CC3F2A71A083C9CB40E408CE1
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: 1D7A80A5DD500C2B1EEFC5A897BB8B9F | sha1: 8920E222937DF7629F7AA61044CAB72B858D3009 | sha256: A224283884970E9AA2C3BA99524B295C00DAC663F782DEEA7E10C1673436DAB6 | sha512: 1F356221352C9E39ED64A93FD8905F3EA6759F3E042A81B4DD33A419395AD0E1128DAD8C024C975CC9CA773873C34F785362E185A82B25E7AEDCB6BE6B3D79E5
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Client.dll
md5: B3F668DCC1DBBE7E239E1B2C0B48861E | sha1: E91F8528A160530EF5B30C8271B185FF6F7D2E27 | sha256: 16B83C1E550C6B3575D725B51D16E506E9CBCBB54386802A22F7C1D4E14171B9 | sha512: 9DE27D3C8441B81FAC06DB803121B77F1C68401176309BB901B580186C6EE6292B405CCE79DBF8B00829DFFE6C2793D15BA12FFAC0412E728E5C1586D5203C1B
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Common.dll
md5: F926D5687F61F15570BBFC3D21B38A6E | sha1: DCFD74585C766693AE85B2263EA1A8A1724CFA01 | sha256: 5328851808AE748995AD3B9B0E34E8D93AF127FBFB5ABD86B13534F61ED6432D | sha512: AC4FBDFFC0FBD038F4A0C84924733F85B819B96C1FFA969C3C3D9125122B363E11F49C814C943E7AF8EE5EC73B096C58477CDC7BABA626853DDD22690F3BE1D8
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Core.WebApi.dll
md5: C395A9E56E6A00348000B74874D8AF2A | sha1: D4FC62D13227904B640E2F244510FD769D86AFF4 | sha256: A3DF85E1209BEDC0653B8C1151FB75A6DB12D5E64D72482A33322877A3423117 | sha512: D141E638B2FFBCFECABF8E53F6920E6B3AB29A4D0E15D7E8D747E5C063F84DBB622759B37EFAD929BDFD1D7CB6FF25C3211AB4FA9F426831E2DAC1AE05E1E3D3
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 9BF16C1A8DD4DC1C6C6FA3004965831D | sha1: 77EDDD0AD1F7DA5950B5FCCCB3CF49A30B459E0F | sha256: 6CA3BB8C340270D9108B238C311FD166E1FA4C49B16A899014404B842B6E6520 | sha512: D78950893883602062041B239927FBA10A2A41B5E48D64BAC7EF2D767C2E8FB47C777049B91903F7B8D65F50C60803FAE944F5509644E494D1CCF7E7B4895D93
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DeleteTeamProject.dll
md5: 9A6722B71BA5A0C849C57B690030EA27 | sha1: B5F28FFEA1F0D4CF402727750F638FC6F1FE92A7 | sha256: A0F0F2F4BB21C80EA501F29B76974844F36BDB5D8175EB015B7AD021C470EDE6 | sha512: F3C137CD6D55AADEDD40584ECECBF8DF3FE2458A5C746E08B0C2F4E3612432B8668A4F20B6708D363E7AAF532D952BFEC76982A69413546064B6B24AAD224065
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Diff.dll
md5: 6381CEB7843DDC5FE7E6D7124608BE30 | sha1: 1B5A3F10D07C44FC3199D9BCEADFA2B3B66C0BF0 | sha256: 4CB46C232FB8D5297B6BE990D86972625FDF4CC594C5B47E54CAB95245BB18A7 | sha512: 5BB1EDE026F097D3337EE46592A7D84BE1EC959AFBCC56FEA97E3F7CF759B24BEFB9EA0729DD2AADD18043F979D92AB8E10AA37EFBB0FF02A5427DEB1FC1F3D0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Discussion.Client.dll
md5: E645F77E8B26E54F07A8ADFFABA11654 | sha1: AC5A04DE2E88B5F3A8B937F594D4E59880BF6405 | sha256: 7AF9BE5B17D2E4C0945C86C7E25C1D66A1BD44ADD79F49703FC43F8A2DC42317 | sha512: 6A6D846B3F5EF6D1CF5A354857023440CA333B3F17CCE9ED6F22CB054149ACAFC43BDB9AB7AAAEDED7AE592C3AEB8DB91B68128F5FE6DC286D8C593261577D52
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: 38D9D4767DB7527335218E3BEC90BB6D | sha1: E3CEC6DEC8C6861C660BD933CEEB59B6F152B2B4 | sha256: D5ED91D33494885C278C0EA7B6587ACC8913089C257C370C74AE6E1729FE81EA | sha512: 5CA8881C27EA706336833CA93C70184E8868ADD2C72E69C4E3E8595AB68AE36C6590C18AD2E3ABF2211B15AE8F31BCC2B96603833AF3A69DD40474CC57013021
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Git.Client.dll
md5: FFFD0B76FAFF65AADC9127CF8BE571A1 | sha1: AB0DE6BCE863E779B5B23D80DDDC177689923D45 | sha256: 19A4847425FC29661707B0F8948325AF294B61CB7714A2EB20ABC26D9C0C239F | sha512: 8480EDFB170B34223BC510254F9A1CA1D652EBDD40CA6A725C3BA38171507D154DDE04972618947AE19DE95BE2F5CB9734E4574D22A1C3DC2A850691032B0FA3
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Client.dll
md5: C3F1822E8890FC4F923995FDB3D6D0F0 | sha1: A34D36428886CD9FBA24ED61D1B9FA2F7061097F | sha256: 7A0BF70DAD22BB40CBF978477EC2C8F8870D872353BE71E54F16E7A73EC7801C | sha512: 2564D0C9EF3497D69CE6010B15B65FABAE8A2B51825E0F4E5063B3C0A37BBE607EF85DD391AE6C06327C962F79714507F2FA3827BE01EF65F6EE26A87C8E546D
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Common.dll
md5: 1F4B5099D8B50D87D06EB0BFD82D03AD | sha1: 0BC36E679D87BF22DD66A1E36AE9A184A98EED30 | sha256: 7DCA5AAEC36B3A7EC8E7F9348D1BAC59922A1E5D42DA78F45BB03F7DBB75F86F | sha512: D1B1EA725E8BF7E662075206135E70755867343EE9B39C161688776083952CC7B21E79CF412CF58CB8BA41517DB84E0692E6956202CB7E0A79D1B1C5CAA69BF7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.TestIntegration.Client.dll
md5: E1A13002F12A891A1FBEF7F707B55EE0 | sha1: 05EE583C2BDD19D9DA0C633EF02A94BA287CBB64 | sha256: 23531C64E5CA8F4F1167CC95C30008035BE7260A772BC0BFED5F055D5FB69984 | sha512: 77F4986785938851895D0D22F47BF16ACC3480C283EF06987781408D607EE8461411A8B906A5E2A5DEE0BFF5A15FEDDC061ADE21DCFDF11F30035337C4932752
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.dll
md5: 08DB33FC5ABA977F0B0F9F76FF42CC61 | sha1: 7BFB689AD9150373DCB2E07B6946EDB4CD704F43 | sha256: 771C7FA30F6A01D5A5E50AA255429C80CD0096BBD11D7E39ABB768D22B8E81AE | sha512: 5F6A3A6C7D81EB5F1F469777CC62D062D850F7928863646ACF8FA92CC9CD45A9982F30A6A32F77EB99314F1E85D0FF339936C975F5B298A3590B303C3E929EF1
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Pipelines.WebApi.dll
md5: B242E130C699DDFA2657D67A3FC81E97 | sha1: 6B9F21C345C9EF2B74CB8BE95B972155245766C3 | sha256: 49CF5E848123453ADC409688D4E30CBB95E5FF6DC6EBCFBFEC37D49489D4C59E | sha512: 1911348A7B6C101AFCD53E04F0821C6FF5B1F7CAAE79E2F464316261657A2AC8A8A60CA463B73C38279C99F3AA18A4C81B759AA8A8E243196EDC3644680ED140
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 37E85686627A12ED871AD2E93D7B8495 | sha1: 79E5B19C7DE7C6E7EDF1865F6E53B814A2691D3C | sha256: 92A4927DDBB9FF5C6EC82B31A296C3935F964A98CA58C1E5FE1612FEC197EC09 | sha512: 1BC7B84ED73092A4144C1DD8B1DC27023D59F144AB1704DC340A5BDBD08296835FF93150FC381AA4B03F884EEEB647FBB66562CEE07913E951EB6AC92350F0AB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll
md5: 8EA6DD40C485037050DC2297C370689C | sha1: F4065C4F6CC1629745D80F89CAF722E5DD7483DA | sha256: 36B0CD1D376208F16A4D77459ADEE87C6D244024215498A851251E6842EB46CC | sha512: 0F5B759CD5075CC506613AF1CCE84DC82AD22F455B9F6998D712E27C2EA7F04FA804F100EC4EA1FCCBEE806EFE452BD7761BFE3B2309F42367DDC49AE17B1786
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll
md5: EDC6301DCF858894FD5E412FAFD570F6 | sha1: 7BF2AC946B4E03FBB1D784621A7DD959D17ACA7A | sha256: D74970B8EB534D3ECE2EDDACDDEB0F5DA3A3809178A6DABCC33180108F56858A | sha512: 56EDE5A895A8EC0B72FD136303693B062DDF181C206AFDE6F3B3006F7BBEDD5310BEB970576167DB7354BCFBE17B0DE887A36C600791E297E2202189DE3DE825
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 66A3D98D5AB1E9C0D905186FEFA30B4F | sha1: 4A1497C6951E06902EEEF28FFD9B4EB0049B78DA | sha256: D15ABFEB81097735586570619EE3B75BC8083AECF0536FF098922DC15A02889A | sha512: DA0FEC2C2FB49AB3E2A04444327E6226122FA2ECC381CE7E719B0AB4CF15C0F3365CF5D7F198378754440EB9BDE361FCEC021C761D51A5E13598A47D8382F476
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll
md5: E9FE7F1CDC2A0AEA11063D5BFFAC902D | sha1: 0152EAE5EA38B66367452067981775D38C0C94AE | sha256: DEA03EC2624E316415C8CE570F6116F55271B3022B13845AD2B239D6C19D5AA5 | sha512: 8183CFFF356825D8C22C6D5C4B4BA14CA441506759F012547CC2FFE5E70E4490179C9F8271B3B5E3613FE42F01F700711C5D720B945FCD1A49DFFFF0DAC1761C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll
md5: 66F0F1B4FD891C2B35F4C672514B5274 | sha1: 8FCB33628143F3C2097BF43AA48D8DFE7BC87219 | sha256: 1A5AA8E33D65B10E71ED5C171347A928B654CDB5749EE31E5CCEB8C06ADC2F44 | sha512: 04E937D77902393008CFBC5A7BABBDEA3ED47944EC7DE01A068BEE5EA9E28D884F1D68096CA3B3D2ABF25D6F84603C830AA621A8F750DEF25CCA87B008F41917
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll
md5: 4690B0767759A1E7CA803E776F1BD794 | sha1: 362EF99310FDE3E26544A1E8DBA9A00B5449F8EB | sha256: DFAD4D231E48DB17C4A3290C08F8F11169BA0E464F2111107F55663A5D891B98 | sha512: F8BA137C99833929D9D50F32D6CFC7BC1D54A0AE21E19152A967A9A873EFB15B60794D858C518FD2D61B90B0BC773A3EB9E5EDCBA9AA378D2511003B25F88DBB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll
md5: 67D47FABA208BBA3876132726C37787D | sha1: 0AF8C1AF4A63ED5AD46CB5647E424ED5D12C35BB | sha256: 6DA537944E8BEA92E46CE4CB126C17CB756DF1CA9FA7BA19CE11EDC2CD069481 | sha512: 5D42DFE7708FC511ED41198B305A2D94B637ED9C4007D91C89FE3BF64DC7B139457F4977C13556363533975F4A4125A21B113D789B42C0A8654746E0AB1CA94F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: EFB31CD19DCB2B0831F458CA4C1B9358 | sha1: A8A0D6F086682B7CA124616F8CA953E761564632 | sha256: 8A9B044D8805843531A99F39C4BA50D6E0493EACD0B1BA5F7D777BBE5BA3FC48 | sha512: 952EC76879A4B98C5BA59F0131EA2D7B26DA10B7C81169DA39994424FB174808CFD8A99BC7397DB63B784D37A4871C3E091FF21ECFE677EF80C980CABE4DED8C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll
md5: B7A62FFC1DCFF58FF2759FEF8D2C8542 | sha1: 717DC651F345F1C429DA9315B9AE548D4AC0F34A | sha256: 0DD0E5FFCD9DE056FC5B60BDBF21303EAEB9429C0E180FB947DEA0B852E6AB99 | sha512: 2F225F0DD0E3768F7E0ABA6063EB78FCF694B3EF4848E12E83B33764AD3521B17C28089045E02BE071DD9AAB7960E79FD254C7AC8ECFD7F8FAFEF96907720862
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll
md5: 123971787FD4C43BEE4049A5B8F39831 | sha1: 8C19232BD10E7F82E08FED7A7979724BD8EC1C94 | sha256: 918531BF32F614C972E114F0F3BABD38F4592B6EC6C29DD44D76BD8002F55C8E | sha512: B83FE5CA891D40B814737B5E5ECF41E397936CBFDF81B8BD22310B896AA72CD4C19D16C4274C19E0D11646CD2A510DC5CD3423AC99FB1CD061333C4573059BE7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll
md5: 090A420EB25D80D79665704D7C6D7733 | sha1: 7E95C6428722088CE9643F22897AB01C3A244017 | sha256: DD2CEF44E1F33CF430FBE84A5D2A689747CFFF511334FC97C9D72AC55DCF0FA4 | sha512: 48C478895DAF7A60B932226F30AFACB14FEF20CDE42168007F88B88AE6D8F757A161E5417BF65247413BFEE76DFF44F03A0F0D302163D887E388D05A3F3C2373
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 9F1FB43BE038FDF444583713FB2FA5BA | sha1: F3E2FA93F7A5609F1C5F631586D41DAE54C77199 | sha256: 395B98498131098ECAF928A1336364AB487B77BC14EF6367CAAE0E8D931C3ECA | sha512: BE7188C43713280A45C2F6D4ACB71CCAA226D2C0D94F8E7347BBDEDE6CCC5CA718E47E616DCECE2F5F403AD30EF47B23F363A14812AAE7CCE21A21C110209577
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 5DEFDB2E97851BEDCC13F628F70A61FC | sha1: FF44A7A26536E7F5683B79003631FC8F8A2679B9 | sha256: D3A47D041BF3CA1663C6C50BD38AAE79EFE1418AC48FBC7308CB363FE3BAEAB1 | sha512: 23C2054FB0AF5A32D619E671E8E226FD5D1917AA4CB2317EB6A152C4483EE8ACC84B6E52C84AB16BEE7713205E85DF74CE144DE0A3182EC3F4B664216BF0D4D0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll
md5: 2111A6335AAFA1FE40B3AE9F2659D116 | sha1: F34EF317CC803DE4BDB7375548C1AD6466F27D44 | sha256: F58FCCDA2D6765ADEC63AD028B77A94DBE14595530B5E2CE19B2F792AE994BD3 | sha512: C37C394DE471F99EE677E1E20D766F122BF5FA69A69761DA42C412351FFE6F8D2B1D6441BE0718FB6FC3AC3EB21FE89350F1417CC987EDA5737F036623C37F49
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll
md5: 60AAC4CAEE47493DB24B379C12B565DD | sha1: C194357E5BF3A4991546283E7E7001BF8B1DAD2A | sha256: 0918A8D2712EBCC0EE4B3FCA9791A2E3702FF409A746E10CE55DE3CAEE323927 | sha512: ECE5B061CE632A9DA82D5AF7FAE8561F47027082802ED1333DC1B75C63BF7422636094770EFC68E45B98D2965228BFD25599A5FAEC7058848C037986C4695E20
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll
md5: B3A0DE96476960CB06AC2E8E6723B33C | sha1: 4EB869CEB549B2893D2B75ABB31F038CA6905EFE | sha256: 87E940E4C6414A48CBEB6BDDE01211EDD3D8E85C478ACAAB9811A424DB6A3D50 | sha512: 3336DBD3025B29827D3EE0BDB55FE545015CDBF7D7637BB0B3511A154E6560EE5CDB456D32DC4E40F132F90C2BD8E1157517141A083F3DFEF0C7AAD9CBC48F42
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll
md5: 92BA497FC732579A652F667806CF49D1 | sha1: F5211606B9A0950A048C9F1A46BE5671A658CCFD | sha256: CE6FEC7AFADA959B9619034FC3FDFE1D07821DEAB6447101FF482C250A5D3333 | sha512: 8CC84942C60DCC1A0D5A8E51D20CEA09DC550F5789D9FCB5482D722722C939778C6EE7B8E1265ECC9C0DDE58A63FC0208C29CFFDE9A5996D663B94406C72C2CC
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 057D5D37BBE4CF444E6A3BEDF8CEA01C | sha1: 1D6658A4EB7A0A54E465A2748798E9920A6B6F72 | sha256: 81C3E72C329F031767E4AF00ABA2CA642A0FDB6AA0C4065B4A60EAF87F65D57F | sha512: E6958D886A8D9305334DC5B67B1FD145F76E70B2BCB3FB61F1230A0F63B239C0ED8331A79374207274FD3B63856E3FCCD74E83F78EFCD7F77659013CFF4E8500
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll
md5: 74DFDA05CC85A11071F7E12BEF967204 | sha1: 2D2EBEAEBA21F19054263344738E529794B13EF2 | sha256: 85020960DD2398551465DA5668B18374E25143099A52AB13FE4B9DFC8B023E10 | sha512: 4A28729E8AC212E2DD3EA2DABA1BC10377561FF94F0CD098B2A177E4BC773CABA2BCE04F65837C43D62C605D8223FCC9EB3A7B4BBA79D7B4800B5147E989BC91
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: CCBC140F1D6197060E14CDC7ECA1604F | sha1: 3ABF590AC665B8D32DDC8179AE5D74E87C437F16 | sha256: 97FB5AAB62E9E415EC6E12499FD5A6CFBCD36F440A0FFF0E1221B15BF7439428 | sha512: 43B6CD4616FCD79B98B46988762F9205F46F9DCC51035379815E719DF42760C3E470A5E3E96529D73B531C8749244AE57C79F4B4E1FA86A79C1D022E6DF0C930
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: E68D539B1976C94D5903567A5908C586 | sha1: E06262D06AE3F46A7958F5F048A345B48D8CBB2C | sha256: CB6BA43704D04E87C22D14C1B12EAC9D71E8494A31F1B1B1DA39D5679064D031 | sha512: 5BFA546579274275A759F01F21535BF61623648576FD6974925BE94C3C683027A4F670B81C7491C47D7530CAC63ED30AC088BEB70770B771E59BF09687B287C3
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll
md5: 6A5BCF1BF72C7A01A67B692B76F4617F | sha1: 96E8318076734BE9DA58F3796A2C8CC1F7C87985 | sha256: A00D28235D085AF065ACA99008E173D1A4DFA4D5B1990002E4D2CB8224048D5E | sha512: 68F2D7316D83037A9C3891987B501D1CD7653F1AD9081E2B578BC6ECBAFFCF7ED2EA92C1634202AE50572B69D53E76168E40146F406D0D278DD07CAF8706B0D0
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll
md5: EBD241CB3A4CA94890A363EE1C73345C | sha1: 2942411C3BACCDCAE2DA3A9D9A8C7A1F283AA89E | sha256: 119B21185C2CB5A9DF453D4D1D57134AE706B9C2775AF1FE8767536AD8300B19 | sha512: 66EBDD4BD10B7C6C1AE7DEC01173BB246F32900E20A7D1F3D0755F87B74FF8CC3A80CAA418C0A43C575C5F82745E07372A3F1A273EE982C1B24B7AB585A66C4B
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Feed.WebApi.dll
md5: B06EDB9ACD7FA0325E54923A42287594 | sha1: D0BAF5A672A6B42FC08F213D3D1BD11571116293 | sha256: D2919153D8FBF00C7630C1005823377D8963C015681EC7781F8226B36177D67B | sha512: 4BEA0897140F24FE5FABCB57C834CD98F44CF04AA5656B5C8517FB882640093C4C38A4AF39C54817EC50202C9F3C9743EA24988089AC8B67BABD9398B0FAA72C
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Gallery.WebApi.dll
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Maven.WebApi.dll
md5: 80DE54336C9D139FA653783CDD4D0A0F | sha1: 3FF5E24010AB3033209A27741C49DA77BCB4E090 | sha256: C958079A726B01F888BA8A9DEA38783CF7AC799ED3A3CB41509902626A65E320 | sha512: 02E6E63B14319489ADD88FB8FEB43E84944D582ACE19B54155D05546329D14A8A10D24D2BB6C3187719DA16BD0B224F4DFD54A0E9E1547E4566AAAE6C23F1393
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Npm.WebApi.dll
md5: C224AFC18322B4BE611297AC19F3C594 | sha1: 7257CDA7B0D0CF3A820C872163CE40D7F022366C | sha256: 4CD1EA87B38E86C13A969204524F58ED3FCAA2F895B4D15CA4E4EF70A36C8A55 | sha512: 91EB156B0B25B0BF4E846266389E2572CEB3ACB3531F89AFBDD17835F503026E5C94169F65230D3BCA2458D6163793D2279D3269F174D1001ABABEA038453BEA
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.NuGet.WebApi.dll
md5: DAD90C99A5CD04A503F52FF2ACB7411B | sha1: CBCFF71D111EF41BA7E2100AFD0BADD0FA1BDC20 | sha256: E589FE8D4C38F13CABD0B1DE03E4557751C1162AE0918CA4293187267A829FA9 | sha512: C87265022C176616A9B6E2FF3FEADEA67227C0F770D0E0DA60E4BC558CE365520F91E1B2265DD4DA86556384641CCFA475985E10F8D13F48FBA975EEF023A5C7
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll
md5: AFB23DFFF6B6021C67EEE9EEDF74E59A | sha1: E035CD5E385ACFD07CB126BBBC8902D438F31700 | sha256: 838426641F1B1BEC96FE8847393F493067D0E2EC956026A4A11104F3E93484A3 | sha512: 54D2EF454F46EA5D36A46EBABA93A68314783D18B8289A7B2605A7D892DFBE9A1614241C9184EDEFDD7A725CD2093E93D2F2E5FAA9008E50E706AF924A10DCB8
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll
md5: ED18BFC9A27CE243FA01D9A199C05567 | sha1: D73D85FA1539D18B1A97DDC643DD36ABE504A76C | sha256: 7CC6681A2001B1CB16209F1521B7A94CFB6EB700E4E345FE36FAF188465491CD | sha512: 4DD1D0263C590729FF0AB452A0D841205189F64AC55D23C4899F2DF68A6640524CAB8F1505E4C183C9EE3DA3BEBF5FA58A98FD8FE28757FB046233244A164F5C
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.PyPi.WebApi.dll
md5: 39B37E9700274E837A3B5588B68DFADB | sha1: D8649E8AC5A60300209BD34A0456DA7204F26748 | sha256: CA62709E94EDF7FC059FE290140080E4C630886BE5CBA62B744DAE265E568CB0 | sha512: 4B3BF4B907D3FC61AE2216090081F9E7AC7D250305D2F38BBE9E09B219A5877190079ED21CF5F7E957BFBB0107E71EE7CC86802B37EAFD3F5DA4DBEEAD3775A5
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: B271FB470589E7BE6815A5A8DF8B0154 | sha1: 337F08D6E373034156EB18F9531309F9BB90810E | sha256: 4A73391C2E877FD85845562516EF83D9D9C87C2407501599BC51B236308EBA85 | sha512: AB7C6F78F473A473B73D6F04B0242F0E2FD9E44135E9135D6FFBFF78D3B0B42184C33D975AC690D7354D169C2F02B06CCEDABE880E10DA753DD102E481A71508
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: B95D7AB1E1426A0A94F9009B3A1DA3D5 | sha1: ACEB591162ECCE695437B1B7F2F4493AC06FF6D8 | sha256: 3CCD3AED77716E1BAB251FCA43102BEDC1C13ACFBC1F23CDE9824AC16C56DF83 | sha512: 0881FD36E60C2B7C5533AE63D142223B78EA97F33930A1CBA9EB1E3494B9CFC6CE644910B5E527575E8A65262B720D05D70D7910735039D1DA8C772A8F894102
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 8CC2E4C381475951106E3DAA733F0EE8 | sha1: 191688446176571F35FF56A1999CB2D8CEFC38D7 | sha256: 6AF5A4FDE7FB36AE8FB02ACD6E388B98B6D5CBD8B4577211E92B2D92081EBC4D | sha512: B6882D5B0CB787C7536E869769557650F7FC34EB8E8C69D8A859273CCBC7DAC9BC15B12C5FD3C867DBA5C50695E16C164A792FDCA3E903D65E0AEFD214F85927
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: F7E832E3B528D97F490C9961A5C0D443 | sha1: 30603A8F0804C9804C40E97CBBB00D867A4EAC78 | sha256: 1C753E7DA8CAEF8AF52200101504300AF41E521E6BB12CE7232694C17DC135C1 | sha512: 876676E1556E66E3CC6A110AFCD56A95F684719E950A48E1CEDB337CB66363175346C35D78128A1D0E1BD29BADEDDE948AA97C5DAF833813454A8F271FFA2C4F
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: ECF1F10EC97258A97546C13C596F6BC4 | sha1: 4D8F601A828879CA99F9D04EFCAE25F3B4E5DE63 | sha256: 09FBA7C64786E8833606BB2E098D217D132977571C1549E2D73FE2ECEC0F61F1 | sha512: D1350C71AF36151C47D0D88260C86D29910DCE7FA35DABE6E0CA62663B064571DFE2E77CDF7903417D23F5896F678EAA4DE084BEB69D90093D308C9A6EE17243
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: B4656A5F0121B33615A11491B55F8689 | sha1: 107AE57EE2727478DE2D25C8D6AA2575773FC379 | sha256: B3A147FEB1BC5FF06C710DF83D187761F3AA127CF951BC538BE7C83C7C13A98E | sha512: 2E3478BDB1D4F3FD7011F99A644BAA5D690E616DF51FBC2A7F5189419D385A48AD67BFB63E7327BA2CC812AD55DB490C2F2FB45341A14BC49D3716B076F8F3D9
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 195F3D37818C6832D17E21EED1FE49A4 | sha1: CBB67B9C4F9505CD4915819789E9D83CB056BE4F | sha256: 3A6BE9EE80441711627AF980E8F2080CE477E1868B5CA2E308E253CB7644A864 | sha512: 358E763046727E6A84D997D8543E48D72D0CC44DD58AE1610831FA3C5F25693E86129E3E46506DB7FC81D83077E46DB80171E31D4CB8F238B27C23F2A195E633
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.UPack.WebApi.dll
md5: 615922BF29AFED1D5A1A6B3F36F9FB9C | sha1: 02A711A26691CBE88FE7A6F8FA09A2E5FD3F4476 | sha256: 3A4AE524B297F7D766CA401ED2AA1CD8C45999069A9E33FE6902D8FE8D6443C0 | sha512: FEFF199E7459C77C8BCF12389546F920B86777BBAAE9744A046635772447C9DB0E4A967DD3B59ED04FBBE0A8E5AB4CFB3602C66CD186724A94344526C6729EE3
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll
md5: 1D71AEDD297C928209C31DEC9A271980 | sha1: 61C23B84033E4B8368585AE60C66FE02CFF9853C | sha256: 33A1518D2A6B3A7F8BAC2A40446DB372924A47E206C6ACFC907271F6709762C2 | sha512: AE22A034B9223E4900C669F14587F64EF4C9B7747EF70AC33608A4D03812A9F4E3DE804C071181A84E3FCDCC9B8CF75882050CFE21CDEEB0ABC15ADA63B9FEBD
tools\TfsCmdlets\Lib\Desktop\Microsoft.Win32.Registry.dll
md5: 59C48AACB1C413C108161AFE13FDBED9 | sha1: 31ACE4B26D8A069C84AAD6001E06C2A5483806F3 | sha256: E9A9D281C1A708AAAE366F82FD6A1742F65DA2918CC4FA5EAAAADA0BE24277D9 | sha512: 8252ABE64C67863D9E4C70E820F0C69C517B8678A4B4C13A436118BC276E5F21E84522B93566C0BC009EFFCB251ED67BDBC60E4907ABEA2F33B6BE3764E28D1D
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore32.dll
md5: DCC996813924D5B0AAD255784FE4287D | sha1: 842199B6A3CE315D76FB1B718EEB86E7403B38C0 | sha256: F7643E0A2DC9F078B266BCC3ACB6811995745D994E4A07F2C28EDE54427DE63D | sha512: 08E2A02FB87E90B8DF45544E22E63DECDD781058C9D587786D7DA80D7A58923E8A5CC0545F504F8B367E9317E0CD28BD9BB22A0DBF52988554A24C1B18D14C67
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore64.dll
md5: E50D86C2FC3367C83AD704F4531AFEC6 | sha1: FC657DF1ED8B0CDCFE41635923E8B43962A881BC | sha256: 5DD2A9E7297BEB71348D303D72E518C2FBEC471DE750C224B1D7586AC626E0DF | sha512: 3655F87F56832E11368B11ACC880B14F00E5F37AA0A0045943EC15CBDF18C82E21681E1E464BA9EDCDF0884445E38890004357B1EDE9CB5685D3B5495DAABEDF
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: 99F288970B7CCDBF0288AD3598790523 | sha1: 46BF524B0CC01722D0F44999F91E7F3DED93EBAD | sha256: F945685FD29558CA068DA1827604E25380B706BCF838E8EA3E66062869498FAB | sha512: 63DE7F7DB40D174BF24835C8720B9DA18CF932FB2D261CC582CCFACD105BCB666A811877FCE7F34869A12C4BB1DD8F542A9A4E64877BA047794152DDA3B22E26
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 8B703FF19A4917D7BCF8535969B9D557 | sha1: 78F204FA847A4C18C10B1A86249234622DDBEA45 | sha256: 1D2F7A583716FA9D507E31CCA2743BC5C480C407E4B0B67867FAEF1DD959BFD6 | sha512: 63C0FBFF8B6F096101CF600A83568FE09D08C34CD504204DB51B604CD21036CD3330B8426986A73E38E76703FB246223789434ADB361C558EEE451865A9E389C
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Client.resources.dll
md5: C642C0F71D818817D7D06D11A9254562 | sha1: 24199B5AAEAD880DC3CFEDC375DE8B2C5BAB2128 | sha256: 2DC7293739EF06FAC8E5444EFB1612D5B3300E2E4EF8E8A7782FC53F8998783B | sha512: C55DDD178E1A4A90C83EEB5AEB477EF9B2B06BE52E6B938AA74395203ABB80A09E7E5907F7C37009395E65B311C791B09D8FC444C8414EB9F759D6D732DBC537
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Common.resources.dll
md5: E7EDC76D92C1D07331898A7C50CFC2D0 | sha1: 7F0B4407C17AF426A0233159D21622FF1AAA25C0 | sha256: B206FBD1D8939EA1BDD05BF53B8551A9F4133313CFF7D7F9F0CC58B37EE0E6F8 | sha512: BB00F630E5C9A0A8F016A24BB87F362FAFA14BB48E917FDDF652D74800BDADAB3F62C1A387AF51B3CFB0AF2A42257F1EFECF86A9AE84572BA6300646E4A22A2D
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 8C874C93F236617EEDAC12952C6186ED | sha1: 07525C45474667ED51D2247F84AB82ADF137D029 | sha256: 68BCDF61BF303A81CE686CDCC393101F6FD48AB7BE66B3E26F5C2DDF9F5A08B1 | sha512: FA2B4D1CDB3240D20162D730C84613027966BE3D69316374D392E8F3E935141134CA238ACA3B360195CF81CDE4E84BA419BA74318AB7ED9E06FEB690BF1B08DB
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 9B6D4406925D26284098A2FE2E25DFF1 | sha1: FF25870957B7074AC1635A48232E43ECF8F56C57 | sha256: CCA656E974985E16CA97242D3F59BFD3862CFE2DAF94713404F908058E614416 | sha512: 9AE779948D4BF028CEE80FE7D529B29EDE52AC4DE5C481592AC251B50C1F4C476606C47D2A6035C92370360796DF876B7C81B45E31F14A62813009AB399E3636
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 5EC37ECB1B01C30D1BB6280CEFA77CDC | sha1: 992A793876B1B749CA09C4ACFD4EFC21DD5B539E | sha256: 8555B6BCC22345377EF0F25B5D982BFB5083AE4E14E249947842E6228E31A16C | sha512: 8A17F263ADB051009AD19E6C759EFC706871E29475209C36442AF7C91D59CE2424E667905ED3343325478BFBF9FEB7B606B04D341E1E9F0D04072AF8DDA2A26F
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 6A4E6BE4C4E4990AF61F805F444CAF2A | sha1: 3F5C10094CBC84D238FC24470B392EE05830E21E | sha256: CF8003E61070902BF3EA7DFFDEE23B342F6B889A6473028C4DB0342CA506E263 | sha512: 584A113E952560A04EEC4314558E006C9A7C142A28B24E08845E138D205219F8364DE7575441AB92C8111D46E66D7E69B94437DDA3CCFE817D1D5CC9B1D1AFA6
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 6458ECE8F17729B039E808CF1FB78870 | sha1: D65BE5A3ED88C404C0A9F79996445FD75824A1DE | sha256: 4BA8C1B3E138F189D1717C0E9E5AC1BEC5B41B78BDB3FE43BF6483903DAA3305 | sha512: 3D107F09EF82BF0530F50B90E8A5B1B38C0AE64F0A700064E5C22F57E5052FD7B3B521764B33FBAD75CC474F4DCE36E668A528E511DBA54A30586270397AB03D
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: E065C953F88F142A14EB92E68923F9F4 | sha1: 388612172FBA688561BBF2E6138C0FDD9256923B | sha256: 850179949E98283EC1A4C9E1BB0925E9BD4F58326865A1A32CFAB240320D8A56 | sha512: 835A64D7158934940F4C086C2A772F8D4BB9AC39F0147DC3E32EB037420E3C40BCD39207C65A7E439BB47EE2CD2BEF4E37DF7F5F625E55DE60FB1925EA8DF953
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: CB8DAE4AEFE2F61C7A6313B8B5FBF5D2 | sha1: FFDE46AD10910EFA9EF133E1970AA094DC6EDD54 | sha256: ABE214FFA7765135CC17898BE2223FF9996D47EB78C84E73C6D0D074FD2304E9 | sha512: FE089305518FE743E52432F91006DF1CCD3E4B024370CC366A6D1A418B656E172ED1FDB8EFF0938973DE781DD343E70855CA55B14DD6D07DDE2D9804207B41FA
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 9BA89A676AF08036DD4B4FACCBB3141C | sha1: 01CC03764576B5C8D90E1D915B5B3D03F5A38E50 | sha256: AEB7EB3B8509819FF64E43D412398686192FF3AEF7859C779952572290F6D113 | sha512: 65271E5F511030FBD7D3871FE3B975EEB43F5C4AE996D16FA6B77FE8337DAC8BC41A04943E3113590350A2EFAC23A2B423E29A8D912CF7364D2FAF01AFE5973A
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: C1B06AB04322A36E54B46C075E43C804 | sha1: 623BCBAA0D0974426FE6056D2861CA6AC28BE123 | sha256: B5BE8DB750F11C1C3F520B75EE670DE16027E396C92690EB02356948D029980A | sha512: D5AD0C9C0152DB7D6BD691584E4C7598B6B1D8E7109E78CCED2EF18682E3740D76D37FA0E759D4D2D4EB111FB30249A0BBB0254DBA0BDEDBA76072BB8CBDB7FC
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: F722EF084F253EA1C786EF91744C7FDD | sha1: 9FDAB08AD2E7899D53ADF0BBEACF50E2404E1A54 | sha256: FA13D584B362CF73DF7085038C3D2EAE8AFF2BB5EE3C76AD48DBCA92F8538919 | sha512: BBA90E9E49829169BB1DA09297504A9590F2E91B709DA0BD6D81FC4D309226D1FCD336C9CD8CC26AEEA904F8A3A924013CF53C7B102BC98B4E52904BD09AC175
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 23AC52C9F749BD1BDE1197DC96C1A7B6 | sha1: 3A3AFDA1F9A0C8EDBBB551A97CBBDCB8302A1FAB | sha256: ABD6C2913C83103ED2BC4CB6C99C5EAA6E969D4095B3C7082C4D05E50F329BB9 | sha512: 9D961A586611D565385A4EEE29D19B8A254E1F7A48F1E7529AF8EC366E45710D512602AAD0D363BFA1FD9AFE35F0416D2959A2057E0E503293C1E4691919F92F
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 3FC39752FDEF7EA12661CE249E2B4A9D | sha1: 1B995C3ECA5307A252CA234B41504D4FB1F60F56 | sha256: EE7FF995BC38E1B3F5C6ED7BD44239FBFD64F69B7858A750C11E15552032FE13 | sha512: 9186BFAB09522D644060B57C63938D79B706589FBB1CD95DE59720A525BA7C633959651A53B79A3A8100C2C12288269E75FC7817CD7F5F62AEF6E6AFE42F0A68
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: FB59272ED55BECB803C434AA5A0E08DE | sha1: A93E041865D1E9393082E8DAE3E64397A240E909 | sha256: 8746651D3F4634FE74AB7B76A3C57F3ED08032968289561EAC693601E73B414B | sha512: DF200A24C1AF812D1C50CE4DFC2169DA549250A5DB10CB83F55E8056FD83A709A8DFEDD8DFE5741B8D5E0B9CEAB7ED444F59BD649A98D8CA9DD770446E87CB86
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 5A116F878CE651127997D814B2D9033A | sha1: 44FDBF12BA736754C240DD79D9B76D16C6FF0B8D | sha256: 5F6154BDDBD3EC5A6A7A9D3C83F7FED5D399A68618B1BA79642286535F5825ED | sha512: 63EC275B9FF7EFFE77EE8B00AC8C0EB29AA78A1534588180BCFCF0651006F6885392EDCCF76A57084D6F6EA9AC89EB0C7D4EF849906A9BF131427A2885C12BFC
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 0CB510443CD2E520984F24C2CFF7FB54 | sha1: F8C19976416AD7FB61C38F4E0E790F792A268868 | sha256: 17FC1EC8C08C44E9610F25DFFDBB4AFB590DC7EDE4EFBD0286681E3862E47240 | sha512: 5FFF635F4763144182C33784AE2A1987445D43C1C5261343BF9500D27CD6CCBCE723068510B68E805C4DF7E814C4C4EFF47E69E5BB5676E179532D59EA79EF48
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: C09F5356387D52B2795D33F965A4221D | sha1: 81975065C10FBABBF3644DB551566E3096F571AE | sha256: 2B84A622C431D21E2CD1C471E6B307CD7D037CB16DAFE29687DEB0885160432F | sha512: 7A6C13FD12FAE75BA2A7F2814B04F8EF80610CF9D69FD614CDA24C61C6671A70AF2DE19558F8424E7E6E57DC9771CBC742CD36D2A9DC9F9206E82A8D14481B9D
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 7B094864E8F20051FA3D434ABD867A63 | sha1: 826395332C76F7922BFB603767C0AB8195850995 | sha256: F4A7909B0EA36B666E3217AEDB91C151DCB170E190E5CC6828984D2741C048E9 | sha512: 5E5AC47C7E295C19D6644A1BEAF5E36C53A458CF42F7A140780731295FEFA29C331F6D1C67F94F8F54AAC0B9ABB6B75C2F258866B3BB8FCC72B530B3FF596369
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: AB9DDE7EDB39A4C7A994BC29412E155F | sha1: CD7CFC0D38A05DA28F8E3CCC5046166EA4949EBD | sha256: 556F796439D8DE6FF96C85C2FA9D48776CC7CE1365529BBB93C2A6D6F6CF1FB8 | sha512: 66B2CC54568ADD96202E681C52344B3A179F3EB10536252D185E0A44BDB6794A0ADC407AA939FEA1A11B2EC110F8B9CF93C0A3EE585A931329EA049E66A3D8A2
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 8825232590EAEB8BB89C53A0FA66075F | sha1: 19F70BF25E74F3FE611D5D6D04C0175C63D615A0 | sha256: 13F0224D4EDC5750019F12E8EBB72C4EBB03A22A3A13304FE92643E25EEF209F | sha512: 354FA85F1C68309E9D14434537E72C33E5A5C3CD52C93F178FB6446FB7882A7DC3397DEE154A2BFDABCB82CE125A1FCAC24054F6F320223E38F7876285B26880
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: CBE578EBF0A576F2A51CC142BE0FD761 | sha1: F4A199ED362A03DEA0C06DEC2DBF3A15D9203EB8 | sha256: BC22F80D6186A55743FBBFBE79941138DE5B80D709C9F275D24FD998040FE1AA | sha512: DE1A1499A23DDB3FC024FCB74EBEA9447A9EB0D00C143F5B01EF244DA4A925B8BF8B87E99F68E711A9BCBCEF1F3EA7B2D65751CE4D98B496BBDCB7FBE29536DF
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Client.resources.dll
md5: B7CB60CD812FBD0269179411E465B7CF | sha1: 4C536448BF9D9F40B9C08DE752C5E0220EC8E403 | sha256: 2120A58FB41C3726D650084B25457F3F8B66B7E60CE7237838E6A65CAC6F705D | sha512: 65DD2620664559A6569FC7F2F35F432D349D704BBE46B045E96510B6AE1B79CBC81D1DCDE1847BED0D10D631674EFF6CFB93A5B7D1CABD0C0FBEF754F2C0DE36
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Common.resources.dll
md5: 0F4500AF5219085750745DD99575B9B5 | sha1: C5565AF2DB272388C03A68AD80A7F00358CF35E4 | sha256: B9A60161016C610B19D9A15FA862AD4AE911EF81E97EB82C6EC605717E160198 | sha512: CCFD16682E25A88ABD71814A1BFB59638B7A03F1C982C3F41185F1D6EB70C163459165C4C1599CEA36FCB8A29F95C6FDFD10822B1834633DC97DB883AE6014F4
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 1C4683875222C8AFA08ED046DDEDFC4A | sha1: AB4B55F766656C2C47F8B6524A00FE73DCE87EEF | sha256: 522263D807ED3ABB1839A9EA88A0461A7555572D158922FFE8745205438360F7 | sha512: 14B7A0915668C46300A767F4E7C1A0D7F969B6BC20CD0DED5AA88A62B398199C6AA41A2C9284473DFBF8C984163D229299C692816887EA9C8A75BB2E59855255
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: CF46063F90B0696403DE3AE055762DBC | sha1: 5F693E30DE3A028054D4138E292917E352154EB6 | sha256: 7DF50A772CABA5B731407A5907986638289ABDF4AFDED8421ABB57874173AC37 | sha512: 7F7628A9C5B219F7F841010379D9DA3652B52B230EBABB3901F245B17CAE6035B9FB7C392D51E8F8736E946BB13AFF77D129D12C84332EE65C65BCEBB6F4460F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 884832DA383682B5D60B2B6F5F613247 | sha1: A8B4F8BDBD5DB280F060C88D327D2025866069C7 | sha256: FEF28D8D96A51769416B5DD749FB47F34FF27F5A71322CA71D9C0895A29E3B5A | sha512: 1339D05F1CF2908C2D183D2273E529BFED839303C991F42FA7FC7F3834CA16261E27962D2FA13256447A3AB51C3AC57A857786C759F8F73C9AC4EBF981EA86C2
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: A8C0026FC266BD0D0B8C5C244B9876ED | sha1: E7391CA70F998F908A87992466019A498C353D1B | sha256: 4367DC4B50E62EE1402C5BFDC45894A0ADB1B4058132A493533A3E22AC8A2387 | sha512: D022B8CBE948C760E675125205B8D38473B7B8EC44242C5178F841F8333A6835319D5967FEEE0102A80C01CC5A342FEE43A5FA870C58E797A5D755EA564F8994
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 63CCEE526D752FA00EF4DA194BFA26A0 | sha1: 956034B81AC40F3C806CD6FCA245C3E4B3E0C009 | sha256: 420FBC76216A959E8A78CC0822393EF66062C080568DB2AABC3F194625AD128D | sha512: 260B10C48E25EFFED1BAF6D0BAF776AFF4F9B6593C361D850DB7FD579570E0B14AC57D8FDCF79659F5755FAE2459EADA9621B2197CA9839349A145BFDE540631
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: CD1DB81611419FD995BE11ED6CB93199 | sha1: ACE3D5B97BB2125D28B279D82C13514744A87989 | sha256: 249BD82922D89CDFC2A9FBAA755A23AC12732E1FF61134DD8BE8A7F5D98C3568 | sha512: B60F97DAB9D0BA14679A2695D440891BA3139D5D093DD8684350AA5283C015F585113051D8B8B752087D2E56E53D9C6E0F4EE3B57A7E181111ED14BC8444825F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: CD789B5088CD8EAA4907A8AFE1BA40E4 | sha1: 7DB04BACE75D6C360AD4BA9471DD0B30E5D5B646 | sha256: E1479D7561CAF96E75C15D1BB8874CA7CE2AACA7795292C7022249B5B3456D53 | sha512: B692C164BFEA1C3182C0177FE6CB0B2F181296BE4E026EE71FD87078F26854AE5AD6A4A9C11DE35D7F9742EF69CDB16309434D14DA52AC118972E4D610702405
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: C7366F78B01175536B75CCDF09895825 | sha1: CEBE3CA44BA473AB929BB29B2B53E443400EE3D0 | sha256: 5560D09952F07AFC8F0FB26ACB1260C08C993A0063A82C436B135518D8CFC3FB | sha512: 0664C816FDC7B94885A3AA63D9B0E3F7088B7C86E359540ACAAB099D759E62D84F73D30E54291BD50F4E33BEB3258C61E85E131251F0449AC56E2F2F3E62D4EB
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: EBACF972D9D320E6E3AD5CF241D21F03 | sha1: EA6AE2F09EE4D762253C117957B07AFB867BFE28 | sha256: 07578D8347394FC4204C30D028DF65BBDA0EC234A7C0978C9A90AE935E4C07A9 | sha512: 775F013AC73C83ED82EFFF0B8B048923E0A37BC212D275DA021A30EE11B417655C33F756618F7196229AC56326F753C1D1C91B2058F1EFFA89BEFE0D789F4EF4
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 670334AD4733C3B79238E425C842D938 | sha1: D6C50A1E7EFB95EDF82CC8E04D7F20E2F2811A04 | sha256: C05A0450DE612639FB737438C9606696C25CB6F503A15CE238AFB6A8067C5F30 | sha512: 00D2A60884208C8BD16E3463C4568E51F6D6ADEE8B1C754DA5270888815768486194F224CDA7DC972D817148BED5D5F86416EAB149F0B67AB80C648BEB32E85A
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 4FE25E6CE35D63DA9BA4C578002F26E5 | sha1: 49CDBCD891049A768DED07A44DE56FF72A05C12C | sha256: 49BF12A72AC8EE02144920C3E1EAB8F3AF9633CE7E3A5401D0FD7F5482D53645 | sha512: 282C9C5CD9F256FB538EA72173657936F93D9220C8B87568B55044E83CE6A32179AA24D5D9BA691970948430C1A54BE10405BFCF4E85A0244E9031DEA57A089B
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: D394B20A9671BB62686807D21142ADB1 | sha1: 3177FD3A3207FA5C4089FD3346FFC1F38FD56443 | sha256: 56A7636C8F57C5F507E0797B06C27D34F85C793119B322B74E68654DC6550307 | sha512: 932C00462816450D58C28DD888B3A655B07211F32F02D1760DA4E0897159E4BE1B10BB0B850ED68B4EB1522C251A3E892A1C3D9BBA11A25A5CF375C1C8678907
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 40E36F651E4789F8723F7440E1D209A3 | sha1: 9AE79DEBD7DA22CE23CAF887B24688BD87D3785E | sha256: 3528C42A52F6FD185AE6BD56C75B2F31BE09FBDC60D6FF1C090DA3A1898B8F58 | sha512: ECAE8F72F402E4C633BECE612D6014E4BD9FFCAE002F4841DBFCDA4B96555E32097FCFF10894238A3B4751F0F57E2F9BB2639FC374E96885F3DA5E46B7FFD179
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: AAB04A4C47DA28E3D768E8C80F23FB97 | sha1: C297D3C083AE3C7C3EB52927FDFDE1150E35845D | sha256: 373A8FCC1D48A6020C0A3F6158E82925486ACAE7FB7FC55208E91F47496F9A05 | sha512: 301478EF4E06967CE32E2781CF19B407084784624B5269501C48563E5754239D38DD0C94955E7D62D15FBD0A96312624A43A64DFD1111EB039DECFCA5B28E7EE
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: C85A82B06A7EBE8CDE713D87573D36A8 | sha1: 8994AE82C354F821FAE73907126F1DF7676AD30F | sha256: FCADC8B7DD350D18CB2B739501146EDB6CD3BEB52B2A6277603D03215423A67E | sha512: D3D2028F5047658FB6481D9F2112D76E3AFD14A1E41A1B9DFDA30F66779DA980999C4BACAC7B9D90124F7F9622AA7F51EC5AD09C8198352DD6F1234F0B976A2F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: F3EECE3BC9454A931D0F65521B921BA1 | sha1: BBC42D1285D7B5EA3A76013155116622353A57D9 | sha256: 811773187150DAADAAB35CA5446B7ADC9BEA07F10BB678A9AD85E055254EB663 | sha512: 424567FC2AF2B8D3CA76C5D9FFFAE14860EAC2DC8ABD75F7AA7F63C530861E92A52C69EEA712B38216A75BDECDF38D42190163BFA31A8298D25FB16EB7DFD891
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 57245E6E18D378C738F62F8A71B0B9F2 | sha1: 513D48E51BE1E8A9CE93A0DC4B914884DA45A174 | sha256: 772A8E9757B0A07CC08E89848F1DBA0EF17019577D1EB517EA903BF8616E487D | sha512: 838EE6551726942E2CA104E35B7DA06474F93F17BEACAFE07304B7DC411EDC1166A7AE2C5CEA1A9E46475EDF4D62259E7EF25FC1AA245C697D07E9A583B73AA8
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 9DB75BB4BF97565655AD9AB5D2B9CE26 | sha1: 312555FF63971F3A3A08A7051CADD725A49958BF | sha256: E71E5512B12E30F62DD45F5669BA35E0DA6AFEACA0B5822324C2E3CC993129A4 | sha512: 556E7FB6F8F84C528CBA3ED2D58315B9B8A043DA6EA8EA0AEC16175548D4C8D5723B30FDBFEC194A5F2C382A7171845C43E3223719915DA0490365D529109FFF
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 5F67F0319319882945757324C1FAC720 | sha1: 2C3A6C5154BFF8EB0DCC295A029DBC8E10AD89DD | sha256: 74404CD96E2C3651956E43AAF19774E29DC4648EAA81221532182DE93AD9B78E | sha512: 087AAABA93B14C8EDD9A6E5572E0A6D442655A1771410B54CA528B7341102D17857DF22E85C4F108DB456428E20AD43885A3631FCC61BF782A9910DCFD13AB94
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: CC2833FB291CD6B895C3711027436DFD | sha1: 598BC78E0E652B46C01C594B325D3373EBA68C7C | sha256: DC63054317F53164EDBAFA7708D5F1778446A1480A12B9775F8C59B01717CCBC | sha512: 01260A544419F779CAE5C1338694D71168BC93C4B1BC18E2C9A3B4C172686E85CE14A443CC12DF98CD34718D93F1879945875DFC0DB4D7C597CA2CB1C2361BCA
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Client.resources.dll
md5: C5CD6957D8063A25B972F53345EEF447 | sha1: 05A3EA290C3B5FCBB4B04279AA640F1C285BFE9E | sha256: E1E4F69AED1E4D2E7CB5E0193CD5DE1B3BEAD4C966D4AD7BB72D982AE1C06002 | sha512: 8E09CAAEDB36EFAC8074AE04814FAFE0074A14CE446AEEA7B9F6E60D920A33816D6C87881189A98D544F1AFB1EBC021BDA6E1B4C3E05EE324B2904E81A990F61
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Common.resources.dll
md5: B481524A1281F04B65496ABFFEE63F9A | sha1: 1A479943D8FDC5D391F519F709CED9262DC5226E | sha256: 6D4F70EDAD20AE75F1F9574B6A348A5AAC785ABEEF2AEBFF180C9ACCA78073C6 | sha512: 66B214721E9E3A9C8D5C04DB7A5485C2E8FD05BB6FF20EE7C479A08C0B88A763631882C5881351010D7906C2906EC23A28DD5E0B408296CED38ABC5314D128E5
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: A9B4173774958C70DDBDD15DA243BE50 | sha1: A2016D839E376E012EE688FE2D7DC5793466EA21 | sha256: A0ABBFBDE1F53893BE9CB4F2C1327A63A7C117D732EEA7A9FF70FFA9D9967CB7 | sha512: 2DAB7499FE8416DB56EF90738B5A901D648BD7DDE5E9322984CEE1F3F3907A82C74BDD2616C1BFB08537D39E0A092D562F5C99111C1A510D26E6832B99607180
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: E92B6F39758678D8F77463ABC8E36229 | sha1: 7E49955361E15BE9FB16FB33437E889122DD6A17 | sha256: 1C51D55A58BDE4D941CBD00CFCED5E2D259BC9CDA3153181CDD890036BBFE2A6 | sha512: D36528FD2D9B5A21EA051FC14538AF42B9DA3FA390721DC72ECB5102CB8F821ADB80D2FD00EF15EECD3E4B07E77953E4D9E938DF5CCBE390463BEF7BC888A513
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: E8F1355768EC11232ACA79C65F518B18 | sha1: 433D943C82A7C208DD70407954721C89DDA09164 | sha256: 6435FF74A2A8B39AC752CF147A007B16CB3C6A310349FFAA8265D9272AC58A06 | sha512: 9E8F0C511924C447164D420454CC00CD1ADBA9D50647260C88AF114715EA5BEB7B4FEDCB602E2528451173300475B7038B20C7F7F672046B958E6BFE246B7F3D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 76E397F7EAFED032A538FC19FB174115 | sha1: 6656BCA3CF3BD0ADD1DCC6145E12797A34F0148E | sha256: 9D54E7872235C8AA298ED1C39152E6CEA9766CF7D9983469231EF0DA9BEF2C4F | sha512: EBDE6BAD1024F3D72FC26D233F03A8CE64EA3259AF11203E6E357EE2534F6E36FF9D62F23EDAB320357012D56A373FE2ABE0CBA314716F7FE8D86289116C5A90
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 6E460AECBEB0B1E0B07EF00326644882 | sha1: F1E8012B5E747DB7737F10521A7B4786C6CC1ACB | sha256: 220A7771E507A4C7FAE3B72102A244B16EF7FE66E4A9C21C16A04BAA939791DE | sha512: 725FEC07154D4F1187529FCB44501C56904570EA0EDDF732778B6A85FED7334AF6442FE656C77612DDFC798D336205F7F09B504DE49C76603D7792214F91B836
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: E5C46F60D2EA081E3FE8168C73CC6573 | sha1: 2A885DC63FA8EA0FC8028FF850021D0926101FEB | sha256: BDCB7EAF0D01FDEF30E67F110D2858DB4200B07A0B1766F14C3AA7546DDF8446 | sha512: FB95CFD2B57777D4C82FB23CE3542F829A849041BE06930B56C6253EB47858D0B852E826C18A7E347AFCB5EDC05E797FB9B2FF1A0814881C2D6501C3C6D47259
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: ECB78332A20664106BFB9B9AF926EBA8 | sha1: 4DC2EEEADA95BE40DE76B8C22428513D7CA2F696 | sha256: C9C4D6864540D23930A6828C73C499BA0B18AF395637803D11145FFA9C6EBA30 | sha512: 322F711334C889FC2BD7E9ED6576B2DCE1B65AC43EE448059B89A84BD2ED7D2E1BF7D1B7371EB5021C228319BDB53A170656A8B80AD16A6EFC6A24CD0E3DB714
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: E438206DB99F46D91BC2FDECB1726615 | sha1: E5EFC96F87A0873BDD931F8B12CE5DC2F467D74B | sha256: 205AC51F8B44463E351E833B8660B3406F906328FB5144C4FE2EA08B51AE041D | sha512: DB3E9424DAF1B0435CC924948A34C687C21AD9D42C6944554E3536615CB07B1133C4E62E4C08CEAB20EF3C106CAB89E47C05CC87FDB2D8A0AFE6B245472A421B
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 0D1EE48A3EE51F7E32D294C8468CE260 | sha1: 916688C010114AB9E6ED41FC20F96D38D250E0D0 | sha256: 98F15EE1A3E0F7200E4DF420768DAB749D104357C852DE1BC7752416A6307978 | sha512: 8DD38AA8487EAC3660EB7CAD445006739969B01BFF4A87EA1875A9569A6923AE31F180BA7FC8A6E378EDF531AC81505590D6CBE60ED64D4F75A83D0F5E2CE65D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 0307BCF2CCE5FB3B2246BF5620F271F5 | sha1: F66CFE8668EA692B01AF3F8FD2EF5B4F585B70A8 | sha256: 3A3DA7A537B63971CA3DE36549D7192F0541BE5C72F9417FB6CC34D405666288 | sha512: 7FBADD8371CDEAD0EC5AE7F736E4C50470211DC73C5CB3661E77701A500DEFD8C50537C5C8940D4CEFB655AC07311B655637ABBEFBFBA9B660DBB7B1964F14AA
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 45EB99D285D1E5B845B6D182AF9CDB07 | sha1: A43A0155E697FF33B1393717A72B42EBA256E5AF | sha256: 6696BDAECE4041CA9917BEB14F54F333AB172EBA9AC6AC223564ACED730A9D53 | sha512: CD787B498976A9577B588E951384E0C1F15EBAD6E04899728984FF250E230CDEA6B065D0BDC5BDFDC8401A9283E448385257841D6C469E306119196893D6222A
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: FC2FE78D7A303FF759483F8717311CB6 | sha1: ECD6FF23E4E6181B8965BAC52B34A1E3E5A322EC | sha256: 263036395AE0E193668A3403D222271527A4880929EBD437FD9DB470D0492AEB | sha512: A41E9E2E60C6B50248AD83B26A5604B97B5A372555B5385C2BE6422559B07676CF204B51DCA779CD81BA4881E730A6E3A2FE0DAE4145854B2A55106486388CFC
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: A0000B05000B4A2BAEC57349A9AD4CFB | sha1: F8C5BD4A0CFE206BB7518D8FE5145292C5EDD98B | sha256: 8E0A996DE5F7126BC10B3BC7DDC689EAEFE738E10DD4C8576EFC2C41BC8A1E28 | sha512: AD1EBF39D054CB56DC4FDF831E226E66D5EA9270C533060DC8D2ECAE2B266FCB7F837E338B7FCDFC6D99BFB01A8120ABA0BEB250E4E4BF18D020E116B9DFDDB1
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 6ECC56CC90BEE909BC359F97F869085C | sha1: E2FF7C3D54A426CC9DDCDD83F1AF4415BA952F09 | sha256: 84D82AEF1EF943B00B01D77A8828BE7EC085C0F329C9420B51A025D53F36D235 | sha512: 367BE0A88914CA6B071AED9D4FD921F167E06A9A74FDE415B8D1F541BEA31A7BDDF268F274A0B5FFC227426D4B1E4F9170C7743ABF6BC0A558EEB7C46DB15411
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 96B6C6143EC7D8F1F77AA7B94F715626 | sha1: 0DB0D422F018D76FC984D239AD2CB0A7AE060339 | sha256: F824CE3B19F64E7D89DC26D67DB683930947C2FF8E5DE154BAEEAC3205D6EC59 | sha512: DB7150F545C179E5923F014C544D8317393A5E8DEE2E9C3743993EE990861BAC9E02F20E19CB18DC56873D48CC78CF02EA1E42A906065528007CD31E1831324A
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: E49A30F64A46453D9AB2DCE73E1331DD | sha1: 658AE435787CEEDEF87B6223A3FBE3889803D192 | sha256: 0FE9F4147111CA9CC501174EE8F25FFBAED45FD6F80F40E8002BF914BE73D150 | sha512: AAD699C75DB5767C30F5A79C15E7B014F2122E6BBE802BC5C0295CBF281B07F20B35D741BA2D1845187B66C73C80545A057C7B7A2E724455768D5AAED1643F99
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 023FFB405D02A49A7B15C20D7BF94B02 | sha1: BF93935A2F2A106E113901F817CB0BABB92B76E2 | sha256: A00CE79A9AFBEAABE5B89DD41373FA0C674E9F61DF8B94EE1A0DB5856B17F5F2 | sha512: 3F45BC6C61F9DF876A93C8861BE46A4D60CA4848D2C167F3805EE0AF5D7A94D02C990B39C77CDC57760D2C6B0E9A796E2616C6FE8EE0BDB6DC73E75EBDFBA60C
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 3EB800EB18B1E54061351A71EBD8AD44 | sha1: 65EAB5067428AEC7922142C8387C471FDEAB20D9 | sha256: 27F1C7262A559FB2C3F6B3963C3F5D325C0F28F6C71740D37A3530A297A974FE | sha512: 0F74AA1D8E0DAFA5B96EFFBF024AB6615149B8605E58BC40CB79113F69AC8C33FACEBBF19726DB29E5F943F341A63D1597C0609BA2942EF2436AB59BBC3DF29D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: EABD19C8ACFD54F4481A30E710E19BFB | sha1: 405492CF71776C73887A107C2B764485604B47D1 | sha256: A919DF23DBA9C26B1867C6405738C34907ED0B78B08CDD25F2BBBEAE30A8B2F4 | sha512: 61C2E2AC543E7E4C4279C76A48201D2CFD25A4B7F7541AADC7DAEDF1CE12FBF70A7B830813E44220246A55E6BE8FE2FE8CC5B3DA805C3743B1429BF17F289401
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 32030FB0CFEB6FCC282E6658B1E32F47 | sha1: 434E0B3965404659AD3ABD2800EBE6CCB3D818D7 | sha256: 3DD5A7C482D3DCEF2A75146DA92CC98DDC094C3829FF23220985829B3C516131 | sha512: 4CE91C34D8F9A7AF77E2EF5259BC5C3CCAB7AA6F515B50A5AE66350BCFEE144AE434A3E1D20F5AD6E03C4B2F161B3FD635A895E69499B99DBA91AE93E574CA98
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 97C4D810A6328F535AF1904AFA652F8E | sha1: 6D1C2553C56FECA88AF30AACA72701244220A19E | sha256: 44674D82F84F0F09FAAEA10FCB061CF5C2F8F344DE205CEBFEAE71AC9F225D7B | sha512: 79DE706ACAA4E6D311EFDF48026421B52FBB16FE0CAD06EDCE09467A7C4ECF0B775BC024DB2E20416C39F6734611B575A824C97E86C1B8B7B79EC72A25330BF4
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 68735A8CCA478B807C7CA5DAAAD0564B | sha1: 5139CFB9BA797D64D7BDD460DBEC282E31AA9AAB | sha256: A17D62C875A291D3D32D46E26BE30D9243DF27481CF5BF4BF9254B15A4126036 | sha512: DAC0E30418C370CB988960E93D70DE6886EA374F29965307EBD9090160AD292F37CB7EB25A4E0B2CE41AB5872A1430CF6656D911D9C4B664421CBE5E71E303BE
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: FE42F223CE63CD91E385960972452F12 | sha1: F7201ABB1528ED2DC82B01945CED3B5D67CB00E6 | sha256: FF0F22543E9B1FBB9D7FDF20D0E40710FFA2F44895CD10A7A85A4BAE02F9D473 | sha512: 8A7B19CAD1A70418914CBD28F5B9983BD0210206ADE698B6344CF3BF88C6F4438290FF6DCEE4A23C12D61927DA9707740926CBD376BCD68D3D69E17C70095346
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 8F472EFDC151A73608654EC68AC00E19 | sha1: 63CE14C3176CDEEF674CD6C89ADDD2F594818D1C | sha256: 9E56338E2A49CD8670834879E362FE0A9EFE9B41549A80C528F599CA3DB006A9 | sha512: 85278A2F6481786F9C106FA940FFC96478979C80CF3A38A75237D1E9A2913DF3A6ACCEB0E56043935527B9DBB8E0F66A4DE105DBA2924A513EB479CBEB98F2E1
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 554AB6C1F8A55B53D01BB8F38355C22F | sha1: EC7CDD597B61291FB9C29BEF4508019DC0DFD010 | sha256: 36C5F11A9987C6BE80714083E3F3821A2F166855D7E85AA26EC046FC5F2E8683 | sha512: F2AB1B37E7A51C800F4544537AC870BF6D6E85C95735FAC852CB826AF6100630485C87450BFA5E01AB98F69C093BF09825C2E47EBC96439DFE33AD451E8B3A3E
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: C73C2077323BDAE6066997E2B2CB8F0D | sha1: EAB721A34694E58C557637279B18A692547E409B | sha256: BA2C2B96A2A6F50E0759DD69551AABDD7D54EFE58121FB5A1D19FD489E76FB95 | sha512: 21B16813D00B466546CBCB387FA672EAA2D20712FF5E7CE1460E23F0886CB39335C127D23FC0BA5703CB1560FB468CD7D279AB19F7471AA8AD7545668082645F
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.Common.pdb
 
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.dll
md5: 6B56C29E0DBC5BAB543DE84B3EB95B52 | sha1: 3FC1A6005B40B59624CDC8385F9BD161E3226B19 | sha256: 92EDA8FDBB97998B13FF652DB621E217C7E54570749087E9B6FE2D98900DF75A | sha512: 13E0DC0D9837B7E4CB4025C613104EEA2FAE3FDAEF50BDE54C842878F56CF18D85B4EF2257CCD64116F106922CE176B05EE3A7D07767C8B86D25CED9072949A1
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.Artifact.GetArtifact">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Artifact">
            <summary>
            Specifies the package (artifact) name. Wildcards are supported. 
            When omitted, returns all packages in the specified feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDescription">
            <summary>
            Includes the package description in the results. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludePrerelease">
            <summary>
            Includes prerelease packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Feed">
            <summary>
            Specifies the feed name. Wildcards are supported. 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.View">
            <summary>
            Specifies the view name. Wildcards are supported. 
            When omitted, returns all views.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Feed">
            <summary>
            Specifies the parent feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Version">
            <summary>
            Specifies the version to return. Wildcards are supported. 
            When omitted, returns all versions of the specified package.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Artifact">
            <summary>
            Specifies the package (artifact) name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.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.Branch.RemoveGitBranch">
            <summary>
            Removes from one or more branches from a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.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.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.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.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.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.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: 646E0E219A87C50D0758539EE0703406 | sha1: B8178A4B4E85E2E9DE23CB1E218DB9192D394F77 | sha256: D6A128DB97663225E2E986AA0E8EEB064C91292B3BF76769B4388ABE63506659 | sha512: 3B64F04DB6753433E5053EE062326539EA74D4B5CA7335C25403E42C45D1B88D181FC2A4A65EFBCFED2A662BE5C9F3AB49B47391FB48A87987C3CC15A6A51301
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 6539933456FD3E4692769C323EE3611F | sha1: 1618A66B05E2EAF1106A785D54ED45A7E9319F9A | sha256: B8EFBC30AB0DDDAA24BCCE6D661FE0DC01EFDC79CDB35A4C83CB8C3F760786C0 | sha512: B7E456A4A4709FE5C176ED1769DA4F0CDC53BFC22AE837076AC5C5A9DE83CC532A21D52C58EBFCA7B8B14816B893980E779A4C96E25F7111B2D4CFB758918743
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Client.resources.dll
md5: D6A22387D5CF4DD348A529C97856067C | sha1: 2CD41DCBDC758DE0C91CDDAA27BDD40130547B01 | sha256: 5043CA6541FE2505EE2030B8025DA84A3617F5C064E10E75CC7170F546B89ACA | sha512: 49237D2F4A92D614134F08806A8EF1357025B9D2DDE038DBEFA810DEDB2A55EAC0DC15350214A11879E3EA30DEA9A359DAA2887B91EC25028F8F8A942FCB4234
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Common.resources.dll
md5: 63E05AD063161ADE057814326A4F1178 | sha1: EBFF3E11B2A8921436A22332A6279F922AB367CF | sha256: 9373CD1D60441F27A2C90DB49310FC5EFFCFDDDCB5D0224975214A76D23BEC37 | sha512: 02AB5A70B7308018CD68EC377896A798529872ECEE823C793E4564201DAC8EBA6C30ABFD92C143F93ED5C1DDC591E99D07D3035D5B7A6A6070F0ED4C9F5E3DA1
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 4B5C6937C14726FF581831B27F3376A2 | sha1: B5F6772E2C20585F59B9E7BC2E8C9E60BF3B4160 | sha256: 8485897A9B06D5CDCFDE4E4FEF7FB6B85705ED0100F2CE4CC9E414C95FC07F08 | sha512: A76906998E9D6E95C3419A1EBC1AD92004F02662E226D80235F41911778108AE41A948C5E565C348C6C9DAF4D5676E190E05166D0C156C393CFFA4FB41841688
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 053048AE70ACACAD7F1250E8510CFE74 | sha1: 22C9F15FE89A58CBA13F410C856C43B7B738A4E6 | sha256: 98531B9BBAFB0273568003601CE8EED57CD3349A7CF2014F9D75AC4135C3FB53 | sha512: 3E14F2565FB193F86E210999FB3DF01D5ABDF1D5AEB96F79B78953A9B1CDACDF768CD100C72BDE8462F175C5EEB2313181B7780CF09DF3E6D84C6F6878CA2424
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: D302FE1042E8244E9F219704B3F2068B | sha1: 0DC757D6002C6461F9AB13DF5B05A3F6E349E371 | sha256: 95AD33A5719DEE4674F361F195E101EF0B2B66CE2BBE68699AC2AEB2F20A744D | sha512: 4114F15D2B4D1AC77A7AB5B543D4EE37981AE0CCEF3A9AF6A6059BF32992E58A71C2680CCFEC9FC498695BDCDB99640EE0BDFAF85F9882293DAC987B76583339
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: DD8DBE6D7E541AACB56CFBF9A88B0416 | sha1: E070C78010F5D91565DEA4F5212B2618F4A90B23 | sha256: 11C2C9AEBAFC07E300E082BB0E0E7F7FC091315F3048051F05619D37FD933F32 | sha512: E5D9893D50082C22F794DB25A8D2337FE4348AF3B90E5FC715BFB056EB8E2E6B3A11E501D9115CBB57D4CFAC2139B51E5CE459B4CD206A2DA237D2E1AE5A7012
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: C610A9D84C66EC033958A68A62EA64B4 | sha1: 9F62F202566F76EA440D7394EB24B06EEF12538B | sha256: 0180668AA441D5E2066E8589A2F47F7392EBFDF296D59191FB60D8EAA1F22419 | sha512: 4AE8C0B4B65491062B1FBC0A906A5C16D565A3FBFEE65D28FBD6379EB3DFD109B6B437BBC93DD14AA33C6405123EE20327628465D78EC5F01F3F2CA9E8757B32
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 0A2C0F2DBDE19A2ADF456ECC00059C1D | sha1: C9A420A6FD2D11762E5E89211C26883E3AEF7FD6 | sha256: 00EBB8ADC126F9C271130D69FC3EAFA29F8FFA02398A2E0958FC98EDBFC33850 | sha512: FC679CB143568DFCDEA8F8101B216624282CAE5A2CD8CB381FDA696DFE3B989723B172D01712B83D4E87787068BFF8163DB55001F81FE74CA25DF97D1C103D2F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: FF7C99C28C268B4165301A18D7F353A1 | sha1: 83D89ECE31BBB8E38A3E8823D321360C7CE5430C | sha256: 6F8527F8D96EDEE6545FC10A6ACBFF16BEF704638CA12B05ED0C750C56703031 | sha512: 8AB3DD37039E78D43036C4F85CF58AC3A9FFD6DEA05E68B3F3E55CB6E83A6B80B3F08685FA7776E2B36DC7353A2239D45BAA01EBEE0127A8F657F7BB378F3B87
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 8A32F73D678B2BA64E17C705CB2F3708 | sha1: 607FAD9D2C6928C3868D41F8D14C0CF9D7347A43 | sha256: 2B7C247AA5999E01089D5872710526E38403D0BE725E7D9CA4DD7868EDF00A24 | sha512: 76EBBDA73A9C5FA9781760B1B2519933204E8D480200E566A09A7B7523B4B9EC82C3425186568D4739051E0CE64A9DA3A5CDDFBD68ECC275B2F6CC255D5F5BD3
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: A915A21220C6D8FE8C981F8D38567C9F | sha1: B34F43454896D6C1EF929548FD56CA4B39C0D8BC | sha256: B61D56D1A416A3667C5A0E12F0EF9B9F822DDA4C600BB37F5327C15DF6D419F4 | sha512: 84721E72DF979B01C2F6C714155A56645FD2043868E0FDC23859D21824C7D2885F6B86B4DF67FE74C45E46AB5F08DCA43A6C8B64364E8840CF06B738B1023DBC
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: BEF1A780686C072AE2E523D721D1BECA | sha1: 03FB2447B585DE66B2679E3D7AAA2043860E1F91 | sha256: B4E1CC7CEE60773F91EB94157E621FFCC17C8D1BCB65B3EB4EF2E4F2CF20D8A7 | sha512: 79E7322A4EE08610E93FBA43F6A32EBABED80C10DBCF47FE09CCA6665603A7F02E3AD8BADBF9365C57AAFF59D6EE3AB89F5860661CB1D46DB44F312BD07B3C8A
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 1934FA769C23042A9692CEE45F2FA2FE | sha1: D40330CD1633A4F5645A21493F7B2D46B4868FB3 | sha256: 4D11A8E982C604F6B62CC07197EF2D5EAF7B3AEB1FC738F0674A8938B1AFEB4F | sha512: ECF620BB9243FB785D503761FEC5045EC770B09BD21E7530BDC371BC34E8FCA3651F1BAEF8C598878960177628A5E760147113B70EEEE103BA39ACACDFAFA875
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 4A0184E61749075F551C2CB5B2C690BA | sha1: 221F9E48A8796080363AFB6396FFB2652969538B | sha256: 5FEF7D05FDA203081F7F7890E729110F128826961E389AD09084BF057911CA5C | sha512: ED22D23D06B028EB1871FBD69D2368676C5B546D124B5F6F6C12BA990E7F762EB51ADB07634AA5FDB53EA36A3003BD27F40327BE792F371AECECC4495B633649
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 05FAE643CE6638AB8F664AC8136A42AB | sha1: EE05975FF1BFCC623680B349CE08759CAF73A2B8 | sha256: 246590ABA8DA2721144556401B0329089035E538DD0AA1EA0EB3BD7CD0B8B861 | sha512: 6906CF8C1DD83E65D7F96A7B4C54785F8C8A1B934C79BD08D8BA0A5B976B4AE639CA1E9DB4F0D064C50D145064CC223C1928C6FF16587222FEDC13758958A240
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: F19AAD1673617D456EA93032654A155E | sha1: E362BA07287068F9F94288DD6300E64632AC5DF6 | sha256: 77664D8156536ECA5E25A0BD700B41B7CF6C0CFD149AA7A9271F56DD206238BC | sha512: E4B7F3B7D107BA4C725F04ABFEDD4358169EADFB83EE360087FA0E8D5F282CDE94659BDD1BBCA18721B3312750B2F3F9F49939E95A485FCEA2891ED3319526EB
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 77F933451D3C4E1A5ED6F3026B575276 | sha1: B927453D5DDA76F4D5E2A4D5891C1210CF480002 | sha256: 16BD9031171C449C8D17405B6426B5B58C93BC343105F967B7871BCC9A46622B | sha512: B286F129E1C65112999ADB11AC54BFB016CAE195E8FC07AA02A75905130E044A59821E14DC905F6AE9075028EABF3C1B63BD2C9711EE3E8F3B0A06573C2FCE19
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 3BFF44CDE21B0F93185D080FD5C2F0A0 | sha1: 1578CE479A6DD3AA8680EFC058E9D810E3DF9923 | sha256: 0B83AD01B85EB3F073D6BDE817D328EDF82EB5C53703A0593FC094B23FCFCF3D | sha512: 78DFDCE2E83F539BEAD2A9D7EE26B1CDEEBD306D8B0DE92907C08575D1817B69648B17D2E1262A718E41C23D1DEB3780B02D7667B57F54618663E61A7B824E74
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: E10067825C03B7D8EAD180B90858F3F4 | sha1: 8419F3A77994A9F43A50DE66ADDCE0B4E84D5E4A | sha256: E9FCCD460025205C9AE35AA49D334E51A269943171B7829CDC40A448D506D012 | sha512: 8178537E257DD521FBA34F8A113EDE5143A8F67367D5BDC94BBE1BE745B3E32B93743DA2F704E5A606F04413A1C3A50EA78B67E52A03C053FBB2C3E9218C5F4E
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: FD3E3791C233DA7853EAECA42D6CF367 | sha1: D69D8FA9D19F226A22B0238278D9B3465C263969 | sha256: 13E2D37F6AB78D40BC1F8892483989D934FA81FEAF72D25ED6E50257BD9A9259 | sha512: C56C8728235737B183DB25DDDC74DA60C4B597DDD9198A6E76517B26DD9C6D49D5A50391536A28E731E5C3C093D3DD06C4586FF6E49DF70EFB5E4F4406E787E9
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: A5D865CD6991E5D1C0C155058E7C6505 | sha1: FFB06D9B7DC312BC7DD6E5B0FE4222FABDCB2022 | sha256: 62F2C84C894C18F5894E761AD9CAA8A1F5DA7B4B7DC08BFAD05049AF49F4CC20 | sha512: 0B4C88775E7C5FA84DB2E2BF433168454798C476E211846594BF272CF8A49B0C9B4348649135D8F5883ADD208D2CF3F08CF972304E91268627AC1B782DE9B622
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: A23B6C295882C7E898EFB2AECF177AFF | sha1: 908056A539C7CDDBDF23E9B7E9FD4D207B1A5523 | sha256: A87A112038F9772F70B68773B9A601B0F21C13D29070CB730A23A007417F10D0 | sha512: 7B8F21047D2EF07456851F7B34919AD80D9C635E8C11F2D62E7748A2AADDD5E51F6AA0ED9D6838042083300A9F51D9B9596381C9701397441677EEF40E339206
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 8996F07357418C37ADD98BA3136A0F0B | sha1: A755383071BFA22AFA0F40B26F83F850D5F90D9D | sha256: A300A7CA6A40397A9ABEB9126400BA20E06D5E3032A4C2872172A968F5ABAE84 | sha512: EDFFE197B37A1F67D982AEF64BD6C420E77A5AC86AC0822F7B2A900EB6A28824DD7229ADE6691537148014AF3E5642EF7B81F56EB36B5BCEED188A2D822F635F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: A5A7DEE7930AB23B42718124C1DF5C35 | sha1: A0FFCBE9DCFCE1443BA59F31E0B607E7AD030926 | sha256: 25073C0DB137FC24DC681AA3E497136489FAF26795005542A483DF4793C49F15 | sha512: 1A337FCC9FBD4993430A5B7E4EBD66FB60921E84A70E81D169EAF8E78433C6DC95D4E42AD175B0334296228810AF218CA35C5E470F58548C57D3C5819D25F4D2
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: E1BEBC927177C5424C64C05F5E745FA2 | sha1: A770AC80A3C7827C0A6B89B331DAFC96FF7A1CD7 | sha256: 5DBA40BC2C0BD1DF6168FC6B80E8CA2D17B6D472906D2B3ACA140DBE82E25175 | sha512: 39E0973F4EE0CAD4C60D7C6DE981411F6DC39B45D96AA0A35CEC1A413A56E41160CD471FF42CE1FCDB60A7550377BF24903F0EB5796599540C2278887C9468B8
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: C88EEF775523183C183FA3515803F967 | sha1: 2910EA83720C3828CB37803BDA15DC92A2C8FE5F | sha256: 8228A1709B8BB9408D344D84EDC9706A0B19E1529108EB016BE187707939AAD3 | sha512: C78818D2B336118477F698C5B6DD7AC5841AB6D0081D5EDB49BDB5B358955FA9F704A98AD34E2149694BD1191E0788E79A1B1AF56B0B9A06555E84B11800B32D
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 31B40E036F8619523DAC64751D8611BA | sha1: DDF80D0A2E966153DFAD6DD1D6275F567ECF8385 | sha256: 7FD624A6DFC5E6A738BB3798D36441A466015C51F50F276DF36E3BE8D543061B | sha512: 8ED575419BE6366CBDED1C8567EC4FF5763564B8CED4212CC08614E5B9A73AE9D98EE2B8F8C7BDBB92DF4B7C2B258519FA80E3A8868A6898E472CC3D27115581
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 784E44AC89135D73A6CE1905B6519967 | sha1: 6D09DC780984148049E3B1538F0BF65E121A8C76 | sha256: F317FFD6A573EE6071F991AC9BE4F8E9E3445FA19607CACE6D1AFB9FCB30B052 | sha512: 1B119D415618C90851E048BCF7DA12CC418DD8E6A80162945257DB09132A8CA7ED75F11EF8F3D92CA3EADC76AB0102F9D52682ACAFA40970F4DA6674EE1BE768
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: B0F9E5CC57407734212AB99F7B237DD3 | sha1: 305F1D8A0342A5050379A107CEBEE292EEEE890C | sha256: 6CB681CBF9B4DDA5B347F9123DE30288D2887D856F530829CF9E87C1FE7855DC | sha512: 11ECC9C57FE22706E94DC62494AC6ABAD373324DA463CA8A7FC3A7B996A81DE59D0CCAAF55FBADE5CC295F1F4A998C555AC1C911E8B0537A7C2A2EC578DA918C
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Client.resources.dll
md5: D6E5C600B5BE722BB981CC6F4766540C | sha1: 50D70AC32C396F83E1656227A3490A2907531959 | sha256: DA740CA925B081A6F0DB50499F1867B3AB043456387F0F674E54D4908A7B9977 | sha512: C96704D6B9AAFF5CAD7F34635A1F2065FA9E4757CAAC239E38B0A11BEAF6A2FD9D1CB6A936ABA4983087B2F4EBA3A3749E2D19AE31E4133ED7E70013A7B93549
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Common.resources.dll
md5: 4F98C338B20A5779A8064E84D97F4C02 | sha1: D0D2B28D0FB0F1E8BBD8BB2B34D426D32CA995CE | sha256: 68B9E12E7717C757FF5714B51612B4C988ABA204A1D7C44C78F9B82EC3490361 | sha512: 2E53B368755829A0224E18F42D46A605EF31328E5A2FA343D8FA1EF8ACB7395DFB5AC7AB299DF19E0BC64773D7ACA7EEAEDF4F417003FB6FD95DF379BEB4F0BC
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 037276E908A3B7F02D5247550AD21826 | sha1: D16DBD7AE18AFA92F324541BD9F6D3022B3AAF46 | sha256: 43FB293828E98B2BDD1B8BFD0840F317AC5E0E906ACADA93B451E82CD7779ABD | sha512: 9A0663A48D4F317C4C4512AB8E9ADD824D5C3F9E69D4B4C8B2F9E04CF334346BD04982E2A90FB7148196EA7EA7BE2032F0E842C10D2F40167A92B2557BD97CE0
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 23163A5EB8B06ACFB59B4ABDDC8FA6CB | sha1: F56CAB9F46BEE7B5FCA1F4983117DE0B1782B315 | sha256: 33355A603D8FC3E9C71150CBD55799C36BD8610B356679B76FF95AA5C6FC1256 | sha512: F15F29ECD82B3F8C7020F536695DE03BDF866112A27086B91EC8C609D94F3251DE0254DBA730F5FBA828D27A6E3146AD3D04B77B2CED686C1B90209E88222EFD
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 159667A00088CFF9A5F029639313A2F2 | sha1: 3B3D4AB3B7B91815A4BA755DBC185575FC3A6518 | sha256: D3B64C574EA92E451B8B99D9723EF28572A6799C7539A1F7F662A73BD6BEA40A | sha512: 1DD7CB632F16D1D8EFE193B384958211445A9FA32B09EF02B01B041C2E9DE6B34EB35F2C95BF55801903F511581EE5DEB209AEB8F3A118314AA7D9FEC483B0E5
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: CE47879FFB30FDC7AFEF9973059C5D21 | sha1: ADF7D1EF1E39D0195A61C0949AB9206D1D2A6935 | sha256: 85535FAE8CFAEBEBD970FA7A17662387EC7AB97A4F3CE33071F874D74345CC38 | sha512: 4B33D78AB7B62D550B8EC1E6A125E4739DAE2478356AB2F640F08C3ACD64B1CAE68FFBAC07F2A308CF30CF3CE9A7D7420810AD239A69D783AF445B7E0D923398
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 3C52C1FD5B2059165AF0F014D7A91B72 | sha1: A548B6A07D5ACA65D9A2C81CBEC9698162E11174 | sha256: 3827FCFEF55F923FAD81C38A51DDC359919C40B4E95519B707DA7B236A98719F | sha512: 0D1EEC7906BB93C63D257A368828D7F07CD37CC65E8C4DEA9AE563C0B3B8DB3B0B413F61D0BAEBD732ED9A9EAAFCD6EDC11128B0D59E82E439ECD73C6AAFB269
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: EE10A586588D3D751469EED9A57B74E3 | sha1: 113E2617CF1B2C3D1586C8658A245DB27DCB621D | sha256: AF97A935DE143703387363DF3BCAAB4771ECD87C8A60A0F6E12B79B2C796FA00 | sha512: ED1F776AED9ACDED047B55831A22FEB21C3569881F0C7506500B7F58C6BDE050589CD7F04CE5E754ADFDA7E97203741BADE2E54D54AE2F34A9B635F277765FF9
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: D59ADDD27B87049881348E5078287434 | sha1: 2AD064EFBAF9507DA7A57C7C8B4A580360FBB140 | sha256: 72CF906A622A031242BDB9D02CBC8148846E9B980959A406E96472F6F858E004 | sha512: EA38F9324DF0930F5CFA259ECD9F13209D597A1B8BB5F8FB8D99B250F7BAEB66839C75689F71F803DE00B0AD558687855747C45D67B39A7080227D263585F374
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: CDA1BABE4232D28CD71552CF28EFA516 | sha1: 6506C79C91A3BB7F93F439E26E81664FFF2000AE | sha256: 7A7A2210810BE8E91FED2003807104AABB19384BC06EE75D673AC31715392EFB | sha512: D249B7245EB184B0481A5427B4A9DD38F88E8A55584BC326294F4540C53175473C7FF0C1EBAC9DF081B4578B3AA233E0ABE1D051E709175001F509F2689F3D21
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 1318E445AD0B1960A4CE142E6520E761 | sha1: DD8EC21FB1313E4C5603CBD4D3361A978ECB9D14 | sha256: C5041280B10B5E94B5FF9742D44D59970FFF1F83A9557074FDCA241F007F4356 | sha512: F4B65AEF73425FBA31BD8BD2318AB254A77D17360AAC0DAAF67BA30A1BD9D102CEC93DF0770E61888AAF76DCA32F7760EE22149CCE46E4B15EA95980303B54B6
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 707F8923A2090AFBFCF70898B22A242A | sha1: F84B1D6401AA379EC25965732C41B32BE0819197 | sha256: FD40111B50D70194415568D54FEE1304056F3CD6B31EA3661E68F4D85B04D178 | sha512: 70AB62AF5041348207FD451DCFBF35F103793F9A6EC05EBEF6B526D6A28F51A70B30712AC67E5873E8981F16C62651D43BB6345F7225D1F3E3EB75FB928A84D1
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 7BB4009F2D4AB13FFE8A5A364D35AC4D | sha1: A96AE0C4A1C20582247235FD6258B2D6325A3747 | sha256: 1C119D4D98B38FEC10ADB6376E87AEDEE8BF50FFBCDB7729C309510E8DAA1D90 | sha512: AF4148FC35105D67F1AAC9281B6464F5C6FA95D421A2045668C4A6CBBFBD12C836F730A707AB6DCD4F2554E88DBDEDD4EC34615A83E04004E50A33B070009437
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 37C7915CF200DFD76313CD18828143DF | sha1: 8DC36F2893A9FF5F9A8A7AA1AA6EA1114BE315A2 | sha256: 90CD52375C0FD273077EE33475C0135129441BE815EA0C5AEF20BBE7439BBF17 | sha512: 949F0BE34051024D52EDE9798404F0CFDCFEDC0F981722D25FC0FDFA327E2D56979705F7CBEBEF8589ED812268B07B3938985513EE976363C9717905C6B0A413
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 69F567B4B407B2405E3A02D842EC2DCD | sha1: 3D6915C72E379CE2602CFC2DC007D6DF0BAF9ED0 | sha256: C2285A330845CF323E9919A29865103395A35F68E8C8C73118A85AD9D1603312 | sha512: 7178CBD7D57F569A2ADFB5B30721DE9A9793C293A9EDA5BBE5000A26EDBC38946ED99DAA4C8583F6B07AC7A3386BA4CD75BEBC2AFBECC315A5742D0866645985
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 3E4E0D2BA6EDF2EBF11D56D3C0EDFE75 | sha1: A4A84204E9DE58D38C9806E3B499341C12119C6A | sha256: 17A90A6CBBB42A4CD6C4F038C5B5CDBBAB44071E36F623CBA7214EBEAF125D8E | sha512: ACD6FEB1698D325CB514B0793D73B7B347C7E74EE4E169FD5AC68B2F8B61EAF556F21722289B278867A95BBF8B1D0D532CF08C783AFCC6BD46B0F9559D1E1621
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 5F99985BF14C11F38DEC1213414B2106 | sha1: 821A36B6F769475979169984C922DCBE6BFEE778 | sha256: D468BC99D56B964C8D356EF639062D765734EDA48F5BA10A5105555187EEDAC3 | sha512: 087A1EA9385FCA7DCCE33935795618231A65DA6606437C91EB8C95ED2361DB784124E8C98D44649608871EBEFCCC40BFEAD2F1968D055C69068D348999C025A4
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 113BB8DC2702B885E0E8D97632A7D1D1 | sha1: 6F24170D7AD27E9A589CA6DBDA9F1DA43CB62785 | sha256: E9FF3146B1D66A148CC580204B020228CF1E91CAD2014814C15ACBD78DFAA7BF | sha512: 1A3CE8C59B5712FE81DB7641C0B6FD4D36EBC3EC99342C45D168AB250F4527706529AFC95C725C56E657CE23448CCADED1D96AFEF3D3A9ECDEA69307EB3D649D
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 23995C7E18973FFD80251E95766169CC | sha1: 7FF4D460C4DE2F42EF171C52D0B9CA2328E75D51 | sha256: 71B6B944BA17778C3DDE128CA2D2D7C02768457CF7866AFF10D42B10CF0B524C | sha512: ABA9B123DA23273036AC6AAA025075A8F2EA925987FB968572FA51FDCF2F4DCD9FF437FABBB9E9C8713851C5A626B4ACFA739F06D5FCC627FE35824E379082EB
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 097CB4D1077C4EDB60037EC44726D700 | sha1: AEE52F7D1B93641A44F6CD2C65F5C16916877040 | sha256: C7D2AFF485F9377E9AB3A7FFA2B9C2097F8018CFF9FD709A266ED6213F20D2B0 | sha512: CE3CDCE0FF58E8C5125859042683413BC5842DE31D621D5B10EFE721928E1CA220C72376889FD956B55959F4BD797DED3883C68DFE8D3AF485CFE00589CC686E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 39518D98D402AFE1B9975F5C2CB05649 | sha1: C6E5E56D4C40AE9AB3D060BE2E37AB1F6952FD16 | sha256: 236AC6F31AF01AE11F5C583F365CFD4080EF8EE5285865048F44D853BC01881E | sha512: 193EDB593AB894DD771A9F8B966323878B81682CBBD8865B87CC7F62E41B11586C70772D27098BFEA5244B0F25BF5DB61BE6B4F6FF2B15C75A3B8823EB97C8F4
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: DD431A781EAED1433D149AF6F507573F | sha1: D43F6E9BDC4B661641A80BDCD337029B2B25A896 | sha256: 330B462BD2A93FC95E89B284C5AF635B54AEDEBB3D361E0FC72AF8D08B33414C | sha512: 106D840D9DD57109D3A050BCA9C513309014ECBBF5EEEE63B3CF3342E705AE2E9152E839B26788590430D698B64A2247D6E66FFD20FF25554F5106B74F518CEE
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 897C818107108D208644BBA4C39D9BBF | sha1: 1E5D954069C624F4CA2EC5A1272F7BA9B214EE67 | sha256: 37ACC0F4F55515C0C33022ADB661B8EBC17BE8A2F3128CD7199A3A1B17AD114D | sha512: 9F79CA5E3979866DCA3D38692862798A67D201DDA52172E5DA42024E39555A89E92A364E9742D7AA8888CE2F0375EB8F23FCD38C2CF8A7936CD399D42CB44222
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 13BBD658D728E0B0C61B4277A0C7F641 | sha1: 3A93E022DF9C696C634D6807635F058C36F3A2C8 | sha256: 44F31F1EE0D9F15D74BB3937A01251C953C66CA5FB12EF9ADF75787C9594EBBF | sha512: 0DFD1D0A83A94A1D2ADCE816078D851742560492DB671293D4A54DF88757914EB49109E3381D13D30ADE856B55C6B2BBD1CBEA36788376A3140AE55A257B30D3
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: FA891DFEFE62E5B2F29541DE3ADB2E7C | sha1: DADE1500199B446EA7B4B8AA2F5270E05E810036 | sha256: 4A08C50D2B879BAD56C2EC97C57A22288231103F9F9887DF9A453F1FC8C16684 | sha512: 2E05A7CD38F0EB5D1DC15CE2F884F5540ACEDF54D94E7BB1BE1E9BE3234E6DC08DF54E393F9024E369BF6B546D61299C0CD7C4EDBB9376A399C224F8337D1047
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 2A5A591AA31081E2A2EB62F8336633B8 | sha1: 381F8446616AE2718D0B01FCB9ACFEC3F77F27E5 | sha256: 9FC019DC06C04391A7EA2D2B578BC8F460477561D39B0EF04A363DD0914EC739 | sha512: DA9031569B11EF56BA4DA5A8BF8C568E3B0B1A1709E5881CF1A78FD3ADB2B8EA3D212CBC49997ED5F0A7F8150775E89E879915EDB741198F9BC2C246133AF255
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 9332F420CBC840F6D915A77822FBBEE1 | sha1: 19B8D86C87D52183478FA6EF8098A7EEA6E9C933 | sha256: 58F631E073FC8B45A6F9307DDED40D203DDA39114DF5443F54BDFB809ADE5500 | sha512: 7C28484E8726CDE892A515157F3730A5FF5E71DD77C303FD9610E2C195A0BAB3FAF49E0C8475C04591873A18862B49212C65B14A8C6B9D13AEA2D0E0B2FDD6A8
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 026478DD3D641441D402E58EE6D992C6 | sha1: F38FDA5137B9D174F88CBBC535C4439BA0000A37 | sha256: 4189BC1B1C6537CAD13A3F342CE6DBB38AA0FF9C5C563054D1CCBC67AED2900E | sha512: 5BC687F9ECD06F732797B17177A908B07F5B7A7794C942E1C6DEF93C6DA847B95F82A4A5FCEB161331B61FE939F1478AE7572B18B5F0A1C8406E4B977E608728
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 4E8B107B16E748B3F92AAF81FFFED986 | sha1: BF7F38FDAC5B639C9140144F85DEAF147FB0DAF4 | sha256: 430D992D63562159FA8600CAD8006D401E003DC1F1BCFFB79158E6203509A8EF | sha512: 04BAC1FA79156A7A5BE45A06E387B63194FB7FFA26A3E3F62E8EB70BC54A7EEDC6ED82CC44FBD20517D6306216996E74EDA966610C99114163BB7795A2CFCFD6
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Client.resources.dll
md5: 633BEFADEF45ACA0BAC5E90B3C4426B7 | sha1: 78616EF6567FE78DFC3371A2816BEC1CE7383935 | sha256: A1552C5F23A333496B11BFBC3A4ECA987D955DFFDE5815465176CFC9E4E777AE | sha512: 5E7D14ABB38BD9A4CAAAA47539D232C8556004046FA8151B5227F85208D5116715FD7DA9E1F3778FC26E8D0D14BC782312476C3267387FED8CD0E06EDEE35370
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Common.resources.dll
md5: E891ED69C58680912A50E9373337774B | sha1: 84EB7C67CCC368071074381D950D528932D05D4D | sha256: 46A5423A6DAFF70FF82E7CD8DDFDBE8643CF855C1CC659CB783D08F3392B5FE4 | sha512: AB90436FBC392561A3E299E0BD8EBDD18AC3E1BAA31A556D5F39FC2A927BF174C1D5E68BA4D828CD7A782FEB6946FA28876505860BC980F3F7B47319398E1A74
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: C3C2462992675106923B7A4E52A754A2 | sha1: AFB4BF482B6ABD2E961BBB40B1C2243C70DDE5C0 | sha256: 2F7F884FED92BBB473D4B6FE46FED4ECD95E140D407B9988126C93F45EE9F8D5 | sha512: D594E01A895D4F5BDB205EC56C003CB694F59931CB4918CAF8762DE8AA73E3F7D63D0F776D68BBFB1470AAC9180D503522EDBAB80AF939E55CB9CB5D913B323B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 645603C16243CCAA78A42D8FE7998130 | sha1: A940D8BC09CF87AA2CAC29C4CAB77B3D67332881 | sha256: 78A6B2F6C991B50402CBF25945404507CEAA77790EA047295CE8A60F804851CF | sha512: 484E2DAA54D3F4D2C9CA7ACA89679656100A0F57DCA6D042F55902514245919186CF72DD66E651D0BDDE1FA0C56E4F2A033AB1C8170EE43AE7D62612D92D6A60
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 16F06D4A3F125EA2EC0FB582C1A7AECE | sha1: 612507BEBFB1DB61301E7206D484195B98A92D3D | sha256: C43CCA28D98657CA16424D22241ECB6B2EF026BAA12426140FDA594E13E4B7CF | sha512: 686ABBC754C10E9A730C935ED7F0BF029F386655902FD572906AB3BBA8B9AADE5702219D6FBBE62973CBFBE205DE958270A8F83586F42BD01EF000595CE8DBF6
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 0EEBBEB508B97453FF092F200A58A0EA | sha1: F7923163B85FD90CC0950609BAAF2F8DEF412527 | sha256: DF75140FC308AF1EB45396F5D7953EFC572066CCA26438EA6FF7CEF1F6222190 | sha512: 20D0F87AB896824DA1DCEE226F6E1FF7056D75CA2FEF3CDD8C573B2DCABF38DDD816C31F58D4A52A8DEFFA2CDD262C59DEDE03BE876DB9E9C0967BD4793465F4
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 56FCEA4610292591A40C68247F9EA550 | sha1: 868BDB82B20407DA7EC82D935DC37690F5115F57 | sha256: E3DF940D9933F00F3EDCFEEF467E7403868CD8E029BCE5080BC2725CA111E109 | sha512: A3DBE317B37163A54E60FA9DD031A07A8A4D39EB0340850D565EC5938564616D465536245BC360F8E77131727757D9C4BC2193032CE90046919E10DB18E5A458
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 6D90314E8D631EF3BEC3E53D3166CEA6 | sha1: ED62FDC7ED7D3AC5C3395E5D6FBAC1ED8DD17EA2 | sha256: 783C2207F673D23089296B6E5CA57318C510328B33A6763B15D8B6A74C80AFDB | sha512: D526B3D2F2F3B00F429B55D75393EC95BDEA447A5671D78D5C4EC6F8CCCCFBC45B72010F9BC86D6EEAC0BDA547885356B575B99D360896CB34BAE28384B65ABA
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 74468DDE8DD1FB98D266CF897E6250BD | sha1: FCA52A06D85E022783279FD37D544945BAB3369C | sha256: 7CAF80CE4A26E253DEE117E76CCC08CF738D31537BB17A95734F340B5B4755F9 | sha512: 9097CE737350AC7D1459910266597901A2063548CAC5A070D9CAADC4A01E16A1A2030B8682ECED72B7AC5C2BE5D2CEFABB9BD2E643FA51337274BA66C33052DE
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 37D50AC27C8EC41AC6B083467EF57D30 | sha1: 76ECD1EBD69697BBB5BFD06A0942D0A00B8AF825 | sha256: 0AC712735B6BD1CE7351A6C90734230C685A919F8745DD5FD89207AB54F6A843 | sha512: 01DE70F018A40BDBB698CDC660C440235B482F2B316E34F5C1FC04BCC6CF2E8840CCFA8FCD62618FAFD424573F310DE5CE31E47860AA8B35A0BF54432B8C3776
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: A0B925A7B99DFBE1B81B7A3556C8C8EF | sha1: 3FB1169AF4A37800424A1429C9CC088306B8AA56 | sha256: 8E312A9D32910AEC26DDDBDE76B03D3CA1D900BBE4ACD386340EE502F0603D9D | sha512: 0D09BFD7F398CA569A2A73BA6EDA984D9DC099C813BBBDA332CABD6509688649B6FFBC13978BC07C9E05542B2643072FC2976EAA172C3648F7D2E98329A95604
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 0D03077D6924F30770EEAEE95B818D9A | sha1: D7038E75B765BD719786B00BADD30A3A674B3947 | sha256: EA55B70394E7D93EE018E403B271EF5BA3B2A5523ED2D26F34E6444D2E0D2B62 | sha512: A91DC9D0F1F029281076D0F574B8E4BDD5251D70D8AC9E02AB8DD14DEFC0058EEE655A4FA4979690F5B94D4078858A7A823F33DC1A13BB71E2D82065883DBCA5
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: DE347636CEF22880576A72B020482791 | sha1: 2E7195BE2A19EFAC0654EDB941EBBF62D3F1A360 | sha256: B3B5A1670848012542E9B878581F52ECD0CBEA7F3C8E11E68986FF09711B6972 | sha512: 5009927A3CFFA8DBB8CC4E273D3FA8286C306301CD2D40FAD5B0DEDBA82EC5D2A2E1CB57D1C068E2AE04A9264E9DB750B307FBE1C975D516D631EED533502D3A
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 114FE9CF0CE75E81B4E38C98D46B90F1 | sha1: 40446D54E25080965F81413DD6F12B6EE3A6937B | sha256: C214C04230919EE74C601E3050CC5143CF48402F99EE7367D9B5EB5937055214 | sha512: 710D282C46E74E7D44C4051033BF1AE4FBC1E8B76A2029C7972A0A5BDC6174FA057EBD86043C2339A422BFFA550276431AB314A88F6F85854D17F546518AAA5E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 0380EAC7D37013ED808B23A6A9F6784F | sha1: 58EB8A53B42D6EE9EC09EF935B2CECD59029D5F9 | sha256: 01A119DC5C1F2EEEFBE05CED5A95D7F16F7172D35876431F70B881546242481F | sha512: 3759C73168D9BCB138F7C7F388DBD5F5C4EB5227343B1902E37C78886F88127A635C5CF9E2D2C74853FE17B6294045EA3EA413847F3B9D1187D1C915259EF098
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 12AD1E78A4A3ED75166CB1AB06F2236F | sha1: E1ED5128E71F420A610200C063EF49534358D443 | sha256: 6A2E9AFA114D0A03AA8F0B75E88907AF4AABE48FADC0988CFA25489AE571B237 | sha512: F4EE629AB4D983345C5F133144417D249FDB96BF47C648DE19BA170F7043B141EE0A7F5CA79CCBB52801DE488700374B0C844E7376366A4B6399F6CD02A00AF0
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 2A23D286A7C3517321FB1CF180FF5462 | sha1: F709BE380B30078A8A9EEFBF643AFBEECF9977AD | sha256: 05D756AB7DBB088156DD7F0E81AEDABB62222903C0B32C5D280133A48890FDAD | sha512: D35A2B730DC01A1D7EDC9732E017B8E08605D894B55B0921AED9F0CDE71E23FB86774FA359B516E6C30D25F30A3EB8B501919CCEE1121F87FB06CE7CAA73AE22
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 37714A7A9D1E1EE6E5BCE939E2901AC6 | sha1: B778FFB73CA49D3CF2B9F8C216744C08901E7ADC | sha256: EE3D7B66D5FC355C16DAF3CFE9DE29E85B2A2AC1CCAD00CBECEEA1DC7D0B791D | sha512: F4FBCD9C29759E8BCF891EC8771A3346898BAD13B0F5A67139D2CC6FAC8F83219490D65891BC1E295CC3DD33861B4AB30A5EA7A24BD158E31B9676C25338CFC9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 218029D9F9EF2FB35540C8B531A8D365 | sha1: 0CD378E61E5C051FC44D9F91E1DFD3A31CC7E818 | sha256: 3A00F63100463EBD11E290A83F5B1D0EBFCC3AD90B98F8A9DD566403EB01E1C5 | sha512: 5A515A5DBEB7544A4AEF15B907EC9DD41EF051A23A49B9376213A244C2293F9E83071BE4F3687D3F76BF564B1B0BD36D5E856AE2DD73A39E5C55431147C31A1B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 94FF00011E7857177378F81B1A1859D3 | sha1: 841880ACCA23B2070B623EC2930A6D3270EA1FDE | sha256: 77E49D8DFF9850269931EAAC62CACCCA8FBBB517923250E5F8DDB460AE6EF782 | sha512: AA4B933F68AE2A25748538F8E8213A5B8F60B65758158019E7152389E61AF49254A5A9F589DC6CF4FD45127C1957E6534141071F83A0611F5BF6298A183A8F4A
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 9264D4FE40F166110ECB63C003195005 | sha1: BD2CE7FB7C5440ACED06B1811A13D64E8161B762 | sha256: ECCD92151CBBBCFD18AC76FAC7B95E7330DF01EF03E3DA01D2EE130578C45541 | sha512: DBB71260D56FFBB03BC0BA33A1C9964DDF7F400599F196D7DC37C189CFA3E619025E43F400378317BD45DA175199AA9C4599E95B30F1FA43530A257B04334F04
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 2A746A15AEF85ACB888F24703720EDE4 | sha1: 8B10AD80C54DECA2834941679BBBC58E9A0A182D | sha256: 2A78F8B252EF15427D080717D7FD9896A4C80380A91A8969E115634C3F7C2F39 | sha512: 20DE4069B93E6CBDBA5576E7EBC3D45E7C0292245B6662D9D611F70FD8BCE89896C4EFEA0020EA11EEAC591721CF53ACA7395BA62266E53DC8BF7A65C9337EAB
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 7F80C87D334694795FFFB0921B4BBC7A | sha1: 4D3DEA6664BD5785A1BFA1E3ADB30639EA5AD389 | sha256: B9614DA0DE776EF48050107439698F391429C38C5925BCCE5BBBD3AE53F89E15 | sha512: 27DC7B9D7F4F850B68576A98E4D681164AB639277839CBFEB9DBD629E2DEC81E18F17BD7CC9C632174EF89218A05149C40E7870AACD74788C076A5130A38C322
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 93C8E2150BFF86BD343504BDBE057652 | sha1: 3C07E0990CB63A068599191E19F57A9D941D275D | sha256: 7FB6B5E24B3A7AF2DC196DEE1A9DEB32CAA2D6999CE72AC87583156AF3461695 | sha512: CDA86FDB97B3B5580D1C325A124C795EDF56B19A45002570E3937F72AEABC46B3F5BD1866B0A145AB249C35DCAB251A73C06F973B0D0033EFE758112801592FF
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: C333079F48B437FDCC91EC6F7E4F563E | sha1: C56F62E06D9153D84E1576246BC719824625E28C | sha256: 72E851294348DE2E8BA2327C4647E9E6B06E846853173A983C1430018920C072 | sha512: 120DE4C2641ED75D2F914310BDB0BC9CC536BA553A05DFA87D8808CFD4F583348D20105B0FB5BDE2B79FDC154CE362E7144AC3845FE1CE5FC1506920E1028A67
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 4C8D3749CECF71E1DBD133CDB13198E2 | sha1: 27BCD37A0D604DB23C851C44820619FBECB87AB2 | sha256: 11A9B8D11E77D6C2E2E61DCCE968D4DF801910B329357C04E5801E063AEF13DB | sha512: 64923A778EBA7A7462200880518E789DBBEC0B87827537FF29CDBE3F8AEB50CFBB76022F3CC007EE576BC5B57774DFB9EB295C4ADBCC543A43C677B8D2E928AC
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 208CDDFF5A581037E3192866A54C1F35 | sha1: 62C95EEE6198E7C48CCD7DAECECF6A06B4A3834A | sha256: 82FECC2337B9AA156E49D4505AADCD6B9E8B14B6F418232C5CD1B581B9583358 | sha512: B9D7FDC99B51EDAFBD727191200CA1D7EC4BEA20E18D28C84FC9077AA4D2C82CC0D1C49886143D98EEB0BA23AFF8E979D786BC959D3031880834D70E8DC48244
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.3.1 (_08/Apr/2022_)

This release brings a few minor fixes to Team cmdlets and to pipeline handling. No new features and/or cmdlets have been introduced in this version.

## Fixes

* `Get-TfsTeam` and `Get-TfsTeamProject` were limited to a maximum of 100 results. This has been fixed. Now they will return all results.
* Under certain circumstances, `Get-TfsTeamProjectCollection` (and, by extension, Get-TfsOrganization) would throw an error with the message "_Invalid or non-existent Collection System.Object[]._" (fixes [#165](https://github.com/igoravl/TfsCmdlets/issues/165))
* Fixes a caching bug in the handling of the -Project parameter that could lead to the wrong project being returned.
* Fixes pipelining bugs in several cmdlets (most noticeably `Get-TfsReposity`, which wouldn't work when connected to a pipeline).
* Improves the readability of ShouldProcess (Confirm / WhatIf) output in several cmdlets.

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

## Previous Versions

### Version 2.3.0 (_04/Mar/2022_)

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

### Version 2.2.1 (_10/Feb/2022_)

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

### 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: Get-TfsArtifact -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifact</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifact</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more artifact feeds. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifact</maml:name>
        <!-- Parameter: Artifact -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Package">
          <maml:name>Artifact</maml:name>
          <maml:description>
            <maml:para>Specifies the package (artifact) name. Wildcards are supported. When omitted, returns all packages in the specified feed. </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: Feed -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the feed 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: IncludeDeleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDeleted</maml:name>
          <maml:description>
            <maml:para>Includes deletes packages 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: IncludeDelisted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDelisted</maml:name>
          <maml:description>
            <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDescription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDescription</maml:name>
          <maml:description>
            <maml:para>Includes the package description in the results. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludePrerelease -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePrerelease</maml:name>
          <maml:description>
            <maml:para>Includes prerelease packages in the results. Applies only to Nuget packages. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</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: ProtocolType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProtocolType</maml:name>
          <maml:description>
            <maml:para>Returns only packages of the specified protocol type. </maml:para>
          </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: Artifact -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Package">
        <maml:name>Artifact</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. Wildcards are supported. When omitted, returns all packages in the specified feed. </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="Package">
        <maml:name>Package</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. Wildcards are supported. When omitted, returns all packages in the specified feed. </maml:para>
          <maml:para>This is an alias of the Artifact 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: Feed -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the feed 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: IncludeDeleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDeleted</maml:name>
        <maml:description>
          <maml:para>Includes deletes packages 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: IncludeDescription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDescription</maml:name>
        <maml:description>
          <maml:para>Includes the package description in the results. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludePrerelease -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludePrerelease</maml:name>
        <maml:description>
          <maml:para>Includes prerelease packages in the results. Applies only to Nuget packages. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeDelisted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDelisted</maml:name>
        <maml:description>
          <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProtocolType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProtocolType</maml:name>
        <maml:description>
          <maml:para>Returns only packages of the specified protocol type. </maml:para>
        </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: 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 feed name. </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: Package -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.Package</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/Artifact/Get-TfsArtifact</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifactFeed -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifactFeed</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifactFeed</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more artifact feeds. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifactFeed</maml:name>
        <!-- Parameter: Feed -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the feed name. Wildcards are supported. When omitted, returns all feeds. </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: Role -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Role</maml:name>
          <maml:description>
            <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
            <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
          </maml:description>
          <command:parameterValue required="true">FeedRole</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Reader</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collaborator</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
            <maml:para>Possible values: Collection, Project, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</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>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Feed -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the feed name. Wildcards are supported. When omitted, returns all feeds. </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>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
          <maml:para>Possible values: Collection, Project, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Role -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Role</maml:name>
        <maml:description>
          <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
          <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
        </maml:description>
        <command:parameterValue required="true">FeedRole</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Reader</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collaborator</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 feed name. Wildcards are supported. When omitted, returns all feeds. </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: Feed -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.Feed</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/Artifact/Get-TfsArtifactFeed</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifactFeedView -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifactFeedView</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifactFeedView</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifactFeedView</maml:name>
        <!-- Parameter: View -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>View</maml:name>
          <maml:description>
            <maml:para>Specifies the view name. Wildcards are supported. When omitted, returns all views. </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: Feed -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the parent feed. </maml:para>
          </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: Role -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Role</maml:name>
          <maml:description>
            <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
            <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
          </maml:description>
          <command:parameterValue required="true">FeedRole</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Administrator</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collaborator</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
            <maml:para>Possible values: Collection, Project, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</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>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: View -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>View</maml:name>
        <maml:description>
          <maml:para>Specifies the view name. Wildcards are supported. When omitted, returns all views. </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: Feed -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the parent feed. </maml:para>
        </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>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
          <maml:para>Possible values: Collection, Project, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Role -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Role</maml:name>
        <maml:description>
          <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
          <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
        </maml:description>
        <command:parameterValue required="true">FeedRole</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Administrator</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collaborator</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 parent feed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: FeedView -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedView</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/Artifact/Get-TfsArtifactFeedView</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifactVersion -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifactVersion</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifactVersion</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more artifact feeds. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifactVersion</maml:name>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>Specifies the version to return. Wildcards are supported. When omitted, returns all versions of the specified package. </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: Artifact -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1" aliases="Package">
          <maml:name>Artifact</maml:name>
          <maml:description>
            <maml:para>Specifies the package (artifact) 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: Feed -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the feed 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: IncludeDeleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDeleted</maml:name>
          <maml:description>
            <maml:para>Includes deletes packages 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: IncludeDelisted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDelisted</maml:name>
          <maml:description>
            <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</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: ProtocolType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProtocolType</maml:name>
          <maml:description>
            <maml:para>Returns only packages of the specified protocol type. </maml:para>
          </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: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>Specifies the version to return. Wildcards are supported. When omitted, returns all versions of the specified package. </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: Artifact -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1" aliases="Package">
        <maml:name>Artifact</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) 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="true" globbing="false" pipelineInput="true (ByValue)" position="1" aliases="Package">
        <maml:name>Package</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. </maml:para>
          <maml:para>This is an alias of the Artifact 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: Feed -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the feed 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: IncludeDeleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDeleted</maml:name>
        <maml:description>
          <maml:para>Includes deletes packages 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: IncludeDelisted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDelisted</maml:name>
        <maml:description>
          <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProtocolType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProtocolType</maml:name>
        <maml:description>
          <maml:para>Returns only packages of the specified protocol type. </maml:para>
        </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: 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 package (artifact) name. </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: PackageVersion -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.PackageVersion</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/Artifact/Get-TfsArtifactVersion</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: Remove-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>Remove-TfsGitBranch</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGitBranch</command:noun>
      <maml:description>
        <maml:para>Removes from one or more branches from a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGitBranch</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" 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. </maml:para>
          </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: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" 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. </maml:para>
        </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="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. </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 a branch in the supplied Git repository. Wildcards are supported. </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/Remove-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: Set team settings -->
      <command:syntaxItem tfscmdlets:parameterSet="Set team settings">
        <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: 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: 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 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: 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: 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: 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: 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: 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: Project -->
        <command:parameter required="true" 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>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml: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="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </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/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: 4/9/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.3.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-TfsArtifact', 'Get-TfsArtifactFeed', 'Get-TfsArtifactFeedView', 
               'Get-TfsArtifactVersion', '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-TfsGitBranch', 
               '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.Feed.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Gallery.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Packaging.Shared.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.UPack.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.Feed.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Gallery.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Maven.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Npm.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.NuGet.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.PyPi.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.UPack.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 = @{

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

    #Branch of this module
    Branch = 'main'

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

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

    #Commit of this module
    Commit = 'f10d5b918a5f5746dc4724ea4cb7de15bc1da612'

    #Desktop of this module
    Desktop = 'net471'

    #Build of this module
    Build = '2.3.1+2724.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'
Set-Alias -Name 'itfs' -Value 'Invoke-TfsRestApi'
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