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

71

Last Update:

10 Sep 2021

Package Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

Tags:

tfscmdlets tfs vsts powershell azure azuredevops devops alm teamfoundationserver

TfsCmdlets

This is not the latest version of TfsCmdlets available.

  • 1
  • 2
  • 3

2.1.2 | Updated: 10 Sep 2021

Downloads:

4,209

Downloads of v 2.1.2:

71

Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

TfsCmdlets 2.1.2

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.1.2'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator TheCakeIsNaOH on 10 Sep 2021.

Description

PowerShell Cmdlets for Azure DevOps and Team Foundation Server


tools\LICENSE.txt
The MIT License (MIT)

Copyright (c) 2014 Igor Abade de Vasconcellos Leite

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

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

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

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

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

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

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

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

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

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

## Our Pledge

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

## Our Standards

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

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

Examples of unacceptable behavior by participants include:

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

## Our Responsibilities

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

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

## Scope

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

## Enforcement

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

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

## Attribution

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

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

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

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

## We Develop with Github

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

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

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

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

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

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

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

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

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

**Great Bug Reports** tend to have:

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

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

## License

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

## References

This document was adapted from the [Gist](https://gist.github.com/briandk/3d2e8b3ec8daf5a27a62#file-contributing-md) contributed by [Brian A. Danielak](https://github.com/briandk), who in turn adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/a9316a723f9e918afde44dea68b5f9f39b7d9b00/CONTRIBUTING.md)
tools\TfsCmdlets\Lib\Core\Ben.Demystifier.dll
md5: D6E307032DD0A91A609FA328E8F3EDFD | sha1: 606949ADBC183A2450C8C76A59D2F513F9D501BD | sha256: E34379F2A5609B8190A820F5425D9779CA30206529A70ABBB8AA07337D2AB586 | sha512: A5CC0BD3EFE5BB87A66AF6A6057D57AF8AF571A65B573A678EDF9A067B4C801436D900ED5B536EEC689E47F484CF43F438C98084E62AA5F840F1974E0EB04FB3
tools\TfsCmdlets\Lib\Core\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 29835123F1CDB7DC41AA82113A72B23C | sha1: 691272EB55730B5582A715A4A2E36AA8A5F821CF | sha256: E6F34EBA852A519ACB80C36A62CD19AFB3C158046CDFFDC68478567CA3EA8889 | sha512: B95530C0837B1BD90A05E534F408EC4AD0A647F3721720789ECA6E3CC7456D8B475600BDCFCB46AA2904236F78B074B2718874FDF899416C7C485B56D5706443
tools\TfsCmdlets\Lib\Core\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 626483D8E907E1ACA11B407C2C623E39 | sha1: B2E91B492AE3FDDBE1F686C3A2D77C01510659AB | sha256: FD7D843740F4AF1778CB6234974D641C0D14AF0E59C233DD5355422A40E7D154 | sha512: 16EA1339866D6D398F80087972182AF39431AFBF217F35203F35969EE1B8E0779A78291F34F0249A6BCC1211F6EE1663BCE83EBAFF69C7082AB29C9C159FB4C1
tools\TfsCmdlets\Lib\Core\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 380EEDC2478F8EA11B8E16DEB8CFE8C1 | sha1: 1CC8CE351C5B54E4A0B78BE8342D2C2EB084A935 | sha256: F140F286B246F0B7B5E965436A25749EE18F0FDF419D9437664F03F2F0D4B335 | sha512: C3830BC367D82CD934EC7AAB03C3C844937B83F8A9464C0408D4D9601FC71B2559E30C9F4CAFF26EE9E4317BB80CCE3E6E060D148C262E3AA4737ED851E43AC4
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: FA6B58150CEA7E42EEE203261A58D2EC | sha1: CD56D6FE3FC1A7A1473D07533F7C77AB047F3BCD | sha256: 6E8E3D6C407ED8BFA3F9015121F50E6F0E3E0E87FE9EF2BD72988358970EA220 | sha512: 5E29A5FC5378433BBBFC8DFF5A5523D5F5527654720DDD0ECF0EC8020AB017E9855988A4289DAFCEF1867BE2B1E728E3686E458A4D7E88AF1152F1A7C8E2A5A2
tools\TfsCmdlets\Lib\Core\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 83879F3D4CAD59E31EB3D1276BCD8B83 | sha1: 9418A5A39B96E126B5CA545F830B3E63849712AE | sha256: A16E4BE9AEBA10D8681C72059CEFF58400DD8D019BDF2547BD45FFF5C0429D9C | sha512: C4A8B90044B43404023EBA503EDDE99C7E867E212BC0BD5EE6AAD441D14DF286D2CCB77F5E30619036AA18CC23BF8C8DA68563A30FF6ED2153F8AD6913B8E4F3
tools\TfsCmdlets\Lib\Core\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: F05997B73C9BB73B5647B39146423BFF | sha1: 0093620358873E768EF40E24BD38D773D8EDC4EB | sha256: 467AA3B0089E3066BAB8351F6A92130D6CE55A876FE9B00037F94A0449E513C4 | sha512: 689A5EE9CB5B01CC575ACD621C41F0371D2F61F47768D16D317874CA1A5FDED10DA4F77B2E85CE5266F227CB3BA0D8103F95E07224EC45375EBCC23A4E1BF6C7
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 14DF55E00F26E06ECD898EDCD05ACAF0 | sha1: C41D101DB73344E63B8F566E2CC303BCE854AC10 | sha256: C3C5A6ADFE890D2D771AE24A47FCF954B239CB39C7D15AEBA847093D369364D4 | sha512: AB6DBD7D173671558EDB7A000A140C13398B5511296B561C7A314269AEBD0A7D5BBEF1C784F55A9CC1727AA221622DF1FA7575C7103041E437F2572786076704
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll
md5: E66A717BA4512F2E100C93D7D9ED03AB | sha1: 80520CAC2A247518352A7E4859949E7B942283F1 | sha256: 595D3A3E951F5D92A9C01DE0A1A9F1BE5DA0E62590A798D8D5D41EEC3E65E749 | sha512: D668C0A744E673AF67FBA14915E03FABFDF66479C1F2B3D494159750D4F22BB6BFEB379D1F91A2764FE63D4BA7B93C0A16846C6275371960F7C5549BFCD112FC
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: 043D231FF6B896C95A6E393096E6317A | sha1: F7CCECCCAF51C40FBC3CF9A79E3626EC98931A92 | sha256: 979A2A929F2D8CC4B1E565C686D18B994C1D257A5A1991B3BCD6B1717343B613 | sha512: 0318C5A46A66373DCFEBC669CEE6A9E5D374C7B2C1E3C59DF69E13AAA88EABD97461DD37A3FEC04EA1DE4DF965CB65FC56A7916AEB007B4A1913CF5A98BA9196
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Common.dll
md5: C97F34A06A74555B4402E4DD2D907E27 | sha1: 10F1D14858322C311A91998ADA8A0E11A5AE0698 | sha256: EDCC5C8EBDCB0A6D2315AB46085B583D4225F670225C68C5F7A6AD835B793B8D | sha512: 96E27C466C2ED67D1615CA64F38DA961EA7E8A87933A0414B487C23B0D5374327E227B9DD15178F3AC943917303048BAF38C77A55E2DF03546A65C5D98FEBAB7
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 516D5239D8495F3221A41036FD626E52 | sha1: 4B7AB34A1B8C7D28D4F338773D95B44D87452041 | sha256: 8C37DEF4E786AAD9610DCD215580BBD9B8F1C70439DF62616B7FACD31418EB7C | sha512: 1BF1AFFC78A15DD579959B9625A71569953EFD155F037D43ED58C4C1A99DCA406459A0F927EBCADA3687D29470E1BBDAC74AD0DA564C53052CD0ED95E879F1D2
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 2F9038072E5ABAC0053ABD0480354646 | sha1: 5FDB30432E8C4E404DAF934CEDFFAD538F41A7BF | sha256: 76F58EF716974FA3AF50A155D341144160F5722AB9488B8CE6C46D5BBF113765 | sha512: F3AA10905D8174303ABB36D67872E31529BFE11D711E39270FB63CBF32A0BBF5A3EAB50EE4743CDA908CE5D23460F7DDD9572BA2BC93DAA07896BAEAA2429BA2
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: 2370D9FD4A4FE0B9F63C0D5CF5A0B08B | sha1: 77F08EACBDF8A233B137AC6CDA38C40BC0EB48DC | sha256: B24EC6F6280AD7CF7817C886E2E101FA9A7F21652E865A350DC815E711001CC2 | sha512: 0FBBA1821425AC680F3F09DCF9A050C937A8229A5C52A316995B058B08773B76A008A2C2382A6902D357388EDC2F6DEA04EE420CEEA41D9F21B9ECA55344EBAE
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 5E5952F522D53406183645D4C9536069 | sha1: 5BD67AA8F66B96885CE09BBC418B0D207877E8B3 | sha256: 6EBB43EE552D93D859CD427D5654FB57F474A7CF0852251376B921A7887351BF | sha512: CB2D90521C6AADB5F24B409368D58E95DFF4C7F672DC815ABF34A1F6F4A7628DDAD9A4A75E45D230BAD491418BF7820C7EE76986664940C2EBCEB7500C326555
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: D7C92B491D661C696E68DA3A9146FA5A | sha1: E9715280FE43B1A04E15D154FF02184564217423 | sha256: 7939E6E02809BFD63FA509625FE385E1D3DBF41BB5545E4B9030C01E0888E687 | sha512: 8CF1AEE30258FCCC930001C87097BF73E1CE37528AD4C2927754E71D406FFE00501C0E06971497C420C394B0C4A4084D8A19075E5D3A7652323683AF7C0C9368
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll
md5: 2BE563335BE02D844392FFB5FD4FD178 | sha1: 1727737F584EE69B3CBF9BD1565E28520EF8CAFF | sha256: 1B702E64A42D90EE042E52F7E7B3DFD4026AB2708787B87E1C81B8E748115742 | sha512: BCFE37768763FE45B5EFBE59D492E341A5F3E0547A31E27BF723663DED4B7F8C158B8743AB3B02E618B61C5008489C9B9973DD498A93C0A58E21801F7705E0C7
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 5EC9883C564759DAA8F28E607EEA6700 | sha1: 40B439630075C084626CCC8814E34227CC905ACD | sha256: 12C8C931A06BB0DCBAA15EB32077B5485D2701E3EE3968651E8EE70B35DE3E30 | sha512: 1150019289F49C7FBBCE8F275C0EEC108807015490E481D9348998B7A1FF023AD88C0AEE2903ECC311DEFDA95FF214E6C15428906711BE8A2257275F2A4223CD
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: B21771B79E07917559C16D8587A858C8 | sha1: 80A38C7D6011F725963FC621BFBA0D52446CFD98 | sha256: 7DBE76E81D4AF5EFFDFAC1689D1775920925C822223A1872AEF5029F8AB1B53B | sha512: DA3211C0F4AEF5AEF739E9701DC4982CE14201A35E5845254DD22F2775A4222842F1925DA3B9CC2E64FE7309F47999F86AF0ADDCF71EC2F46C799D155CFA59F7
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll
md5: AB54228681F27C6FA2D403CD62E8750F | sha1: 8F3B97B940143DD2FD017EDAF4E86AC537D15D90 | sha256: EB43D65C99E425468BA1839FE30645E11E6AA14C01C3168935F67D64FFB7B5EA | sha512: A016824061141F321BC8F02DE66F089B77394A03B9057337A745A998515F9A0307BC45D1EC2F478BEA111DA8ACDAF0A91C069A01ACFD1E64EFF2EF3D15920144
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 4702B06F350E5F4AA05774401F767274 | sha1: B16F0CF855912825F6906318F29F6E82F3E2D84E | sha256: 2E6065C0E96854BB545C69F9B1EF4548224EEAE32F671C22DF642D70D2E96507 | sha512: 48A4D01CD3AF8FF119F29A138425941FFE55D3A7F41B00761256136BC738FD16FD09BA105CDBB0AF67F482F5AD8C6392FB734F1A2ECC0E4F6BE95CF145A5DC68
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: 9BE76A38FD1F659E61BC23E24E29BA71 | sha1: 671BD1ECC14011D45A78AC77B8225A096D472383 | sha256: 2BDA46A5C74D27CA2CB61C41F2901ED29F873F312D1509C3861FCE5B02250381 | sha512: A39817DB690508CA9355EE4E930E43D4F86CB8E560505373DFEE5407264B0C8D9B2E97232B7CF55845F48DBDDDE9BDE99EADB3CAF33931D958149B8DA231E4E3
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: 56D37AF943BB2F43E134E44DEE563A65 | sha1: 1677B20E6D0FF4C0A2F84F1A36719DCBC9BE3012 | sha256: B1177FE7863EBE2AB9FF20BF91320624034645998863282320FE9813F67750EB | sha512: 31717DCBE2BE1048774DEE1E8875D3CCDA87F23827DE0ADE67060B165FE09DA0D184E9A9BDC491D8E4AD1D55BDBE76749BC8204C093A7D0D778954AA0B717530
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Common.dll
md5: AF0E53BB6CF3C9D52992B4A5EEB25CAC | sha1: 23C42BE0C3025D16F7872C97277CEA1E6E1DD5D6 | sha256: 2A013674195E8E57D5D9C0D17923B34A05CDBCFD4E1E6EEE387373960AC8F051 | sha512: 7E81CBB0B217842BEFE8CF30DB3EB5B3508EF38565BB8AB8919ACDC72231A064A552707244DDEB7DE8648734F7732F6C9B8384D7AFD4296C8991304DB6301E68
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 07D8863B90B276AE8B1AE325EABD45DA | sha1: 398F25A6D68E9A00A9AA89098A11BB524A0E39C0 | sha256: B746AEA57E36FB2318CA7637DFE79538F9655D35334B82D33BC7A69C2D22C3BF | sha512: 5A49839EE0D573CD7BDACBAEA627175FBF0732B9DCFF431168E2ABFDB1EDDC92994C1BF2CFE06E62562078954DADBCCF0316AF3BADDF36D9C2A0D6FD172813B3
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: 0A9A4AD882AE01A72F8A5B05511F6F1C | sha1: E136A84EA1262C1467EC7E40BE4B3BC83FC8BAE5 | sha256: 999CB34004EED7B004C8CCC171C490E8E6FB32B3B1F47EFCE249049B118C6320 | sha512: 6590A3041637B21884BF07D285B1EE4D35DB5EDE90D6384DEDED7DA5756F658B6376C5A68FDA8EB846D780B84565C319224CBD469C98917C74949C503481E693
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 127B1020D52AEFAE57B6CB6A181886A1 | sha1: 6925FE969715404997A97E176001C8B9115D5534 | sha256: FE6993B3B60D1330B09EC02503C02F63846BC0F3DFB5C03ECDAD5FCA528CAB43 | sha512: A16755783921F097C42637CCE5AC0663D19F8C79F838D8E9172D1DEF84B93AEC16F2E17E8B8EF04CF375A74D58078B3BA152D8FC318A176D6A16633F5B17B114
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: 20A866BE1DB6F39C8215D7259C011FCA | sha1: 40553E4EA10D867EB484CDCA8B7715BEB20E2920 | sha256: AFFCF52D6C28CEEC8FCFC8514586C16063F3E4F9BF0BFD36DEAD6B2CBAEF5C53 | sha512: 492F1012925ECA4D6B80C4B101D4247A150AF4284F9CED04421AF5A1D9DBAFEA72B9E4886D3180C971B59C03097877294EA9784B1DF9094CC2A3BBE96777D875
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: 3A213BFF806DBCF0CBC085DF3CB9B34C | sha1: 2D9F09AB2C67E11C04313DB13C3FFBB5880BDB5E | sha256: 2F7B12D90D1382D1ED4D3C7EE774FA8FCF02C76546475BC54F3F8D3B9D5D4407 | sha512: C87255C87E250DED3C1DA340559410AE37681D4AA225B06FC68C1397A659D28C8CC3786F84C24E41BAB3836DA96187E9FFFBD8812575185CA149B9AC4AFE3395
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: 6546379B6D71B79A6E2BEBF9A950828E | sha1: 179602717FF4964145947DB4B70A16A7513D76B8 | sha256: 84C1A3B3CA7CE9293EF5FC3BD8326075466CE2D810B1016375F06EAC0F32E1D9 | sha512: 5F93F5E1C0920B6C1AD285F71C119CDC586A6FF68FEF905192710D3AB941C864CED24596F4C7A99AE6156DE320333BEEA396D52DE87AF737075F74C467602A52
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 9C4E1EC9A82425FEB0DC4F68BB9BAAE9 | sha1: B8C51A6BB570ECC4DD3F4EBF30CC2CECE3079307 | sha256: D3A9C597F03055CF879D59345E947BA848BC28C9039ECFDE654E8FD7C2A918F8 | sha512: DCD0D929824B8E41F7E7232B2BE5ABC59AC4E25CF7DAAAFC3C93D68548A99C434C2A35D265102875C66B4A89CCD97DF76D0081C9C86B32A1A258AB232251590D
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll
md5: 4C1D7B7A2B569FA5DB818E36EBA22D1F | sha1: F306EF6E054E5B2C531FC1D0297EFEB91C412F86 | sha256: 1A1268CE6606DEBD151FFA490D886B21D2DC8E1CD10491C987C1D6B3F7C60573 | sha512: 2CE8A5072BA5BD719F2DC98A8E6EBDAF2BE6241B219935C3379E875E69DBC5B7912AE21A53F5D3D90C07F5A31F86561865D50B492F0DE0F9228429DAFA8547A8
tools\TfsCmdlets\Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll
md5: 21910EC12E2B845077ED8DF98D334660 | sha1: 0352075FF89B503DC696905FA00078186CA5971B | sha256: 8E005B82AD9B481865F583E1462E8C125688B9FA6DC8A5956315BAC892C82FC0 | sha512: B5850DAED2E84885081F83F1DA6586A6EAFDAAB952BCA974541A97F64A089A8B1A2F5DDB6714A65D8AB7EE13B07A03D56875820F3094A2B6D2802C7BA62C8DBA
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: CE5EF93E9A2566747523885DA5B83D6C | sha1: D7FBA0039CE0C385144299D2AB4049D55AB03996 | sha256: 45BF5987C53005FB0DDE8F43A1B904A44A705B1F5743213DC2374D1CE4CC9569 | sha512: DC93A3DFCE83424FEC5A428D21E2151D7E92A1641B4FD69FDF2336A57D500522B31BD194094F97AAD7691E00FC3E258424D112C9C68D9A45EC9E1EDDD1F3BC1C
tools\TfsCmdlets\Lib\Core\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
md5: 8F5107F61056ED86F410B8ACF88EC6C0 | sha1: 9FEE5097582BCBB87E6A923BFD37FD0E2EA6AE18 | sha256: EEC579A865371394AD8D8D82EC453C268343D90262DA76AC84D51564AF40CCBC | sha512: 9686173C97DF6D36682493CF6BC6846BCC9967D9DCD520BB45B145B58D097B1C116826158D1196001FA9373FDE6AAAE24A3A13A90F5926764EA5D2417021648F
tools\TfsCmdlets\Lib\Core\runtimes\win-arm64\native\sni.dll
md5: 167136D7A81BCC85ACF4930AA7AC835F | sha1: 1E70240CC820796E78D77B1219291EEE2FB6DBE0 | sha256: EF18458C4DCB93F6B4EAC07E1589CF3450BF878F2DD623F5D34F6A0F1B16E57A | sha512: 2C084142E09AE1B850F8550A55142FBBF996F3DFB122BBCAD4FFFC11A6FDC5417D623683F383C4AC4A35E46EA0D441D82588231093F179FF4601CC598A1C8896
tools\TfsCmdlets\Lib\Core\runtimes\win-x64\native\sni.dll
md5: 7F1799B65B98450A19E4D049E9D3E70D | sha1: EC80C5A33374423A9E986C383A36A97DA70A3584 | sha256: 68705C4EF9AB818F2956A78E05F3FEFCE501A1448793B073B46110BEB49B47D6 | sha512: 8D67297C5CDED487C88FCAAD5A36E80926DAD8F1863E38F397751056F51258AC7B5A9E5C09C01BBA7A224F38FB2EE719586FAF0BA81516E05A19649EB09E7B78
tools\TfsCmdlets\Lib\Core\runtimes\win-x86\native\sni.dll
md5: C62A83F20BC23AEFACE70EC13003C4C5 | sha1: 35553CFCDCBECCDC49710E68AEC495C16880F0BD | sha256: 1446D6B26DA49A5A9F366972F89F4E236F916955F31DDC38EBB96217C1CACE9C | sha512: 4DDA44FD5B538F5DA9E8CB46A3AB1BDC14B43425B9A61249ECCC925D986AF7B8B3548DB9490238F14807909ECF479415117141DDB344119438A59F97E894EA37
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
md5: A8B8C130324DA3E7FAB5CB7F3001EBE8 | sha1: 82379C4C9A81D404369B2B89D74498F1CCE26102 | sha256: 0CBF6D2F6BF55A901D4C5E3971725DA1165599A8ED2E6F134F8292FED43E0DCD | sha512: 4AB0EDFAE0DA0F287EEEA99678A8E9381BE871B8F3166F0E22039874E6016B37D8AB3F1E055B61D0C21987CDD735B12DEEBA4EF7826B8923802C8C79B0A00F7F
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
md5: 91B5141F40E650DF9F24959E002E6C66 | sha1: AC8675F91A4879042ED660C1D800058185552A57 | sha256: 1C73A1B016CFC8D497106EEC08AF07616F2F4C07E4DDC807C9F120CEACD0A53A | sha512: 6E1F88FC7C1ED560C4CA6168FAE9275583C7D664AF1A70F2A0A97A717D4B7E1D40A33F06B2782BB4ADB47AFC8B30B136DC28C0487A9DAEE183D8156DE5E5161B
tools\TfsCmdlets\Lib\Core\System.Configuration.ConfigurationManager.dll
md5: 00999FB817F7FDC8FB8FC30FEEFE82F3 | sha1: 275A2FD10D8463935B1F5ECE7A78A5639C504A3E | sha256: BAC1ACE21A5DE56ED50BEE8CA22FC41BC9DD3328DA777DFC03AA92C3D05DF104 | sha512: 022095FF34F8F30A2848647C0D68F461086A529384F8CD58B7FDA65DF6F1208BC3ECCF71798F0E05D24051993E6B2369B298D64E7E2EDD4E54E2DBF5DA09BD34
tools\TfsCmdlets\Lib\Core\System.Data.SqlClient.dll
md5: 450B029703D4B740F6E0A2930660ABD4 | sha1: 0EA7A1968CB1C639CC767496A6E20B8D3E6F08D7 | sha256: 1A14BFB3D4CDAD50FF71869ACCFAC5A08283A7CB03C03D8BB2D00A728035056C | sha512: 38E8D86A183AAC8F070617D5EA4BB109C79742ADBC8551343F385983446201AAEDFF059926933DBB4E76AE747EC5FC786363DAD80D589BECFB3A766107A8DC4E
tools\TfsCmdlets\Lib\Core\System.IdentityModel.Tokens.Jwt.dll
md5: BEB053CED12524CD30929C39FE042C47 | sha1: 921E59D904D6C8E2BAD5FEB738C01798A83ACD6F | sha256: 64ECBB6C584D9B3394CE519EE75ADEE80D4AB54FFEBAAA8423A08F105B34C9EE | sha512: 739AE832BB78F84BAFDC15AC6F7DE9CBEBE30FCC73F4FDB8829AFDDCD18ED3959FA7665FAEA8160FB75BB4574DE299EB7E0A2D794278C7C121C208CE334E01EB
tools\TfsCmdlets\Lib\Core\System.Net.Http.Formatting.dll
md5: 02E47079A1B45F4FD8142752C91970E3 | sha1: E8016192D0A6738CD075F837109845376B270F14 | sha256: EF32858203F7263AA5767BAE4E94567FA1B3CDEDE214BA87603009C1C17B264F | sha512: 72DD2AED377786C0823DC4DE58A4D6A9E484E766F570E14D5C700003026E834EDA53628E7DAD2AD9DBFCE6706C52C2320900EE4CEEB062BE97A255FB46440918
tools\TfsCmdlets\Lib\Core\System.Security.Cryptography.ProtectedData.dll
md5: D3AD09FBF202167B7E6B5F0E1296380B | sha1: 2C099DB9745C21754B03A4C9AF55213A1A4444F5 | sha256: 81A0385CF1FED22F3153789D4AE1FEE75719F23E72CD543EDBA1AF48926FBF24 | sha512: 0B660A4ACB24D382BBD7058E2A3D21CDD741E7ED0A9D60672B0B667A75E145E229A594D302C78AECB5A729830092BA0117187665F8043A6590F8829D86991395
tools\TfsCmdlets\Lib\Core\System.Xml.XPath.XmlDocument.dll
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
tools\TfsCmdlets\Lib\Core\TfsCmdlets.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "TfsCmdlets/2.1.2.2513": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.191.0-preview",
          "PowerShellStandard.Library": "7.0.0-preview.1",
          "System.IO.Compression.ZipFile": "4.3.0"
        },
        "runtime": {
          "TfsCmdlets.dll": {}
        }
      },
      "Ben.Demystifier/0.1.2": {
        "dependencies": {
          "System.Reflection.Metadata": "1.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/Ben.Demystifier.dll": {
            "assemblyVersion": "0.1.0.0",
            "fileVersion": "0.1.2.14"
          }
        }
      },
      "HtmlAgilityPack/1.6.5": {
        "dependencies": {
          "System.Net.Http": "4.3.4",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XPath.XmlDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/HtmlAgilityPack.dll": {
            "assemblyVersion": "1.6.5.0",
            "fileVersion": "1.6.5.0"
          }
        }
      },
      "Microsoft.AspNet.WebApi.Client/5.2.7": {
        "dependencies": {
          "Newtonsoft.Json": "12.0.3",
          "Newtonsoft.Json.Bson": "1.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
            "assemblyVersion": "5.2.7.0",
            "fileVersion": "5.2.61128.0"
          }
        }
      },
      "Microsoft.CSharp/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
        "dependencies": {
          "Microsoft.CSharp": "4.3.0",
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Private.Uri": "4.3.2",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Json": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
            "assemblyVersion": "5.2.6.0",
            "fileVersion": "5.2.6.0"
          }
        }
      },
      "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Logging/5.6.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Tokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Logging": "5.6.0",
          "Newtonsoft.Json": "12.0.3",
          "System.Security.Cryptography.Cng": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.NETCore.Platforms/2.0.0": {},
      "Microsoft.NETCore.Targets/1.1.3": {},
      "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.191.0-preview": {
        "dependencies": {
          "Microsoft.VisualStudio.Services.Client": "16.191.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          }
        }
      },
      "Microsoft.TeamFoundationServer.Client/16.191.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.191.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.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.Pipelines.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Client/16.191.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Newtonsoft.Json": "12.0.3",
          "System.Configuration.ConfigurationManager": "4.4.1",
          "System.Data.SqlClient": "4.4.2",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.ProtectedData": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1",
          "System.Xml.XPath.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.191.31623.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.InteractiveClient/16.191.0-preview": {
        "dependencies": {
          "Ben.Demystifier": "0.1.2",
          "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
          "Microsoft.VisualStudio.Services.Client": "16.191.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.191.31623.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Release.Client/16.191.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.191.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.191.31623.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Search.Client/16.191.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.191.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.191.31623.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.191.31623.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.191.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.191.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.191.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.191.31623.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.191.0-preview": {
        "dependencies": {
          "HtmlAgilityPack": "1.6.5",
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.191.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll": {
            "assemblyVersion": "18.0.0.0",
            "fileVersion": "18.191.31623.1"
          }
        }
      },
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Security.AccessControl": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1"
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Sockets": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "Newtonsoft.Json.Bson/1.0.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.1.20722"
          }
        }
      },
      "PowerShellStandard.Library/7.0.0-preview.1": {},
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "dependencies": {
          "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
        }
      },
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-arm64/native/sni.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-x64/native/sni.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-x86/native/sni.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Collections.NonGeneric/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections.Specialized/4.3.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.ComponentModel/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.Annotations/4.4.1": {},
      "System.ComponentModel.Primitives/4.3.0": {
        "dependencies": {
          "System.ComponentModel": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.TypeConverter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Configuration.ConfigurationManager/4.4.1": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.25921.2"
          }
        }
      },
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Data.SqlClient/4.4.2": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1",
          "System.Text.Encoding.CodePages": "4.4.0",
          "runtime.native.System.Data.SqlClient.sni": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Data.SqlClient.dll": {
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        },
        "runtimeTargets": {
          "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          },
          "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        }
      },
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Dynamic.Runtime/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IdentityModel.Tokens.Jwt/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Linq.Expressions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Net.Http/4.3.4": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Net.Sockets/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.ObjectModel/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Private.DataContractSerialization/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        }
      },
      "System.Private.Uri/4.3.2": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Metadata/1.5.0": {},
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Runtime.Numerics/4.3.0": {
        "dependencies": {
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Formatters/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Json/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Private.DataContractSerialization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Primitives/4.3.0": {
        "dependencies": {
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Security.AccessControl/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Security.Principal.Windows": "4.4.1"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.Cng/4.5.0": {},
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Security.Cryptography.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.OpenSsl/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.4.0": {
        "runtime": {
          "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        }
      },
      "System.Security.Cryptography.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Principal.Windows/4.4.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Security.SecureString/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Xml.ReaderWriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlSerializer/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        }
      },
      "System.Xml.XPath/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XPath.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      }
    }
  },
  "libraries": {
    "TfsCmdlets/2.1.2.2513": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Ben.Demystifier/0.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-72yB6sCgTKX6Wv3pZnbkANJrC4JzxPnss4LuaUpIeRiiIrfWKJw6/DNaFUYAckx6EluP3YydHreIvJT9tnljJA==",
      "path": "ben.demystifier/0.1.2",
      "hashPath": "ben.demystifier.0.1.2.nupkg.sha512"
    },
    "HtmlAgilityPack/1.6.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uBXgK1zsIin+X2BYCy8KPDwafRet+Ja9yUJWdnc5ATlQBHrK4goe6DTAOaEE41IceaAH1OYTHgSpyvXqhX66rQ==",
      "path": "htmlagilitypack/1.6.5",
      "hashPath": "htmlagilitypack.1.6.5.nupkg.sha512"
    },
    "Microsoft.AspNet.WebApi.Client/5.2.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==",
      "path": "microsoft.aspnet.webapi.client/5.2.7",
      "hashPath": "microsoft.aspnet.webapi.client.5.2.7.nupkg.sha512"
    },
    "Microsoft.CSharp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
      "path": "microsoft.csharp/4.3.0",
      "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z+RMsrkkaEYR+obg9G8Nr2C9HZZAcmzCMqvBAmY94DhCJCW5KxAHyTZjlYBM6fx5tC7blFtYRDogvb0EtTwJMQ==",
      "path": "microsoft.identitymodel.clients.activedirectory/5.2.6",
      "hashPath": "microsoft.identitymodel.clients.activedirectory.5.2.6.nupkg.sha512"
    },
    "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
      "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
      "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Logging/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
      "path": "microsoft.identitymodel.logging/5.6.0",
      "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Tokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
      "path": "microsoft.identitymodel.tokens/5.6.0",
      "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
      "path": "microsoft.netcore.platforms/2.0.0",
      "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
      "path": "microsoft.netcore.targets/1.1.3",
      "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
    },
    "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gt8OxZfwomLxUCKuCbX3aLEr2lW5ohPQExaxCIawSGhCmrF7L7NlC/XVYgwsDQw6SAGHVqM76UC/P61AM87jwQ==",
      "path": "microsoft.teamfoundation.distributedtask.common.contracts/16.191.0-preview",
      "hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.TeamFoundationServer.Client/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-i11HbdIhyXI+A0ZQXXhzsOZvbsRkVDCnR2XOlUek2h4FCx5B3y+rl1tttwmH5R0yRF063+FFzumwYlE1197PoA==",
      "path": "microsoft.teamfoundationserver.client/16.191.0-preview",
      "hashPath": "microsoft.teamfoundationserver.client.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Client/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-S4JSL1ah2t6myxOmLmPJ/2vgYP035DwZM+jcmsQ771PsdM4oZIU6zbMQiKxOtQz04/kE/PuPr+Tfy+A3b4ed9w==",
      "path": "microsoft.visualstudio.services.client/16.191.0-preview",
      "hashPath": "microsoft.visualstudio.services.client.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.InteractiveClient/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PTQDL8mYIsPNPaP1vfFjTsLagPYjfwexeLFHQacUFkj9EyBHrXUF5BIHHz0L85QcGmbFI+kk4+VjW7jEKMSxaQ==",
      "path": "microsoft.visualstudio.services.interactiveclient/16.191.0-preview",
      "hashPath": "microsoft.visualstudio.services.interactiveclient.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Release.Client/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IdOxAgOiCsleZibsNuUSh0DMhZrUWAxgWv8JCBVxQHqV0whkrSDi79Z+TnO5RdgdI+ahdHCF6QZexCrR/vONBg==",
      "path": "microsoft.visualstudio.services.release.client/16.191.0-preview",
      "hashPath": "microsoft.visualstudio.services.release.client.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Search.Client/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-biHomNYXTKZt73OuJnwqqZKr9mymfEcl5hzNplQ28RJOVNksHZ2XsoNW9SgM/YaCZCk2jFwZhN/L1o6gb42/Vw==",
      "path": "microsoft.visualstudio.services.search.client/16.191.0-preview",
      "hashPath": "microsoft.visualstudio.services.search.client.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-unEm2/dUQqlRWsDv77nyixmyUMtK5y7MdERFBvnqOui6rnfTJrW1Ym8cOvHPb1Fg45L2U62AgTkzWWyDCtklmw==",
      "path": "microsoft.visualstudio.services.serviceendpoints.webapi/16.191.0-preview",
      "hashPath": "microsoft.visualstudio.services.serviceendpoints.webapi.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.191.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iQQU0rkSAhbrOvmvjXZTuH4RBp4S/k+0NGU2QIL5V+LULzZSrIZgLH1wiWvFSZEFNHEXa7/Z4BNOycIK/wlMUg==",
      "path": "microsoft.visualstudio.services.servicehooks.webapi/16.191.0-preview",
      "hashPath": "microsoft.visualstudio.services.servicehooks.webapi.16.191.0-preview.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
      "path": "microsoft.win32.registry/4.4.0",
      "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
    },
    "NETStandard.Library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
    },
    "Newtonsoft.Json/12.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
      "path": "newtonsoft.json/12.0.3",
      "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
    },
    "Newtonsoft.Json.Bson/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
      "path": "newtonsoft.json.bson/1.0.1",
      "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
    },
    "PowerShellStandard.Library/7.0.0-preview.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vd2iKiQjgB/Lh3270aMgdq/NdVq/qNHsLM8P7k/oD3hALG1UOzePa62TOSK6RlQClfXW1xI9Y1e+haHlUkF3PA==",
      "path": "powershellstandard.library/7.0.0-preview.1",
      "hashPath": "powershellstandard.library.7.0.0-preview.1.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.native.System/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
      "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
      "path": "runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Net.Http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
      "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
      "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
      "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.Concurrent/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "System.Collections.NonGeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
      "path": "system.collections.nongeneric/4.3.0",
      "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
    },
    "System.Collections.Specialized/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
      "path": "system.collections.specialized/4.3.0",
      "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
      "path": "system.componentmodel/4.3.0",
      "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.Annotations/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ToiYqSCioqhtspq2O/jYKtyTC/T0uwWHBTYlzCi6PRbSSHArN1IaRWeHffDamvms5sye5FDUWCfNZgubQpNRsA==",
      "path": "system.componentmodel.annotations/4.4.1",
      "hashPath": "system.componentmodel.annotations.4.4.1.nupkg.sha512"
    },
    "System.ComponentModel.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
      "path": "system.componentmodel.primitives/4.3.0",
      "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.TypeConverter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
      "path": "system.componentmodel.typeconverter/4.3.0",
      "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
      "path": "system.configuration.configurationmanager/4.4.1",
      "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
    },
    "System.Console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
      "path": "system.console/4.3.0",
      "hashPath": "system.console.4.3.0.nupkg.sha512"
    },
    "System.Data.SqlClient/4.4.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Bv5J2EBAdP7FSgehKYN4O6iw1AaZrw4rFFqwt9vZSjRvC70FpwP2d9UG4aTaI2wh3vfrBKK+tjewowGM2Y6c1w==",
      "path": "system.data.sqlclient/4.4.2",
      "hashPath": "system.data.sqlclient.4.4.2.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
      "path": "system.diagnostics.diagnosticsource/4.3.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
      "path": "system.diagnostics.tools/4.3.0",
      "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
      "path": "system.diagnostics.tracing/4.3.0",
      "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "System.Dynamic.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
      "path": "system.dynamic.runtime/4.3.0",
      "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
      "path": "system.globalization.calendars/4.3.0",
      "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
      "path": "system.globalization.extensions/4.3.0",
      "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
    },
    "System.IdentityModel.Tokens.Jwt/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
      "path": "system.identitymodel.tokens.jwt/5.6.0",
      "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
      "path": "system.io.compression/4.3.0",
      "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression.ZipFile/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
      "path": "system.io.compression.zipfile/4.3.0",
      "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Linq.Expressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
      "path": "system.linq.expressions/4.3.0",
      "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
    },
    "System.Net.Http/4.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
      "path": "system.net.http/4.3.4",
      "hashPath": "system.net.http.4.3.4.nupkg.sha512"
    },
    "System.Net.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
      "path": "system.net.primitives/4.3.0",
      "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
    },
    "System.Net.Sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
      "path": "system.net.sockets/4.3.0",
      "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
    },
    "System.ObjectModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
      "path": "system.objectmodel/4.3.0",
      "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
    },
    "System.Private.DataContractSerialization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
      "path": "system.private.datacontractserialization/4.3.0",
      "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
    },
    "System.Private.Uri/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
      "path": "system.private.uri/4.3.2",
      "hashPath": "system.private.uri.4.3.2.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.Lightweight/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
      "path": "system.reflection.emit.lightweight/4.3.0",
      "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Metadata/1.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
      "path": "system.reflection.metadata/1.5.0",
      "hashPath": "system.reflection.metadata.1.5.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
      "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
      "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Numerics/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Formatters/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
      "path": "system.runtime.serialization.formatters/4.3.0",
      "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Json/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
      "path": "system.runtime.serialization.json/4.3.0",
      "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
      "path": "system.runtime.serialization.primitives/4.3.0",
      "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.AccessControl/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
      "path": "system.security.accesscontrol/4.4.0",
      "hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Algorithms/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
      "path": "system.security.cryptography.algorithms/4.3.0",
      "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
      "path": "system.security.cryptography.cng/4.5.0",
      "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Csp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
      "path": "system.security.cryptography.csp/4.3.0",
      "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
      "path": "system.security.cryptography.encoding/4.3.0",
      "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.OpenSsl/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-is11qLXIHKIvbTipyB1an8FT1ZKavmgf/qJUSIz7ZP830ALRRhPSt5NhplW0/wMk0tNDQWQLluVap6HsQN4HMg==",
      "path": "system.security.cryptography.openssl/4.4.0",
      "hashPath": "system.security.cryptography.openssl.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
      "path": "system.security.cryptography.protecteddata/4.4.0",
      "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.X509Certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-h3ah5DRH1dD0WbtLVZrLAUkkMYL9N3gQ/qrJuc65GzyR4hsaPD0YjEwmpu5+2tNT8BQktW5xw7KlgoY83jqd7w==",
      "path": "system.security.principal.windows/4.4.1",
      "hashPath": "system.security.principal.windows.4.4.1.nupkg.sha512"
    },
    "System.Security.SecureString/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
      "path": "system.security.securestring/4.3.0",
      "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
      "path": "system.text.encoding.codepages/4.4.0",
      "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "System.Xml.ReaderWriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "System.Xml.XDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlSerializer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
      "path": "system.xml.xmlserializer/4.3.0",
      "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
      "path": "system.xml.xpath/4.3.0",
      "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
      "path": "system.xml.xpath.xmldocument/4.3.0",
      "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
    }
  }
}
tools\TfsCmdlets\Lib\Core\TfsCmdlets.dll
md5: 44A260548CB9264F0A583ABB52F4B50A | sha1: C761EA640AD08F4428ABE715F862461E5911881F | sha256: CE956EE31210EE2025233EB93D13D1462C9D7DE6DD7BB628AA17D660E535BC2D | sha512: F377F4B18FB677B55B7A1A66C9099344A347C96F1A0D4BC600080A2D1B828D264796BEB23247849C29ED3416CCD4452B5D5AA4558F06A3222BF79635A5E2BC63
tools\TfsCmdlets\Lib\Core\TfsCmdlets.pdb
 
tools\TfsCmdlets\Lib\Core\TfsCmdlets.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>TfsCmdlets</name>
    </assembly>
    <members>
        <member name="T:TfsCmdlets.AssemblyResolver">
            <summary>
            This class is used to resolve TfsCmdlets assemblies in runtime.
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
            <summary>
            Mantains a list of all assemblies stored in the /Lib folder of this module to support 
            on-demand assembly resolving and loading
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.Register">
            <summary>
            Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and 
            loads the list of private assemblies to the Assemblies dictionary
            </summary>
        </member>
        <member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
            <summary>
            Represents a private assembly
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
            <summary>
            Creates an instance from an assembly name and its file path
            </summary>
            <param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
            <param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
            <summary>
             Assembly name
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
            <summary>
            Full path to assembly file
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
            <summary>
            Indicates whether this assembly has already been loaded by the Assembly Resolver
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
            <summary>
            The actual assembly represented by this instance. If the assembly wasn't previously
            loaded, it will be read from disk and returned to the caller
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection">
            <summary>
            Detaches a team project collection database from a Team Foundation Server installation.
            </summary>
            <remarks>
            Before you move a collection, you must first detach it from the deployment of TFS on which 
            it is running. It's very important that you do not skip this step. When you detach a collection, 
            all jobs and services are stopped, and then the collection database is stopped. In addition, 
            the detach process copies over the collection-specific data from the configuration database 
            and saves it as part of the team project collection database. This configuration data is what 
            allows the collection database to be attached to a different deployment of TFS. If that data is 
            not present, you cannot attach the collection to any deployment of TFS except the one from which 
            it originated. If detachment succeeds, this cmdlets returns the original database connection string. 
            It is required to re-attach the collection to TFS.
            </remarks>
            <example>
              <code>Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</code>
              <para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</para>
            </example>
            <related>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</related>
            <notes>
            Detaching a collection prevents users from accessing any projects in that collection.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Collection">
            <summary>
            Specifies the collection to detach.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Reason">
            <summary>
            Speficies a Servicing Message (optional), to provide a message for users who might try 
            to connect to projects in this collection while it is offline.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the detach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection">
            <summary>
            Attaches a team project collection database to a Team Foundation Server installation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Collection">
            <summary>
            Specifies the name of the collection to attach. It can be different from the original 
            name - in that case, it is attached under a new name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Description">
            <summary>
            Specifies a new description for the collection. When omitted, it retains the original description.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseServer">
            <summary>
            Specifies the name of the SQL Server instance where the database is stored.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseName">
            <summary>
            Specifies the name of the collection database.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.ConnectionString">
            <summary>
            Specifies the connection string of the collection database.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.InitialState">
            <summary>
            Specifies whether the collection will be started ou stopped after being attached. 
            When omitted, the collection is automatically started and goes online after being attached.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Clone">
            <summary>
            Changes the internal collection IDs upon attaching to that a "clone" of the original 
            collection can be attached to the same server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.PollingInterval">
            <summary>
            Specifies the polling interval (in seconds) to get an updated status from the server. 
            When omitted, defaults to 5 seconds.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the attach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection">
            <summary>
            Starts an offline team project collection and make it online.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection">
            <summary>
            Stops a team project collection and make it offline.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection">
            <summary>
            Gets one or more Team Project Collection addresses registered in the current computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
            <summary>
            Returns the team project collection specified in the last call to 
            Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.ComputerName">
            <summary>
            Specifies the name of a Team Foundation Server application tier from which to 
            retrieve the connection string.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
            <summary>
              Gets the installation path of a given Team Foundation Server component.
            </summary>
            <remarks>
             Many times a Team Foundation Server admin needs to retrieve the location where 
             TFS is actually installed. That can be useful, for instance, to locate tools like 
             TfsSecurity or TfsServiceControl. That information is recorded at setup time, 
             in a well-known location in the Windows Registry of the server where TFS is installed.
            </remarks>
            <example>
              <code>Get-TfsInstallationPath -Version 2017</code>
              <para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
            </example>
            <example>
              <code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
              <para>Gets the location where the SharePoint Extensions have been installed in the remote 
                    server SPTFSSRV, prompting for admin credentials to be used for establishing a 
                    PS Remoting session to the server</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
            <summary>
            Indicates the TFS component whose installation path is being searched for. 
            For the main TFS installation directory, use BaseInstallation. When omitted, 
            defaults to BaseInstallation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer and also 
            the permission to access the Windows Registry.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
            <summary>
              Gets the version information about Team Foundation / Azure DevOps servers and 
              Azure DevOps Services organizations.
            </summary>
            <remarks>
            The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. 
            When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
            <summary>
              Gets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. 
            
              Registry entries can be scoped to the server, to a collection or to a specific user. 
            </remarks>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
            <summary>
              Sets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the 
              value specified in the command.
            </remarks>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
            <summary>
            Specifies the new value of the Registry key. To remove an existing value, 
            set it to $null
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.StartIdentitySync">
            <summary>
              Triggers an Identity Sync server job.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Wait">
            <summary>
            Waits until the job finishes running. If omitted, the identity sync job will run asynchronously.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.CmdletBase">
            <summary>
            Abstract class from which all TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.Provider">
            <summary>
            The service provider injected in this cmdlet instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.CommandName">
            <summary>
            Returns the PowerShell command name of this cmdlet
            </summary>
            <value>The name of the this, as defined by the [Cmdlet] attribute. If the attribute is missing, returns the class name.</value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.BeginProcessing">
            <summary>
            Performs initialization of the command execution, logs the supplied parameters and check whether the current 
            this is tagged as "Windows-only". If so, throws an exception
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ProcessRecord">
            <summary>
            Performs execution of the command. 
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="variables">Variables passed to the script</param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript``1(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <typeparam name="T">The expected type of the objects outputted by the script</typeparam>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetServer(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "server" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsConfigurationServer (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollection(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "collection" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsTeamProjectCollection (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionAndProject(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connection and a TeamProject objects, built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object) and an instance of TeamProject</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionProjectAndTeam(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connectionn, a TeamProject and a WebApiTeam objects, built from the arguments 
            currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object), an instance of TeamProject and an instance of WebApiTeam</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetClient``1(TfsCmdlets.ClientScope,TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns an API Client from the underlying connection
            </summary>
            <param name="scope">The scope from which to retrieve the client. Supported scopes are Server, Collection</param>
            <param name="overridingParameters">If specified, the values in this parameter will override the values originally supplied to the cmdlet</param>
            <typeparam name="T">The type of the API client</typeparam>
            <returns>An instance of the requested API client</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetService``1">
            <summary>
            Returns an instance of the specified service
            </summary>
            <typeparam name="T">The type of the requested service.static Must derive from IService</typeparam>
            <returns>An instance of T, as provided by the current service provider</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItem``1(System.Object)">
            <summary>
            Gets one item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.TestItem``1(System.Object)">
            <summary>
            Checks if specified item exists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItems``1(System.Object)">
            <summary>
            Gets one or more items of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.NewItem``1(System.Object)">
            <summary>
            Creates a new item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RemoveItem``1(System.Object)">
            <summary>
            Removes an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RenameItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.SetItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCurrentDirectory">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ResolvePath(System.String,System.String)">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.WriteItems``1(System.Object)">
            <summary>
            Outputs items to PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.Log(System.String,System.String,System.Boolean)">
            <summary>
            Log a message
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.LogParameters">
            <summary>
            Log the parameters passed to the cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckWindowsOnly">
            <summary>
            Check whether the currently executing environment is Windows PowerShell
            </summary>
            <throws>For cmdlets which are "Windows-only", a call to this method will throw a 
                NotSupportedException when running on PowerShell Core.</throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckRequiredVersion">
            <summary>
            Check whether the currently connected server is of a minimum version
            </summary>
            <throws>
            For cmdlets which require a certain version of TFS, a call to 
            this method will throw a NotSupportedException when connected to 
            an older server.
            </throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.Boolean@,System.Boolean@,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.DoProcessRecord">
            <summary>
            Performs execution of the command. Must be overriden in derived classes.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer">
            <summary>
              Gets information about a configuration server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Current">
            <summary>
            Returns the configuration server specified in the last call to Connect-TfsConfigurationServer 
            (i.e. the "current" configuration server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer">
            <summary>
            Gets one or more Team Foundation Server addresses registered in the current computer.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.Server">
            <summary>
            Specifies the name of a registered server. Wildcards are supported. 
            When omitted, all registered servers are returned. 
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer">
            <summary>
             Connects to a configuration server.
            </summary>
            <remarks>
             A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, 
             it is represented by the Tfs_Configuration database. Operations that should be performed on a server level 
             (such as setting server-level permissions) require a connection to a TFS configuration server. 
             Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. 
             NOTE: Currently it is only supported in Windows PowerShell.
            </remarks>
            <example>
              <code>Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</code>
              <para>Connects to the TFS server specified by the URL in the Server argument</para>
            </example>
            <example>
              <code>Connect-TfsConfigurationServer -Server vsalm</code>
              <para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</para>
            </example>
            <para type="input">Microsoft.TeamFoundation.Client.TfsConfigurationServer</para>
            <para type="input">System.String</para>
            <para type="input">System.Uri</para>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Server">
            <summary>
              Specifies either a URL/name of the Team Foundation Server to connect to, or a previously 
              initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. 
              To connect to a Team Foundation Server instance by using its name, it must have been 
              previously registered.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Team">
            <summary>
              Specifies the name of the Team, its ID (a GUID), or a 
              Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, 
              see the Get-TfsTeam cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Project">
            <summary>
            Specifies the name of the Team Project, its ID (a GUID), or a 
            Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection">
            <summary>
            Connects to a TFS team project collection or Azure DevOps organization. 
            </summary>
            <remarks>
            The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or 
            Azure DevOps organization.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsTeamProjectCollection.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsTeamProjectCollection as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsTeamProjectCollection by default.
            </notes>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Collection">
            <summary>
             Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organizations by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer">
            <summary>
            Disconnects from the currently connected configuration server.
            </summary>
            <remarks>
            The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its 
            counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" 
            as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, 
            unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeam">
            <summary>
            Disconnects from the currently connected team.
            </summary>
            <remarks>
            The Disconnect-TfsTeam cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" 
            as provided by "Get-TfsTeam -Current" will no longer work after a call to 
            this cmdlet, unless their -Team argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject">
            <summary>
            Disconnects from the currently connected team project.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" 
            as provided by "Get-TfsTeamProject -Current" will no longer work after a call to 
            this cmdlet, unless their -Project argument is provided or a new call to 
            Connect-TfsTeamProject is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection">
            <summary>
            Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" 
            as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.NewCredential">
            <summary>
            Provides credentials to use when you connect to a Team Foundation Server 
            or Azure DevOps organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.NewCredential.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
            <summary>
            Gets information from one or more branches in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            When omitted, all branches are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
            <summary>
            Returns the default branch in the given repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.DisableGitRepository">
            <summary>
            Disables one or more Git repositories.
            </summary>
            <remarks>
            Disables access to the repository. When a repository is disabled it cannot be 
            accessed (including clones, pulls, pushes, builds, pull requests etc) 
            but remains discoverable, with a warning message stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.DisableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.EnableGitRepository">
            <summary>
            Enables one or more Git repositories.
            </summary>
            <remarks>
            This cmdlets re-enables access to a repository. When a repository is 
            disabled it cannot be accessed (including clones, pulls, pushes, builds, 
            pull requests etc) but remains discoverable, with a warning message 
            stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.EnableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            When omitted, all Git repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.GitRepositoryDataService.DoNewItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
            <summary>
            Creates a new Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
            <summary>
            Specifies the name of the new repository
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
            <summary>
            Gets the Git branch policy configuration of the given Git branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
            <summary>
            Specifies the policy type of the branch policy to return. Wildcards are supported. 
            When omitted, all branch policies defined for the given branch are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
            <summary>
            Specifies the name of the branch to query for branch policies. When omitted, 
            the default branch in the given repository is queried.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
            <summary>
            Gets one or more Git branch policies supported by the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
            <summary>
            Specifies the display name or ID of the policy type. Wildcards are supported.
            When omitted, all policy types supported by the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
            <summary>
            Specifies the repository to be deleted. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
            <summary>
            Renames a Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
            <summary>
            Specifies the repository to be renamed. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList">
            <summary>
            Exports the contents of one or more Global Lists to XML.
            </summary>
            <remarks>
            This cmdlets generates an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist"
            </remarks>
            <example>
              <code>Export-TfsGlobalList | Out-File "gl.xml"</code>
              <para>Exports all global lists in the current project collection to a file called gl.xml.</para>
            </example>
            <example>
              <code>Export-TfsGlobalList -Name "Builds - *"</code>
              <para>Exports all build-related global lists (with names starting with "Build - ") and
                return the resulting XML document.</para>
            </example>
            <notes>
            To export or list global lists, you must be a member of the Project Collection Valid Users 
            group or have your View collection-level information permission set to Allow.
            </notes>
            <input>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</input>
            <input>System.String</input>
            <input>System.Uri</input>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be exported. Wildcards are supported. 
            When omitted, it defaults to all global lists in the supplied team project collection. 
            When using wilcards, a single XML document will be producer containing all matching 
            global lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList">
            <summary>
            Gets the contents of one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list. Wildcards are supported. 
            When omitted, defaults to all global lists in the supplied team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList">
            <summary>
            Imports one or more Global Lists from an XML document
            </summary>
            <remarks>
            This cmdletsimports an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist"
            </remarks>
            <example>
              <code>Get-Content gl.xml | Import-GlobalList</code>
              <para>Imports the contents of an XML document called gl.xml to the current project collection</para>
            </example>
            <notes>
            To import global lists, you must be a member of the Project Collection Administrators security group.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.InputObject">
            <summary>
            XML document object containing one or more global list definitions.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite a global list that already exists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList">
            <summary>
            Creates a new Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.GlobalList">
            <summary>
            Specifies the name of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Items">
            <summary>
            Specifies the contents (items) of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite an existing global list.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList">
            <summary>
            Deletes one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.GlobalList">
            <summary>
            Specifies the name of global list to be deleted. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList">
            <summary>
            Changes either the name or the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.GlobalList">
            <summary>
            Specifies the name of the global lsit to be renamed.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList">
            <summary>
            Changes the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be changed.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Add">
            <summary>
            Specifies a list of items to be added to the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Remove">
            <summary>
            Specifies a list of items to be removed from the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Force">
            <summary>
            Creates a new list if the specified one does not exist.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
            <summary>
            Gets one or more identities that represents either users or groups in Azure DevOps.
            </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.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.GetIdentity.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
            <summary>
            Adds group members to an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
            <summary>
            Specifies the group to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
            <summary>
            Gets the members of a Azure DevOps group
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
            <summary>
            Specifies the group fom which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given group. Wildcards are supported.
            When omitted, all group members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
            <summary>
            Removes a member from an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
            <summary>
            Specifies the group from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.NewCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.NewCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all build/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder">
            <summary>
            Creates a new build/pipeline definition folder
            </summary>
            <remarks>
            Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of 
            the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
            child folders.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the new pipeline/build folder, including its name, 
            separated by backslashes (\).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the pipeline/build folder to delete, including its name, 
            separated by backslashes (\). Wildcards are supperted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing build/pipelines definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
            <summary>
            Creates a new release definition folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the path of the release folder to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing release definitions definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild">
            <summary>
            Queues a XAML Build.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
            <summary>
            Exports a XML-based process template definition to disk.
            </summary>
            <remarks>
            This cmdlet offers a functional replacement to the "Export Process Template" feature found 
            in Team Explorer. All files pertaining to the specified process template (work item defininitons, 
            reports, saved queries, process configuration and so on) are downloaded from the given 
            Team Project Collection and saved in a local directory, preserving the directory structure 
            required to later re-import it. This is specially handy to do small changes to a process template 
            or to create a new process template based on an existing one.
            </remarks>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
            </example>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be exported. Wildcards are supported. 
            When omitted, all process templates in the given project collection are exported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
            <summary>
            Path to the target directory where the exported process template (and related files) will be saved. 
            A folder with the process template name will be created under this path. When omitted, templates  
            are exported in the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
            <summary>
            Saves the exported process template with a new name. Useful when exporting a base template 
            which will be used as a basis for a new process template. When omitted, the original name is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
            <summary>
            Saves the exported process template with a new description. Useful when exporting a base template 
            which will be used as a basis for a new process template.  When omitted, the original description is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be returned. Wildcards are supported. 
            When omitted, all process templates in the given project collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Default">
            <summary>
            Returns the default process template in the given orgnization / project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
            <summary>
            Imports a process template definition from disk.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
            <summary>
            Specifies the folder containing the process template to be imported. This folder must contain 
            the file ProcessTemplate.xml
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
            <summary>
            Specifies the state of the template after it is imported. When set to Invisible, the process template
            will not be listed in the server UI.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
            <summary>
            Creates a new inherited process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process to create.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
            <summary>
            Specifies the description of the new process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
            <summary>
            Specifies the reference name of the new process. When omitted, a random name 
            will be automatically generated and assigned by the server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
            <summary>
            Specifies the name of the parent process from which the new process will inherit.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing process.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RemoveCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RenameCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RenameCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
            <summary>
            Gets an Azure DevOps HTTP Client object instance.
            </summary>
            <remarks>
            Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, 
            Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to 
            many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient 
            that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication 
            information supplied by their parent connection object and can be used as a more convenient mechanism 
            to issue API calls.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
            <summary>
            Specifies the full type name (optionally including its assembly name) of the HTTP Client 
            class to return.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.GetRestClient.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
            <summary>
            Invoke an Azure DevOps REST API.
            </summary>
            <remarks>
            Invoke-TfsRestApi can automatically parse an example URL from 
            https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens 
            (such as {organization}, {project} and {team}) as long as collection / project / team 
            information are available via either the their respective arguments in this command or the 
            corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted 
            from the supplied example, when available.
            </remarks>
            <example>
              <code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
              <para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
              <para>Calls the API described by an example extracted from the docs.microsoft.com web site. 
                HTTP method, host name and API version are all set based on the supplied values; 
                Tokens {organization}, {project} and {team} are properly replaced with the corresponding 
                values provided by the current connection context (via previous calls to 
                Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
            <summary>
            Specifies the path of the REST API to call. Tipically it is the portion of the URL after 
            the name of the collection/organization, i.e. in the URL 
            https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is 
            "/_apis/projects".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
            <summary>
            Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
            <summary>
            Specifies the request body to send to the API endpoint. Tipically contains the JSON payload 
            required by the API.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
            <summary>
             Specifies the request body content type to send to the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
            <summary>
             Specifies the response body content type returned by the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
            <summary>
            Specifies a hashtable with additional HTTP headers to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
            <summary>
            Specifies a hashtable with additional query parameters to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
            <summary>
            Specifies the desired API version. When omitted, defaults to "4.1".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com", 
            e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
            <summary>
            Returns the API response as an unparsed string. If omitted, JSON responses will be 
            parsed, converted and returned as objects (via ConvertFrom-Json).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
            <summary>
            Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. 
            The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
            <summary>
             HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
            <summary>
             HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
            <summary>
            Gets one or more service hook consumers.
            </summary>
            <remarks>
            Service hook consumers are the services that can consume (receive) notifications triggered by 
            Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, 
            Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to return. Wildcards are supported. 
            When omitted, all service hook consumers registered in the given project collection/organization 
            are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
            <summary>
            Gets the notification history for a given service hook subscription
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
            <summary>
            Specifies the subscription to get the notification history from.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
            <summary>
            Specifies the beginning of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
            <summary>
            Specifies the end of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
            <summary>
            Specifies the notification status to filter on.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
            <summary>
            Gets one or more service hook publishers.
            </summary>
            <remarks>
            Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by 
            event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to return. Wildcards are supported. 
            When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / 
            TFS collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
            <summary>
            Gets one or more service hook subscriptions
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
            <summary>
            Specifies the name ("action description") of the subscription. Wildcards are supported. 
            When omitted, returns all service hook subscriptions in the given 
            team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to filter subscriptions by.
            When omitted, returns all subscriptions regardless of their publishers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their consumers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
            <summary>
            Specifies the event type to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their event types.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.SetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.SetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
            <summary>
            Activates the Azure DevOps Shell
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
            <summary>
            Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
            <summary>
            Do not clear the host screen when activating the Azure DevOps Shell. When set, the
            prompt is enabled without clearing the screen.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
            <summary>
            Do not show the version banner when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.EnterShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.ExitShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
            <summary>
            Gets information about one or more team projects.
            </summary>
            <remarks>
            The Get-TfsTeamProject cmdlets gets one or more Team Project objects 
            (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied 
            Team Project Collection.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
            <summary>
            Specifies the name of a Team Project. Wildcards are supported. 
            When omitted, all team projects in the supplied collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
            <summary>
            Lists deleted team projects present in the "recycle bin"
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
            <summary>
            Returns the team project specified in the last call to Connect-TfsTeamProject 
            (i.e. the "current" team project)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
            <summary>
            Creates a new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
            <summary>
             Specifies the name of the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
            <summary>
            Specifies a description for the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
            <summary>
            Specifies the source control type to be provisioned initially with the team project. 
            Supported types are "Git" and "Tfvc".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
            <summary>
            Specifies the process template on which the new team project is based. 
            Supported values are the process name or an instance of the
            Microsoft.TeamFoundation.Core.WebApi.Process class.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
            <summary>
            Deletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
            <summary>
            Deletes the team project permanently. When omitted, the team project is moved to a 
            "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
            <summary>
            Renames a team project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
            <summary>
            Forces the renaming of the team project. When omitted, the command prompts for 
            confirmation prior to renaming the team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject">
            <summary>
            Changes the details of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Project">
            <summary>
            Specifies the name of the Team Project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.AvatarImage">
            <summary>
            Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). 
            To remove a previously set image, pass $null to this argument.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
            <summary>
            Undeletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
            <summary>
            Specifies the name of the Team Project to undelete.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
            <summary>
            Gets information about one or more backlog levels of a given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
            <summary>
            Specifies one or more backlog level configurations to be returned. Valid values 
            are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the 
            backlog level to return. Wilcards are supported. When omitted, returns all backlogs 
            levels of the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
            <summary>
            Gets one or more team boards.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns all boards in 
            the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
            <summary>
            Gets one or more team board card rules.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
            <summary>
            Specifies the rule name. Wildcards are supported. 
            When omitted, returns all card rules in the given board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
            <summary>
            Specifies the kind of rule to return. When omitted, returns 
            both rule types (card color and tag color).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
            <summary>
            Set the card rule settings of the specified backlog board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns card rules 
            for all boards in the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
            <summary>
            Gets information about one or more teams.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
            <summary>
            Specifies the team to return. Accepted values are its name, its ID, or a
            Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
            When omitted, all teams in the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.QueryMembership">
            <summary>
            Get team members (fills the Members property with a list of
            Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
            When omitted, only basic team information (such as name, description and ID) are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
            <summary>
            Gets the team's backlog settings (fills the Settings property with a
            Microsoft.TeamFoundation.Work.WebApi.TeamSetting object)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
            <summary>
            Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
            <summary>
            Returns the default team in the given team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.GetTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRemoveItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRenameItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
            <summary>
            Creates a new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
            <summary>
            Specifies the name of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board. When omitted,
            an area path may still be associated to this team depending on whether NoAutomaticAreaPath
            is set
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
            <summary>
            Do not associate an area path automatically to the new team. When omitted, an area path 
            is created (if needed) and then is set as the default area path / team field
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
            <summary>
            Do not associate an iteration path automatically to the new team. When omitted, 
            an iteration path is created (if needed) and then is set as the default 
            backlog iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
            <summary>
            Specifies a description of the new team.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
            <summary>
            Deletes a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
            <summary>
            Renames a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
            <summary>
            Changes the details of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
            <summary>
            Sets the specified team as the default team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
            <summary>
            Specifies a new description
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
            <summary>
            Specifies the backlog area paths that are associated with this team. Provide a list 
            of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all
            child area path will be included recursively. Otherwise, only the area itself (without 
            its children) will be included.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days. When omitted, defaults to Monday thru Friday
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
            <summary>
            Specifies how bugs should behave when added to a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
            <summary>
            Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
            <summary>
            Adds a new administrator to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
            <summary>
            Specifies the administrator to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
            <summary>
            Gets the administrators of a team.
            </summary>    
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
            <summary>
            Specifies the administrator to get from the given team. Wildcards are supported.
            When omitted, all administrators are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
            <summary>
            Removes an administrator from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
            <summary>
            Specifies the administrator to remove from the team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.TeamAdmin">
            <summary>
            Represents a Team Adminstrator
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
            <summary>
            Adds new members to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
            <summary>
            Specifies the team to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
            <summary>
            Gets the members of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
            <summary>
            Specifies the team from which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given team. Wildcards are supported.
            When omitted, all team members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
            <summary>
            Removes a member from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
            <summary>
            Specifies the team from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
            <summary>
            Clone a test plan and, optionally, its test suites and test cases.
            </summary>
            <remarks>
              <para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
              <para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
              <para>  * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
              <para>  * Shared steps referenced by cloned test cases;</para>
              <para>  * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
              <para>  * Action Recordings linked from a cloned test case;</para>
              <para>  * Links and Attachments;</para>
              <para>  * Test configuration.</para>
              <para>The items below are only copied when using -CloneRequirements:</para>
              <para>  * Requirements-based suites;</para>
              <para>  * Requirements work items (product backlog items or user stories);</para>
              <para>  * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
            </remarks>
            <example>
            <code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
            <summary>
            Specifies the name of the test plan to clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
            <summary>
            Specifies the name of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
            <summary>
            Specifies the name of the team project where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same team project of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
            <summary>
            Specifies the area path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same area path of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
            <summary>
            Specifies the iteration path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same iteration path of 
            the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
            <summary>
            Clones all the referenced test cases. When omitted, only the test plan is 
            cloned; the original test cases are only referenced in the new plan, not duplicated.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
            <summary>
            Clone all test suites recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
            <summary>
            Copies ancestor hierarchy.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
            <summary>
            Clones requirements referenced by the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
            <summary>
            Specifies the name of the workitem type of the clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
            <summary>
            Clones only the specified suites.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
            <summary>
            Specifies the comment of the Related link that is created ato point 
            to the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
            <summary>
            Gets the contents of one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
            <summary>
            Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
            <summary>
            Gets only the plans owned by the specified user.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
            <summary>
            Get only basic properties of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
            <summary>
            Get only the active plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
            <summary>
            Creates a new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
            <summary>
            Specifies the start date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
            <summary>
            Specifies the end date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
            <summary>
            Deletes one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
            <summary>
            Specifies one or more test plans to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
            <summary>
            Forces the deletion of test plans with test suites and/or test cases. 
            When omitted, only empty test plans can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
            <summary>
            Renames a test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
            <summary>
            Gets information from one or more Wiki repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
            <summary>
            Specifies the name or ID of a Wiki repository. Wildcards are supported. 
            When omitted, all Wiki repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
            <summary>
            Returns only provisioned ("project") Wikis. When omitted, returns all Wikis 
            (both Project wikis and Code wikis).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
            <summary>
            Creates a new Wiki repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
            <summary>
            Specifies the name of the new Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
            <summary>
            Specifies the name or ID of the Git repository to publish as a Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
            <summary>
            Creates a provisioned ("project") Wiki in the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
            <summary>
            Specifies the Wiki to be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
            <summary>
            Deletes the provisioned ("project") Wiki of the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsArea</code>
              <para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsArea '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode">
            <summary>
            Base implementation for Get-Area and Get-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\\**\\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode">
            <summary>
            Base implementation for Move-Area and Move-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
            <summary>
            Creates a new Work Item Area in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
            <summary>
            Specifies the path of the new Area. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the area name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
            <summary>
            Creates a new Iteration in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
            <summary>
            Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the iteration name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StartDate">
            <summary>
            Specifies the start date of the iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode">
            <summary>
            Base implementation for New-Area and New-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
            <summary>
            Deletes one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
            <summary>
            Deletes one or more Iterations from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode">
            <summary>
            Base implementation for Remove-Area and Remove-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode">
            <summary>
            Renames a Work Area.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode">
            <summary>
            Renames a Iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode">
            <summary>
            Base implementation for Rename-Area and Rename-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
            <summary>
            Modifies the dates of an iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
            <summary>
            Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode">
            <summary>
            Base implementation for Set-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
            <summary>
            Determines whether the specified Work Area exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
            <summary>
            Determines whether the specified Iteration exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode">
            <summary>
            Base implementation for Test-Area and Test-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem">
            <summary>
            Creates a copy of a work item, optionally changing its type.
            </summary>
            <remarks>
            Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) 
            that is of the specified work item type.
            <br/>
            By default, the copy retains the same type of the original work item, 
            unless the Type argument is specified
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.NewType">
            <summary>
            Specifies the type of the new work item. When omitted, the type of the original 
            work item is preserved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeAttachments">
            <summary>
            Creates a duplicate of all attachments present in the source work item and 
            adds them to the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeLinks">
            <summary>
            Creates a copy of all links present in the source work item and adds them to the new work item.
            Only the links are copied; linked artifacts themselves are not copied. 
            In other words, both the original and the copy work items point to the same linked
            artifacts.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DestinationProject">
            <summary>
            Specifies the team project where the work item will be copied into. When omitted, 
            the copy will be created in the same team project of the source work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Project">
            <summary>
            Specifies the source team project from where the work item will be copied. 
            When omitted, it defaults to the team project of the piped work item (if any),
            or to the connection set by Connect-TfsTeamProject.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Passthru">
            <summary>
            Returns the results of the command. It takes one of the following values: 
            Original (returns the original work item), Copy (returns the newly created work item copy) 
            or None.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
            <summary>
            Specifies the title to look up for in a work item. Wildcards are supported. 
            When a wildcard is used, matches a portion of the title 
            (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field 
            with the operator "=", unless -Ever is also specified. In that case, uses the operator 
            "was ever".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
            <summary>
            Specifies the description to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
            <summary>
            Specifies the area path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
            <summary>
            Specifies the work item type to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
            <summary>
            Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
            <summary>
            Specifies the board column to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
            <summary>
            Specifies the name or email of the user that created the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
            <summary>
             Specifies the date when the work item was created.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
            <summary>
            Specifies the name or email of the user that did the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
            <summary>
            Specifies the date of the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
            <summary>
            Specifies the date of the most recent change to the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
            <summary>
            Specifies the tags to look up for in a work item. When multiple tags are supplied, 
            they are combined with an OR operator - in other works, returns  work items that 
            contain ANY ofthe supplied tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
            <summary>
            Switches the query to historical query mode, by changing operators to 
            "WAS EVER" where possible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
            <summary>
            Specifies a work item revision number to retrieve. When omitted, returns
            the latest revision of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
            <summary>
            Returns the field values as they were defined in the work item revision that
            was the latest revision by the date specified.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Query">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
            <summary>
            Specifies which fields should be retrieved. When omitted, defaults to a set of
            standard fields that include Id, Title, Description, some state-related fields and more.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
            <summary>
            Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
            <summary>
            Fetches work items in "time-precision mode": search criteria in WIQL queries 
            take into account time information as well, not only dates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
            <summary>
            Opens the specified work item in the default web browser.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
            <summary>
            Gets deleted work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IncludeLinks">
            <summary>
            Gets information about all links and attachments in the work item. When omitted, only fields are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment">
            <summary>
            Downloads one or more attachments from work items
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Attachment">
            <summary>
            Specifies the attachment to download. Wildcards are supported. 
            When omitted, all attachments in the specified work item are downloaded.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Destination">
            <summary>
            Specifies the directory to save the attachment to. When omitted, defaults to the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
            <summary>
            Gets the links in a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.LinkType">
            <summary>
            Returns only the specified link types. When omitted, returns all link types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.IncludeAttachments">
            <summary>
            Includes attachment information alongside links. When omitted, only links are retrieved.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
            <summary>
            Moves a work item to a different team project in the same collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
            <summary>
            Specifies the team project where the work item will be moved to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
            <summary>
            Specifies the area path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root area path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
            <summary>
            Specifies the iteration path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root iteration path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
            <summary>
            Specifies a new state for the work item in the destination project. 
            When omitted, it retains the current state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
            <summary>
            Specifies a comment to be added to the history
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
            <summary>
            Creates a new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
            <summary>
            Specifies the type of the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
            <summary>
            Exports a saved work item query to XML.
            </summary>
            <remarks>
            Work item queries can be exported to XML files (.WIQ extension) in order to be shared 
            and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use 
            this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to export. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
            <summary>
            Specifies the path to the folder where exported queries are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
            <summary>
            Flattens the query folder structure. When omitted, the original query 
            folder structure is recreated in the destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for Get-WorkItemQuery and Get-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for New-WorkItemQuery and New-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Force">
            <summary>
            Allow the cmdlet to overwrite an existing item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
            <summary>
            Deletes a work item from a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
            <summary>
            Specifies the work item to remove.
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
            <summary>
            Permanently deletes the work item, without sending it to the recycle bin.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
            <related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
            <summary>
            Specifies the text to search for. Supports the Quick Filter syntax described in 
            https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
            <summary>
            Specifies the maximum quantity of results. Supports between 1 and 1000 results. 
            When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
            <summary>
            Sets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
             <summary>
             Specifies the reason (field 'System.Reason') of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
             <summary>
             Specifies the Value Area of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
             <summary>
             Specifies the board column of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to returns. Wildcards are supported. 
            When omitted, returns all existing tags in the given project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
            <summary>
            Includes tags not associated to any work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
            <summary>
            Creates a new work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
            <summary>
            Specifies the name of the new tag.
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
            <summary>
            Deletes one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
            <summary>
            Renames a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
            <summary>
            Specifies the name of the work item tag to rename.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
            <summary>
            Specifies one or more work item types to export. Wildcards are supported. 
            When omitted, all work item types in the given project are exported
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
            <summary>
            Exports the definitions of referenced global lists. 
            When omitted, global list definitions are not included in the exported XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
            <summary>
            Specifies the path to the folder where exported types are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
            <summary>
            Gets one or more Work Item Type definitions from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
            <summary>
            Specifies one or more work item type names to return. Wildcards are supported. 
            When omitted, returns all work item types in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
            <summary>
            Speficies a work item whose corresponding type should be returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
            <summary>
            Imports a work item type definition into a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ParameterDictionary">
            <summary>
            Represents a collection of cmdlet arguments
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object,System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection, optionally overriding its values.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor">
            <summary>
            Creates an empty dictionary
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object,System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object and merging it
            with another. 
            </summary>
            <see cref="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})"/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.Get``1(System.String,``0)">
            <summary>
            Returns the value of a property. When the property is missing, returns an
            optionally supplied default value.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Overrides this instance with another one. Existing properties are overwritten.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.MergeWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Merges this instance with another one. Existing properties are skipped.
            </summary>
        </member>
        <member name="T:TfsCmdlets.TfsComponent">
            <summary>
            Indicates a TFS component
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.BaseInstallation">
            <summary>
            The root folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.ApplicationTier">
            <summary>
            The "ApplicationTier" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.SharePointExtensions">
            <summary>
            The "SharePointExtensions" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.TeamBuild">
            <summary>
            The "TeamBuild" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.Tools">
            <summary>
            The "Tools" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.VersionControlProxy">
            <summary>
            The "VersionControlProxy" folder of a TFS installation
            </summary>
        </member>
        <member name="T:TfsCmdlets.ClientScope">
            <summary>
            Client scope for Invoke-RestApi
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Server">
            <summary>
            Server-level scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Collection">
            <summary>
            Collection-level scope
            </summary>
        </member>
        <member name="T:TfsCmdlets.CardRuleType">
            <summary>
            Board card rule
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.CardColor">
            <summary>
            Card color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.TagColor">
            <summary>
            Tag color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.All">
            <summary>
            All card rules (card and tag color)
            </summary>
        </member>
        <member name="T:TfsCmdlets.RegistryScope">
            <summary>
            TFS Registry scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.User">
            <summary>
            User
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Collection">
            <summary>
            Collection
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Server">
            <summary>
            Server
            </summary>
        </member>
        <member name="T:TfsCmdlets.WorkItemLinkType">
            <summary>
            Work Item Link Type
            </summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.All">
            <summary>All</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Parent">
            <summary>Parent</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Child">
            <summary>Child</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Related">
            <summary>Related</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Predecessor">
            <summary>Predecessor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Successor">
            <summary>Successor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Duplicate">
            <summary>Duplicate</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.DuplicateOf">
            <summary>Duplicate Of</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Tests">
            <summary>Tests</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.TestedBy">
            <summary>Tested By</summary>
        </member>
        <member name="T:TfsCmdlets.Extensions.DocumentExtensions">
            <summary>
            Linq to XML extension methods
            </summary>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXmlDocument(System.Xml.Linq.XDocument)">
            <summary>
            Converts a LINQ-based XDocument to a "legacy" XmlDocument
            </summary>
            <param name="xDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXDocument(System.Xml.XmlDocument)">
            <summary>
            Converts a "legacy" XmlDocument to a LINQ-based XDocument
            </summary>
            <param name="xmlDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GenericHttpClient">
            <summary>
            Generic HTTP Client, used by the Invoke-TfsRestApi cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.GenericHttpClient.Uri">
            <summary>
            Gets the API URL
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.UseHost(System.String)">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com"
            </summary>
            <param name="host">An alternate host, such as "vsaex.dev.azure.com" or "vssps.dev.azure.com".</param>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get``1(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API, converted to the model type T</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post``2(System.String,``0,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API parameter (content) object</typeparam>
            <typeparam name="TResult">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="value">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post(System.String,System.Net.Http.HttpContent,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="content">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync``1(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.PostForm``1(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GitExtendedHttpClient">
            <summary>
            Custom HTTP Client to handle extended Git repository management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.Guid,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.String,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdminHttpClient">
            <summary>
            Custom HTTP Client to handle team administrator management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmins">
            <summary>
            Represents a collection of team administrators
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmins.Admins">
            <summary>
            Collection of team administrators
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmin">
            <summary>
            Represents a team administrator
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IdentityType">
            <summary>
            Identity Type
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.FriendlyDisplayName">
            <summary>
            Friendly Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.DisplayName">
            <summary>
            Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.SubHeader">
            <summary>
            Sub-header
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.TeamFoundationId">
            <summary>
            Team Foundation Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.EntityId">
            <summary>
            Entity Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Errors">
            <summary>
            List of Errors
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Warnings">
            <summary>
            List of Warnings
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Domain">
            <summary>
            User Domain
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.AccountName">
            <summary>
            User Account Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IsWindowsUser">
            <summary>
            Is Windows User
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.MailAddress">
            <summary>
            Email Address
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdmin.ToString">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.HttpClient.AddTeamAdminRequestData">
            <summary>
            The request body to submit to the "Add Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.Team">
            <summary>
            TeamId
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.NewUsers">
            <summary>
            List of New Users
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.ExistingUsers">
            <summary>
            List of Existing Users
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.RemoveTeamAdminResult">
            <summary>
            The request body to submit to the "Remove Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.RemoveTeamAdminResult.Success">
            <summary>
            Indicates the success of the operation
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.BacklogLevelConfiguration">
            <summary>
            Encapsulates the backlog level configuration object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Board">
            <summary>
            Encapsulates the team board object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.CardRule">
            <summary>
            Azure Boards card rule
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.CardRule.#ctor(Microsoft.TeamFoundation.Work.WebApi.Rule,Microsoft.TeamFoundation.Work.WebApi.Board)">
            <summary>
            Creates a new instance from the given object
            </summary>
            <param name="original">The original object to copy settings from</param>
            <param name="board">The board to apply this rule to</param>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.Board">
            <summary>
            The board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.BoardName">
            <summary>
            The name of the board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.RuleType">
            <summary>
            The type of the rule
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.ClassificationNode">
            <summary>
            Encapsulates the area/iteration node object
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.ClassificationNode.RelativePath">
            <summary>
            Get a node's relative path
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.ClassificationNode.FixNodePath">
            <summary>
            Fill a missing node path. Older versions of the REST API don't populate the Path property.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Connection">
            <summary>
            Encapsulates the platform-specific connection object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(TfsCmdlets.Models.Connection)~Microsoft.VisualStudio.Services.WebApi.VssConnection">
            <summary>Converts Connection to VssConnection</summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(Microsoft.VisualStudio.Services.WebApi.VssConnection)~TfsCmdlets.Models.Connection">
            <summary>Converts VssConnection to Connection</summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.GetClientFromType(System.Type)">
            <summary>
            Returns a client object given its type.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalList">
            <summary>
            Represents a Team Foundation Server global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(TfsCmdlets.Models.GlobalList)~System.Xml.Linq.XElement">
            <summary>
            Converts a GlobalList to an XElement
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(System.Xml.Linq.XElement)~TfsCmdlets.Models.GlobalList">
            <summary>
            Converts an XElement to a GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor">
            <summary>
            Creates an empty instance of GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new instance from the given name and items
            </summary>
            <param name="name">The name of the global list</param>
            <param name="items">The items (content) of the global list</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.Xml.Linq.XElement)">
            <summary>
            Creates an instance of GlobalList from an XElement containing a &lt;GLOBALLIST&gt; element
            </summary>
            <param name="el">An XML element containing a global list definition</param>
            <returns>An instance of GlobalList</returns>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Name">
            <summary>
            Gets the name of the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Items">
            <summary>
            Gets the contents (items) of the global list.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToString">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToXml">
            <summary>
            Returns this global list in its original XML representation
            </summary>
            <returns>A XElement object representing a &lt;GLOBALLIST&gt; element</returns>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Represents a collection of global lists.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(TfsCmdlets.Models.GlobalListCollection)~System.Xml.Linq.XDocument">
            <summary>
            Converts a collection of global lists to a well-formed &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(System.Xml.Linq.XDocument)~TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Converts a well-formed &lt;gl:GLOBALLISTS&gt; document to a collection of global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor">
            <summary>
            Creates an empty collection
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Collections.Generic.IEnumerable{TfsCmdlets.Models.GlobalList})">
            <summary>
            Creates a collection and adds the given global lists to it
            </summary>
            <param name="items">Collection of global lists to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(TfsCmdlets.Models.GlobalList)">
            <summary>
            Creates a collection and adds the given global list to it
            </summary>
            <param name="item">A single global list to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.String)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="xml">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Xml.Linq.XDocument)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="doc">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToString">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToXml">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document, as a XDocument object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Identity">
            <summary>
            Encapsulates the platform-specific identity object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Team">
            <summary>
            Encapsulates a WebApiTeam object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(TfsCmdlets.Models.Team)~Microsoft.TeamFoundation.Core.WebApi.WebApiTeam">
            <summary>
            Converts to WebApiTeam
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(Microsoft.TeamFoundation.Core.WebApi.WebApiTeam)~TfsCmdlets.Models.Team">
            <summary>
            Converts from WebApiTeam
            </summary>
        </member>
        <member name="T:TfsCmdlets.ModuleInitializer">
            <summary>
            PowerShell module initializer
            </summary>
        </member>
        <member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
            <summary>
            Method called automatically by PowerShell upon module load/start
            </summary>
        </member>
        <member name="T:TfsCmdlets.Util.LazyProperty">
            <summary>
            Supports the creation of lazy-loaded ScriptProperty properties
            </summary>
        </member>
        <member name="M:TfsCmdlets.Util.LazyProperty.Get(System.Management.Automation.PSObject,System.String,System.Management.Automation.ScriptBlock)">
            <summary>
            Gets the value of the specified lazy-loaded property
            </summary>
            <param name="obj">The source PSObject that owns the property</param>
            <param name="property">The property name</param>
            <param name="sb">The scriptblock that is evaluated when the property 
                needs to be loaded. It must return the value to be assigned to the property.</param>
            <returns>The value of the property</returns>
        </member>
        <member name="T:TfsCmdlets.Util.ServerVersion">
            <summary>
            Represents the version of a Team Foundation / Azure DevOps Server installation, and/or 
            the currently deployed version of Azure DevOps in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Version">
            <summary>
            Gets the "four-part" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.LongVersion">
            <summary>
            Gets the "long" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.FriendlyVersion">
            <summary>
            Gets the "friendly" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.IsHosted">
            <summary>
            Indicates whether it's a "hosted" (Azure DevOps Services) deployment or not 
            (TFS/Azure DevOps Server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Update">
            <summary>
            Gets the version number of the Update installed on a server, or number of the sprint 
            currently deployed in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.YearVersion">
            <summary>
            Gets the version of the server as its corresponding year (e.g. 2019 for version 17.*)
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Core\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 7C31E8D1D805BFEAC33A42B4C2C886BF | sha1: 2A335F6FF523BBDC96098AB61916A88593CF8083 | sha256: 1D1F406A2E4EB98DB2E169618BF84CC4E1F185AACC6577FB8F3A4EF1C1713D87 | sha512: 793EAC45264B9349CF0B36D8AEFC9CBCF958B65B81E04BDE5AD63C554DDC03973994439DD462EAB2D888223F3F8226AA062F015313EEED75E975DABE5CC64C6C
tools\TfsCmdlets\Lib\Core\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 294F94E5026E46B489795EDFB3928FCA | sha1: 917F9835A847614A28A61A1BADDBC70914CA0F91 | sha256: A6F502845D7523D4E4BFD500377386612E185004EB6B286FBB2BEA4C6652914C | sha512: BAE247244C87A050C8AF60ED5AB435C3D7ADA6376807A422EE669202097BE06BC3FC9850C692AF2A2D7EF9B210764F9479E2A1FCF77A4D3A1F824B0C4CBE264F
tools\TfsCmdlets\Lib\Core\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: CB33F957F3B59B60C9E6943FAD178550 | sha1: EC3B27B41F60C2402B1974D6F92C4948B3884778 | sha256: 9155656EB3EA7193EED7E15EF4D761630041A6996494B4D95A49BE52B70B2967 | sha512: 8908AF3B95C9FB7BEC1F18F63B1E664A4960AFEE48D3D84464773550A896BBCB2C82C5BC0B7139F3FA37357F6F514AFA3916190E588523F4B088CC0EAA0907CB
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: 1A7331544DDE9BCB5A10AAF5537D4F63 | sha1: F47D38B4974ED82C5BCDC700BE75E18D9CE50541 | sha256: 1D8693519DBD22434EA55AA277EC8436A1EE3E9CE7D98E3FB81400645311AF5E | sha512: E82C49CE2EBE30F9A676F385AB0CC0771BD99AC14E929FF98C11B956AC642F0DB614E34F938E16D58759D25777F63F9286A8DBA29517064CBE93E038326C443D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 19385B085F6CEFA86D125338ECE959C9 | sha1: 90A995E2184CD3A558C0CB59E8ADB5D86B2D95D0 | sha256: 534DA1F07FBC9F4571DB2CE0D8D03956AA5C01A66280605F9D77A9449132A585 | sha512: 0880CB7EC8E7EF556A325BD281DB7762FCBB910D3B42BB755FF41E43950D85734EA150BBD29381C8AC84E9C84285B6B7100052AA425EB762946AEFB7D6AF843F
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Client.resources.dll
md5: 148DE843A27ED3CFF2431E135F98173D | sha1: 5AA2D85CC6E3FAD54610BCA60694AC1B871EB9E3 | sha256: 4081AD8AD3B7EF97E0CE8E8C03928452AA503B0763FC1381E73C1134515C50AF | sha512: 29568AB0B7D7E26DF08B79C5B74711B96DBE537AA0BBED7280D1C9CE56B63F56DD019CD60071503EDCFA0F84CFB8E48DA0CDD62D219A5B1EABBA56DE8A27A293
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Common.resources.dll
md5: AB56099B1B1CA547FC1D655955F716D6 | sha1: 461F7879A438D4A17DC2309A0EB30420FBAFF9D7 | sha256: 1671B184D920936859996169529C4711564C4C4BAEBA9B877C18BF5EEBF10EE1 | sha512: 2344261824CF9CFCCFB9C4BC5469EF2CFB6823FCB3AC873D49988068F3F8A7081E64C95C2ED46AC506DCE39042FB89A67F5E5F032AF34875981FEDD2657950B5
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 0D89F3B9643B87DDFB8703E47899D6EE | sha1: 9EFBD1C4A49D1582107FA8E46850CADEE7847F9D | sha256: 42192C39F7F3E7A7478FDACA0EC32FDC24C40F9193B3F2F69C459D3293177222 | sha512: 6645550AFCEFFEE8E9FF7F788F9C53998EBA5456D41A57BD84DCBF568FB42833C331D18BA32E4F6BFCF4C2CE39798A0433A3A447721D3E25B389905E25265A30
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 011E6F84F36B0B89C893C5EAE1F78A6E | sha1: 9E7C224DBC12801385E8184C7A052EF3C623DC66 | sha256: C087FD61D2551D7BC3944E9915349CF612ED3287336A9FF0CABF0A8BCE785423 | sha512: 7CBBBFAEF336E9494B4C1AA286582A61734A9BB66608F65B3879CE3F6349253164FF3A84609C741A5FE43D363F2EC018E56B4B877E1436F772217CA2DA6427C3
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: B5338983A6E49144E2B6423C3B7E8CAA | sha1: DCEA2ED5BBAC23B5F2774599F4B7CCD0EF88BFE3 | sha256: 58F1A91E38B20C396A98DA28BA97175C797168B71FEFCFE63C51957137BFB368 | sha512: CA3B94FADD84DC7F1F5D5BE970F774F7BABD10D7D93073CCCAEBA2D1B84BB0A6F11BDECB97C74149E974E79F13CC1B6194FE72553C50ECBC476740848678ABB5
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 60B5283C7F89349593C2AA687E1237D0 | sha1: C8A623AC17C2B8B91C76C703FE4CB13BD4EEE140 | sha256: 0BBB8E197A156FFF80EDC94BF9BF8678A67E1A92096DF25115134792D5D60383 | sha512: 8799ED645682BB1254C74A4BC822A3F51E798EABEA6BAE78377B0AD7F77FC286B441B86D0F55493E114F4D3DF531CB623B071D35C3BB2492C5EB8B5E0E19B548
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 9D6522B8BA984EA2B1B3F242574EC653 | sha1: 58A84EFB8F8AEEB35007E2EF2AEB2971348E8CCF | sha256: 9CCF7A422E8F70585C98EEAAE25F4B8B7B17A63D442634A063D9A5EEC0D20834 | sha512: 2C44ABB4BB183D99081E03B034560DFDD4B1AEC3A06157B964D2B227661C4D4FCBD530B21329D6BFDE19D45B9D9D5CB062AD4822B4054B65FAECC5938E542B04
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 041D12226F83EBFDA206A3A339D2EA14 | sha1: 50CE49C475DAB4B8AA91CB040662F4975CEF7432 | sha256: 272297357940A587212ABEF86933EC6AC961079A1EB4882FC4BA061B7AC5526C | sha512: 0633BF4763F42455BF0CED3BE7CE45FDD774580BC4CE877DBEF70ED1B78AA5EA7B59FAB19D0138EE64FFCB0BE5FC859BBF02487235D9ADFF3B8C7D74AEFE7AF2
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 53284127DFDAB1EF8DF2887AD45ACAA8 | sha1: 44808E9FA98280D5D7F5BC74F56B46466D5AC512 | sha256: B2CEDCF74F21FCD2226AD6D1F4427317E7E3F7554332367DF4AB9A6CEC7FC534 | sha512: 91E3BA048D8EA49C5642495BF1810B7745B1B9103EA6078686726FE596CE392B5D8E545FA5E66A34DF1A964BEE440749CE6E1A6F5A98474D586993E26EE8FA5D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 74C519F5DB4449CA5E9E451D25AB1328 | sha1: 2B15040D65B452317145C4CCDBA3FAD4D97952D4 | sha256: D062D09A3D1B0684EA2F9CB7EA96F57F3CA48323543FF14D93207D71B11D89BE | sha512: 555058F9C8869735280FF5CE789C0B6F97EC10E56DB21F5F3350CE5938E884FC9A7FB01FC38DFE6580EB76678C965C45841654B4FB591C81B71E4FD6D593DDE8
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7B71636BA84C1722B9CF9E879C373160 | sha1: F243F601035F852D26C5F61E7FFD46A23C84CA66 | sha256: 3F1BBF4278D3136CCF62B192D2B8F731F61A12BBC7DEA02FA007F106A7527154 | sha512: 85426B6E2704A930B5C359F5D8C1FE2094D9D8529ECA78D9E467B45B42CDD5F0538DF8663FE4C2A35F601AEB29B2FA6627DA4C16BD0F989D8327B8905157EE3A
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: A45EC01E04E070A10097B7BDF68AEC91 | sha1: 9265FE83724A52465FB9EF746AC6F209F6A021AC | sha256: 9D601C3CABC9B61E4B117A2A38264C791E62B3049F3FE84B8EE3D60376AAB3C6 | sha512: 7796E3233A0C49DB442481C4DB316A4D12A3DB8D285E1923DF36549234A3660260CA10B6637D9EA8927A6AE65D9BAB1E4CB26CA1A5635F1F65480CFF643C518F
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 04E5E7F0D1B033AFD5E910ADD42F6020 | sha1: CEA0E797EAAF94B0949E105E89A46B40F8ACACA4 | sha256: 87116DBF1477B68144D7258F2C3E30924CAE8C34786A2D0E582E56DB797F11C1 | sha512: C9271EC571CE44D997840EAF94F94E91894218582A8F91E16764CC6CFD5E6EBC8F9582AEF7D3E1F8AA88F72CECBB1057424E60D61AE10562418D079126EB553D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 60C87B886F4401FA27255A5FFEAABB77 | sha1: 30620505FCC7BDC97AFD31BCA2C599C3867654B1 | sha256: FCCA654A9803436F605579F6A93C4581C999C75C1051F547BDC300586A32EA4C | sha512: 8E0799F3E73E970D1536678827694092CB4D0B23F4337FCC9385BFD1842A4DAE19B686388103C48E295B017A7C2B9C3BF2BD479B4F2BDACA5CCBCEEB8C7525C5
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: DE09BF3DB98E634C04AE8F85F4F46B04 | sha1: 74964006A192828F7F77B3E40A8BDAA55B0EE414 | sha256: DA120A514733F68A822D80602CEDFA0769A475BE6B4FD58D16D4F26C1E22DCC9 | sha512: 5BAD46D6DB46AD76F0F410C4165FB33EDE6ED343CE7897F9E66EA7403BD615999B2F8F1CC1CD288D2F2BF6C9C294D5A6258EF634C855EB8D4BC2A8CC8882EB18
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: B353B8326AB18CC9FB8583F2426DFB0A | sha1: 7948462CAB127D376F3CA7F8523E10BA9FBAFAC4 | sha256: 840F1852E0526D9C28816C08546E9247E5059640EFC7CFD008DE6EFDF502D647 | sha512: A233B7E7C6372231CFF5DCDDF5A0BBB5A51C488CDBCA4813597DE02BD484E5B0BF5E69B9A7B88A416EF2D8AB53BA99357C028233A2D1046E3DF18247497F04B2
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 74C8C78BC0EE24CC5DD7CFCBAF02A506 | sha1: EF40B902F7B0AA90A828E10C12AB98E00DE98E99 | sha256: F36C080FBDE07A3701B677225B771DDF4FF8765AE4572EF3914A8AE8A1AE1A98 | sha512: 3EC0DB71453558D1541F730A78CFF240D6FA239862B95426E31FA30B9F47FE7C7503C28A0132BB30A5D7617B91000E3AA6632CA3A322BE28BADBFB9C4F317F10
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 18A3B3F9DEC3EB094CAB06F4427BB20A | sha1: F8ED9EC5FC3A6315D251D219BB1BC9E3C7F3E93C | sha256: 9AC43CC5F8E879E6EFF7436702FEBF47FF23CDD8D9C40E10E4EA047B2AF6B265 | sha512: F32FA96E71A9989A48AC689381CC9E4F7C3B8EC7B4D3A0589F2F5F3A8671124B1E915FA709B552FC99A086D14F04F095B76F058474956B5CCE5E54F201AF64B7
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 56D3EEF0E88B58C26F01F636668DF47E | sha1: B046919D0A0F50045E401837461F7927F95C90C9 | sha256: 70D14DDE4D0FD2FEE9DA66C4D3F2CC0706E98C84113E1F83214EE17E070CDA8E | sha512: CD77501DB84294CAA59A0A7F97D6B91006A5F6096B9C8AE57149E33A0A267989E4A92D166D417C2112607BAFA0EC10430FE33F9810BA1F1B3A7F05E70E14A7FB
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: E58120A42E08708CEC0F657B90C234BA | sha1: 02744AD4C15E132B6314686502D6B7D66DAF2309 | sha256: E31B3D35B146524C83A57EE95D7485063B90B10A958B39504C3DBD082A7640CE | sha512: 54A03D6570DC8D076EA88BAA1ED0DFD6CFDC136D12735FD0C8F23B71B32B46FE0537B32D1AB154D37DF8519561534586739E77547D0CAA884769562EFAE5A1E4
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 954E8E38E56D97C917B294BFBD90CEA1 | sha1: 99691C6CE979BDF5660175F1DCAB336549E886F3 | sha256: D1C6D12D93573C6AE2D639BC720E978DD462A815BCC6B8071E5C5B6A3E8BB6CA | sha512: E8C7CB9FDB06353CA1003A941C5646715486BFA2E324DC05B6282A4F2DBCCF89FFD6153E492108C62E5EAC58FB9E31A3C5BD666ABA3FAFB36DC2EB833D646A2F
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 729103EB7C1967A8A02DA424AADF88AF | sha1: EFBA48AF71724A788F8859ACCB3571C520115A89 | sha256: 66134E6B0EA9E53A240A063E314052C71099A4F5D3DB8B65BFE069CA1A6EFF1E | sha512: AFB10CF7FE317366689BB2EF570F2175724166594EB636C2451DD0641098F1D366508E5973F2C1F58D82A87CE3CD1B27417F5E7299F21B068D98DA2B9E8A2DF3
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Client.resources.dll
md5: 03A7433E9CC9A3BA48D337F69DBF4AEA | sha1: 345C5192D574C8C2B9F6A31D59995D73DF18F0E1 | sha256: C553D0471197B425A8F073DC10463A4792B1D7F2B913E0EB04CC3D019DA26242 | sha512: B1414DCB5434547AA3EC3433CBEDEA36C48695A8B43503449239DC900CCB7A58CCD9F124D0FF510E454CA0820A765DFC54FA2FB5D861CEF503920700BE3088F1
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Common.resources.dll
md5: 5CA00B76368911F8BCCEAB060220E738 | sha1: 126920534337A56B6FD3EBD285F82A7389D96894 | sha256: 231AB1576DAAC8266027C06CDD287F46AC98516DA4F06D76C64ADB59B0FFF1BC | sha512: 260FD03A653328C6C2AA768C300F52873FD6288A3896812271AAA18C6B9522F0C637FFAC3F7998E214EC2403469A6BC0104662030E8A0CE95C309CA4DFC8492E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: F7A8609DBFD736CDD327569664856B09 | sha1: D7A1A96227353277D467E2A64E6C22F5D51F5B81 | sha256: C20DBE37E0CC5A7FC3B93EF0364F1FB1A92C7248EB06EE42061D68667CA6D688 | sha512: 917D1008CBC8D32ED977CC9F6A3142DFAE6969CF8D59D85E2591129D251CDD6D77369F89DBDDB25F2B331CFAB26886A39A5A777781C37F008355B799CF3D5C18
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: FF13F03822621B47529F5B4F186F7C00 | sha1: 897AD8BC583B4B5CD1C26A748F7B89DCDC40664C | sha256: B20BB3B8F656FB962FB600F42BB7AE1C0065D40E37567F8BD146FB7FA18C8804 | sha512: 5270B25D3BDB5734ADA533EC03AC7B7235FFEE60A1CB947BAD0829E7A0904B82BBD8FA48C3DB2BDAC0417520264D7B14DA9FBDC2E184D5598DCDB21360E0BE79
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: E4AF4BBED481A9D75F86FA2D951C6056 | sha1: 795B1818BB2BF9F9119F53BE597E20ADBE0F4F69 | sha256: 325E39B9AD3B7B59887067A430A022C67CD57E22E0E99B7DDF3B2A24D4941C23 | sha512: 82E3455B7E1E9A52D2FE2360A9E90830F0B784B486F35864388A55E0340F29C8361D4C06E3A689E94DF9E90633CCB70CB55CE44E5DB7B4636AD91214976F644F
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 7F523C2C17D0410A4B3B27B3D74A14F7 | sha1: C7F5FEAFCCA53CFD8D39D18F56C057861298B4F5 | sha256: 068845BEB78C76B99B39E0BB6EDFE270BC75358F3914299D923D3A78309EF6F2 | sha512: D7AA5B43F52F0990E4E79A240A06E7EDC745B45DB40D0AC97007BA4CF24ADABAD18A86C42203685DB0EB642E58F9B56DF0DF158EE3765122426419BFF481154B
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 3F8029AE37BE04EA4BFFC5A178412089 | sha1: 1F0498619C97A212B380A32522B19D4404F5BC68 | sha256: 888CEE1875F668DDEA945704F018218E098BB9EBE5FE750DF4E5DB3566A4C2A7 | sha512: 36D53FC9B2EB287EFAD2ABA6EF0C2364A81187B8BE101B1AB8AFF9788141AE5382F1182C18601F4710D3842116C0B9872E4E115C186A86D979A25726877B34B3
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: C4DF3776DAF72468B1714FED778265BB | sha1: CE999166F2B37ED47ED92AA098010CE0AA1832AB | sha256: 18C800E4CB4E7D28D7942A00E3185D654E2AD60AE61E90951A93EFDF1EE57C2E | sha512: 476C2B7BE5B08284B9240EFB637F1064338852063A3D9547E8BE885EA5FBA0FDE4FE4A4C11B290405147959C0DF47D1CB89D597852F570B273F641020859E77B
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: FA5F3A849F0326F64D6257C0383EA644 | sha1: 2B92AEBE7426BF754A2EF17AD1DA4CBE14A56B8D | sha256: C3104E2F85484D0C062574A0ACD550E361D729E3622EF7D06B3A52370E74F510 | sha512: 4CBAADC51F689068E9441EBDC9F71F1E25D7B358E39C275B1C52E71BD36945D50AF20A19CF0140D4FBDE4377E7FC54689BC570AFEED6776011C502EF6DD704B2
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 26499DBEBF67FDE2AB6C13BFF52F37EF | sha1: 0FBDA753644FD5AA42E856718602DA4435EBAE52 | sha256: 5D3539D6A828D9FAE1A924889CD143DDF576215A821B63F9089F05C6C84AEA5B | sha512: 0DB3CC86C98224A12C244A7942D54BEA45BE202F88242AAA4739098DF77E5F640152CAA471E41F659322B3C4A4634D62B750C862D74DD93473AC7A4EE257DDB4
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: A39F4154F967EE3F11E02CAC6C1A1F22 | sha1: 7ABD8A31457166ACEA687655FDC2F7E1FC0BB3F3 | sha256: 80D4A66FBA8F01C33FAB74664063C9AC354A71D32DAE2E19072F5AFAB8BEA07D | sha512: DEC14EBB8F08A5DBCA56523277D40EA8E402286E27AAFEA81B3F4562226DB2CBDD16307311F9130A365A58755F80C36022A42846FA6C0D1D401DD126ACD8BD62
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: EF317E45A7F1098981104538C8F65ABC | sha1: E995D121548821FC1D75DC4CD552D8B1D54A2ED5 | sha256: DDC362C41FB3E927105E9BD4251A9D70F930AE15775E5446EC92495AAE7CDB2D | sha512: 69B63B744B3B7FA6123009876AA5DBB7CE89BE596EDFD1AC6B17F1F88A1C2745C41A74F8B0BFEFD1238FF65C28B1010450E4466DAA9C93CE47E10675620F63CA
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: B140405EE2730D3387BCD72C4E1B8B68 | sha1: 0E3F2D0F97CCCDE955EE0C854A22C7DB6C898B56 | sha256: C608AE1A203B6C6317B5BA8268984C3724E934ABEB4DA3A29E1A410065D01E9C | sha512: BC86E6E0172AE120DD68E194FF7AAB453E6FCF8D03DEC0E266013BC35481D97FD53A8B495C830EFFA36EE21A1A5BE355A408591BB1213548CB749936B73D58C8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 5785BA6B0671CC889B7AB89EA8D925E3 | sha1: 0AE4C20944E877509C2109517FCD557FE7EF42E1 | sha256: C18FC5364EFC940F521661393640B4B0EF03951AB9B57BF3E776DDADF63C627B | sha512: 1611C5CE91C400BE08F0EFC2970C1C5D6B3742C4279A77617CCA6D99C4B0BC0B25B85D2FBDB4757F9557A84CD9FF557B345312138C97928EEC7E6DB7B8882E4B
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 85872EC1CD2C4754579E3E2ABA268E57 | sha1: AF2F284E51201F175FCFF41796BCA2CE2B43797B | sha256: CE9E2B66A5527BA84B82AC8626F76F089F222F2FAFAC5B8DE3B675B7E627F535 | sha512: 72436BF94E393F90ECC70A63F7AC96BADB01F323C6C1C8031EA6D3FC68C60711AD08FCADD4199D5A70CC3981C05051569F59F679BCB0BCB85EB9DA88B9DE6FF8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 613BBFA22385AB26A0AE602B0F55B5D3 | sha1: 28F75880C587454052A2D0997BA975FA96D83B91 | sha256: A321A69D58C2DE26E20D6DCF961176CCE8AD115ECCB32C6F44A62672D4FB1841 | sha512: 9A961266772038685B24A9FE69277D687091B6074C8FAEABEF48FBBB47256AE3A1D0BCB930315041397FCC368810CD1BFC362181C7AB8FFE97CFCB9E4546AE0E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 360043DDE34FCB2FBE005C494370E99A | sha1: 9363E47050661BA21FDDA2C03BAE16C6687329B8 | sha256: 15B713F6C126903D9417C11057A1B82FC7AF7D9C0E1F68A5ECB53262EF1F511B | sha512: 57A50F9825D343E665CBE7C7FB33D9723CB9D4989DF28FD04B25671DDD7831CAA7FE90CA4AB644CF0CBAF802AB7351123AE14074CCAC892FFCDCF4684E838EB8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: A2D7D7708DB4E2C21514B826E9F6A16B | sha1: CD00F1B19392C5211FB7CE3C9DB40FD2094FEE37 | sha256: 8D191F460EFDE0FE8EF5DCC556A02B45DA16D716715A575642ACC09D1585A6E6 | sha512: 00C6E3AFC51A70DD3014912D5A925D584A33E9B4900BCD0113DEECF826A443F789F977B978E26DEBD9B7EFB33DCBFD220083BC317408C58C3BDF901D855FD051
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: C3CD88505784B59E6C417EB6776BC1F4 | sha1: FD97D6210861993635EC6031D4C6633166C0AD4C | sha256: 727AAB921FE008DFE17504352AE8048182BFA218731EF7F6E2116EDE9E22B40D | sha512: 3E1C01D45D31D43E951A804E82511301055B95F1EDD1D5D70A9C21C7FD4F40DEADBF2AFADA01745BF920ED92B58FC8F7B88F80A759440117BEE85AC4902564BA
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Common.resources.dll
md5: DE2DA0D574C2FB024F44D3E052A9D2B0 | sha1: 253B61ABB46A38A49D7B5CF1DA52433C0C674544 | sha256: 478C4BD078CEF1BEC572E98AEA2C072DE3985DC741020FCB145D50B81BF60356 | sha512: 561F08E07CCBA5B2393379142830B6DA743454B9BD322D2C7BD388EEAF6B76AD7884F9729FF8D40868E115FC16708F077D83E665A43F56F3AA82245A5C97398F
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 9C1B27A33D9F13C78B9F4E47CC72FDB0 | sha1: 060FB43ADC156C243A6CACFF9106F586583AEBCD | sha256: CA0ABCA6D250C43909DC5FDB1A2A39FEA5B2544D97105EF4EB07B24A3082476F | sha512: BBD1BAA46B660F36C8EDA9BAC1AF2ABF61BDB22F56A7C6079A01AF24FC622F0ED937E4BBA65FCD8B3F8955EE263D13B50E32EC24FC7FB9665E1A3E2CB7CD9EC8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: F9E8B5EB23E1C5AF2B67BA49470AF882 | sha1: 19E5673830A617D7A49141EC50F712B29C1C481C | sha256: 5F6177ED1D61E927A3639311CE533B65B9E04897ADBBA08ECE20E6030D91B847 | sha512: 4B7E3F679BF0FE23ED02675BC2D930FF2F734BB9B835BF6F73B478257949DE3267917ED7C9D4A544085CF9DF5580435411F27BC5C5D564CF19768092B6BFD8DB
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 37FA4377ABCFBF6200A674C8F6D3446C | sha1: 620726C4DDA3FD3C666678B346E39B7FFD642BA1 | sha256: 8ED45AECE28F630DA3FC0384D43ED16660F7F1A7B5F6AE400F919754A9E63B58 | sha512: 0F412D057B2E37D251D6AB1E07F41187B78D1E84B40C1DA2A88BE2CFE8F206B2FA8F49517D05D9BA7C3A3F4E755888696814368D1A473F42A525680372835491
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 90C6083EF5BFF7F9DE20C1CA12826546 | sha1: C6C2ECDBB8CF8A1F2F7FB3CF78324F89FCA44227 | sha256: B67BE0D5E12DBB43D59B31A2D9F93B4C9D7EF913034FD4295A0A0046A3A8114A | sha512: 691B0B210B4F6D769DC39ED79C40D3EE8F3F3AAB38C8BE7667F34A696F35CE56BE9F8376F99E66DE28150C748C7D317846D96E6C9ABE8002ACF5834030E1B8EF
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 067C92DD2700A582308466A3ACB36984 | sha1: C7E3378639DBB38F83853A602C6ECDDEEC9AB237 | sha256: 4145E7C164972BB29D09F211D1FF23B6E8BF76227EC58B715DA24E9B71B98848 | sha512: 9786387366C425680B1D698FD4EED04FCBBDCA4AF7834C7FF059079AADBBAD3DA966FD254BEF34196F491796455ED0A8E207BC598C946A33823D5D94F74BF735
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 4BBCEC6F9964600485EE9466BBD643DB | sha1: 71B818E554A270EF3A1498C10529F9B818BDD6E2 | sha256: BF1FD97BE60764FAB6328C907875E5968769102124F491B9D189FC0285FEE7D4 | sha512: 11D6D63794EC89B4648F3C9A2DE9FAE2ED583FF2DDB97EBEF432A4B56324F0F89518A2696B5B33B31C821F2226BE9FFB11C6AEBD8F8C460DE762F971C85B6157
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: F582A2602118A2EC74A34567627CDC8F | sha1: 6F904B188120314EAF1FDDEEE3B4FD5BA3A3FDC3 | sha256: 899A205571288FE4D23BB50C5C021CCC881F5D702D8AC3CDDC7DC1AC57E389ED | sha512: 8F1BDEE92735242C5D6628F19D6E1C558CB0A278E099E905094F87DD1499898358EE5E4C7BED008BA8A68C0BBF6834AD9F5AE340A3A7AB53BF602AC6A0EE10ED
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Client.resources.dll
md5: B5BDB6515A97107D41278CD876C2F437 | sha1: 77F1BFD63B805414EF732BA14A315F1C3AC40955 | sha256: 141CE1D13A43019EE1D9D531E45C55C5E5138DE0103735E3837736436A599A7D | sha512: 4E915D81301F3BEB19531C7F2C7A59E27BEC64239687CCB01DFD7D0FD7D55581D597214E4E676953A45E29A61B352D8709DEC09BC780B47F35A5E9A3A5E2E594
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Common.resources.dll
md5: 2A0A32097C55761CA751ABF5FA7CA280 | sha1: 2D51AD364135C81CC7BB0C54D0A43BFF59CDBAD0 | sha256: BB446813BE6A4463B07DAF6F55271C3B24A70280DDAE44FEA4D607F33F64D284 | sha512: E4A0E33E0A11F8C6BA108970FA20B97E2A28A2784AC7C5EE07964B600BA30EFAB06A4562E4E18C85672D67486EC9E832316DAE753D870E5B086BCDE5F3565897
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: F6ABA7710CCE6F839DA2EC791A6BE1C9 | sha1: FE38B60BFF6923F8A942DAD1437046A1208610C9 | sha256: 8F25860E415827560AA00CBAE52B981C7C7197AEB87A86E9493D6E9FFB73E366 | sha512: 1E89BCA52B7060C7AC6E011D2711F4118D9B1F7E1AFF776C89DA757A027A85BFCF085EEA9EA8BF3FF627754564AB266DBDFF6143DEE566B5C2126040E33400C6
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 13317E0613DE5905D372480E235B00F1 | sha1: B57631ECD851757A916CF49EECDCCADB34A8286B | sha256: E233F55788E299C92E1BE62518356BD39FB1136A59C5FF9F477C21B2C3CC7C28 | sha512: 96340A0E90A90E1D8134B96388E8FFE002D15B62A7699291C79B9E32EFF60A456CE5A95EF48D188B4D39DF99D6F236BB749846FE852FE133077495292A4EE524
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 85102E3B99233C41A9993AF9210DE59A | sha1: C2B5037C025B401F16826D6E5F355CE3A537A8FF | sha256: C12DB2F5BD90382A11952503C694255B81A90262E4ACCD4C402EC49EFCC05E38 | sha512: E67E69EF755AA3FE9D8CBD0B1F1CCE1FC1D0362B4B8BBC7D9E28E643A81C07D3F4806AF104C0F23DD33DB7AE1AF50F4C0423952173F47D2E1F7B724CA3812288
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: DBDB5BBD6DBE8A7D2332EF4F6276F6A6 | sha1: 941334E3D22FFB0746A36910810A2FC5EAC6A633 | sha256: D2415A15D0EF14DBD9DF97A12FAC04BE52897879A497475485E18D4FF4560777 | sha512: 7D99AADF5E86C33B7B39E790933A30F40A72086952DF89CAE64E845FC21F6CD9DD214AA125DD180B5342BAB49B3E6BC9455D0868A1766C81A53F4DAC4B9D2E10
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 2637553C89F316011FE067DB9A8F97B9 | sha1: BE901275F6488E3DE9E932A1317A48CDA97E887B | sha256: 5614323A01B9943382538E5543E91B4D36C997F13D60881596992A1C34714D2F | sha512: 136D431F91D01684C97A1BCD82B2CF6F3A2C0ED87D01B0E2ABB6A95E4B483326BB4BBAC2E45CBC049D6104650A056CFD044C2FC74B8974DB33CD87D64FED29C5
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: B78C353705D2F5EB66164854309D65B3 | sha1: 2C81251DCF118BB87C4D66D398FF75B16FC9A94D | sha256: 4CDD78233534FFA2BA2B88916A27F8B4B8E60CBF1BB1877F1D0144454C140B1B | sha512: 384443A55DB78F50D990F033C99403BDC47C5D0ACE940485C03AD7A0C3FA1F0C7F19DF441F410B11A0D38DB55FB092CB3F5D1725D2E8E2E81DC8E2D845ED4396
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: E531613CAF6A56A48F6D4D3DE1677250 | sha1: E3649AB2F02CFF555A8CA31475F3E9C0FFD44D28 | sha256: 3BB8F717716914193E0A061012BB81A9C4830788F82AC27446B9EC032F479EF9 | sha512: 086E7309329DD8075D1574D2AEF6D73F71E907F98A99F4933F53200CC6CFC9A2EC0718AA7519B64473EE61E45FE352BE7AB389DC80AFB7AF3E3C5F851A8ED5D3
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 290AE1E9C6D80A05022D84F8671E4A02 | sha1: 8C8DAE80ADE3661C8DAE5EC10C472D716CDFB5CD | sha256: 2B9FC463D0300FEDE3C9B1289307CD8E365977AD4B0353936C15D259F219DE52 | sha512: 46CDE96BC8B06A7A9935A504D2986117F41CB2AF22015110E17BC12B4D23D7166195AA454566807530EF8170F19D86596CC58B9D6DDD43DC61306839D46A605D
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: EA150455BA6F09BE2662BA600010A6BB | sha1: A30176254B1028706479363F89EBB45C36A82BC4 | sha256: 7296618272B7FFAE6EA523B764AB59B5499D3071AE4D4FB426AD5EF679BB5111 | sha512: 7C3C152FF018536D3E1EAB22B53B12F526D3C0986CF9D420656A73FDBA2198A1EC6B70AB4AEE96350DC91EFAD74E2C436A33C546547624C5BD0A658F6616F6BC
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 8D9EF8181BB5F53D5E0117BC8236B415 | sha1: 06F2C0CC5FD96572C09C2602C56CD27A2CC81033 | sha256: D2229C49EF1C62C1E8D09A4F058B7FEF2A26C72F047DDA66CA41E6ED3357ACD8 | sha512: 45EE839014DC8A0A1E36A5770BDEE3E433443E95658B8C05A3EFEEF3C79584567B1C69996E1169C951C416764052FC14D58987200A481DFECC6A9349A64D392B
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: EE741B4CCCBE7CF87479DC3680D261A6 | sha1: 9798D905C34058AE1E7F3EB8AE046F5143FEECDE | sha256: AA5DFB9BB6331185872E5907EB5429BED375CE284D5D934216F332F1E1F2EB46 | sha512: 0F9DB3D871B701F158177D8DA2778275E1725D4B7232AA4F6344F4BD6531A82A038C400C0CDFD13EA3D3B4C7E938BAC0A1586A84AB8E7601E3BD608C441E3C80
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 4419A495E8E8CE655276951FF913A1EA | sha1: 0D33C25EF2EC7A15656CEBD330A5785642375D1A | sha256: BB2BE9E26923049A9C907A2D6E24F2CAB8EDFFACC45A5703B605DF7B7E50E671 | sha512: EE94C6F01F88FF8412C66551E6227307D14F1599ABB5C1384323132019F220FDE5F8D1DCF9DE236B76BC0EC0179293D595303C5428314B8DABE8E818F1C03C01
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 3A1D0495F9439A2FE63D55866FD8910F | sha1: 0129CDE44E7ADEAC6D16B8374C17FA7876433BDB | sha256: 67B9F474D6E770AF27704493D07979715250031283DA34AABBDB77F79245C121 | sha512: 61F3BF7C08976239F9B8150DC35C1A889AD27DD89476A935212DF103A55E49C7F2F1D10820D50C6AD6263D97D2F3704153FAEBEB18B13D4DC3D4D50CF1B76463
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 3AACE14F16380DB2BB554C115F475F97 | sha1: 6509C220D8C1589C86FF8E762E5D34517FAEEAEB | sha256: 97E631C3C9F09E2F3C48D47D7BEFB22CABDB26FD4254D779A179D25415424B59 | sha512: F8D7DC6EBBF72D512DE2707E778B85E8E3C618D558ED6763637DF484A0E90FD06FCC0091B2F8E0D6FE61E68142DE552613F08F134AB314EFF1A0B490F58193DE
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 742AED9C008578B89632DA8ADCECEBC0 | sha1: 28950A85D5B54C35E92320972458C2EE736EAC9E | sha256: 2A93AEE7DC63B94686E21F5A5F6B17833D0EB206272DA5087A6885ADD76FDA43 | sha512: 287E63231C1A7B2B66D587F54A1F5FEBA38BEC4861B3A8C26BB9F06630E49A2EA0CFFB391126522DAAAEDFA8D17421E4F3800C02AA173A286DA2E326DB89FB58
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 77EF4A3148D8B57D3961AB6E70CE44A6 | sha1: A741BFEA75C6641B57C62FAFE63FC1763C2F4A05 | sha256: 4240DD62D595D1A4437F803CA721B7FAD69847A715264542AF35160B97E9E304 | sha512: 77CD9E4A842DBCA80B16607990A985F6A4E23E4405EBCDC8BEC45D4EEC8BED318A6262E6942F864E1BDAAD91B412A48BDACB68856A3496BEBC7126F188E1834F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 3FF827C883D91C71106BE92A7E80970C | sha1: B6E57234D5EE862E3EF512CC2FC68AD1EC4115DD | sha256: 0A09F0325E2A866B44A57574DA1CF91E127578A6ED8D73D11122D87A515AC07B | sha512: 19BD10FCA2393C36DACC6B6C5F102229DB966C5D8C469E1328111A74B185C6C5F854E82C1CE36D0C7079996F3B735176A962B4C0386C3EE4328675639ED8713F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Common.resources.dll
md5: B60A20938A44A8BEECB7EA76E01CDEFB | sha1: 29242B319A2B938E527DDCDA777C43B1E16BEDDF | sha256: 1EAC92DC92AE01309D7371D7D307B83666D5C3E7A7970220FDEA872AC62332BA | sha512: 3222996FF69FF3C759A48DD7E6DFEABA72E71D2829C6FAD830C2C841207D737D3BB3130C02F242694DC63D40F9F6EE20C2A28A728669DD05BA0CA1A7FCB68BAA
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: ADBB70C110A21488CF846087FEBECCD5 | sha1: 2685E362A7370061C06CEFAF4B3CEF45FFB74229 | sha256: 0934E1ACAFBDC39EE410C19886D257C470AF9DA61DD0E6596FA6CBEA34D54011 | sha512: 9A24DF18D7C434662618D6A8CF9DEC6EB9F6782D488C58CEDF3B823AFC1D8E50C731C3421ACF2F6CFE927F196C0FFF4A541446418D0E3536B8B605C000B1C50C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: D6958D509AE1D981DD69B57447EB2008 | sha1: EE761400A2C8703A77E04A985391D37C4E8AB94C | sha256: DA853FB9E07FD45EBE7EAD120BAB5708FE634B3CA2C4E7107457EA4DC1A57E06 | sha512: 9169EC1B02AC57880FE17260ADD267C0BD4403797DA8C3E5A7FD176EBEFBE39FC23B100E85AC5288DF754EEE2ED5386460F4AD8BCE372775714B229BA2FF54D8
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 36FAF373E7A803ADAAB793F39A2726FA | sha1: AB42B011E378C134EBE20F2A186C3F0D421DBBAB | sha256: 0209B66E974EF860B142C76436FECB681A65555E4B0E6864D1694B2B4EDB15FC | sha512: 1E3F557A7719B1E6506F176A3136DA57CAFEF0579B2625AC589DA8E2E6DE2A23D1719414337EC19F869500CB2B3DF841E5C21151BF2E111A20019E226FBF72F4
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 6A5FC0EF957EE99A001F46FF7CD130D3 | sha1: 88A002BC0508BB01D7FFB9379D723160B95DD717 | sha256: 0DC76BBB585EEEA32FC550B451EC1684B6C48031DECAA52923C846BD18F0AB56 | sha512: 645889C89570EA7FCC31B55A257A2B30860A9AEB959799686955A2BBDB0EB4CCAB1F5AB40867C8297C013C1112E2DE8A5973539FD348C0D7BE39D8D909D05C85
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 97D511794EF6F90B47E3BFE76EB0F5F5 | sha1: 3684FFF0033567075AF678480F796A2FF2F9B642 | sha256: 2ADE80B88DBE492ED714D0573162A7F4EEAE07F13C1D777EBF01B493113FABA9 | sha512: 16DED4B06330A237503355115CB7F78903C1AAA4018CC0075AB787F8D7BBD48203CC228697EB72360C71F39D8FE344B54ECBA7A93D5E93F14BAD144A380469A9
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 73856F5A232053E43E02BFE45DF49974 | sha1: 3C5896137DE16237C042C4A20A6B1890D333D5C6 | sha256: F53C704C73B60807466FA76909895A3ADC6264CC74D7B94E7B71C6A6907E629E | sha512: E54F586CA5416CC079FD681356BA1FB0F6AFA53FBB52A2C15AC7521B386A2F68472EAAE4B5221298E7C794722ACF02AA981F17704706DA03E28C14CC63FDA316
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 6A2315267B9728E3D4697B43D3FC513C | sha1: E6250AB1FAC86DE2A91139F013D58B010F46B908 | sha256: A5E0D142349FCFD7C358B59B4C86B01AFD2055B94B35E048947D6FD276892D6E | sha512: 67449FD87F1D382074FF48EA48CCE4175CAC83FB915BE6200C1DC44D8E102DB09C0922FC398C6CBA9457115181A18996D4475A7767E26E36170A098C9A4C9DAF
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Client.resources.dll
md5: A402EC8AA4BDB08F99374F7898869B0A | sha1: 0D44DFEA95E6417840FF10669FD84C6C7E1D52FB | sha256: 8F16F3F513739D0E7F7D000CD59402D156D96CF8421EE292178FA1CDED363F8F | sha512: 90C20F6859634C86AFFE7AD452911E9E00B964FA94C955EA7CD219C06DF7A34CB6EDCDEEF90F75CC2AAEA40203191A24458BEF903BD07656AA86CD37E251EEE6
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Common.resources.dll
md5: 1F6C0FCB96140689FAABC29328C4BDA4 | sha1: 10C81AC1ACFD054748C4E005B55D441AB81D9379 | sha256: 3CDE1B75DFF5B117170876A20E7C7A2C9D207566273227B54934C01208A8A17A | sha512: 6B61705FFE5BF8A19119D663C49E83BCB13569C05F330CC1CEAAE47863172A871EAC79A1A1B67F6C797F93A05A16430EBD47D5E122AC8F94E05FC2964665AA3A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: BA1C5EF2597303823E25CEB0B4C065B7 | sha1: D68239644E626796A3744C668A0E39F944EA34CF | sha256: 790E88F3F459B746C1DFDA599940AC25E6FC34315EFC679E25824C4EEC9104C9 | sha512: 5536B94C8071FF784C8A4510EADD11608CCDFB278971215B068DFC1E4FB7C5A6F7EBDB162C83AE162740F2EA07469780B76089AA7FAA32BFA093649570B38DA6
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 825D1E5D7AA39DAF58D2171872CC20ED | sha1: DBF159F304CE8E872E99FA81BAFF45A8DFB53A24 | sha256: C0972B14BCF107870124903D3E37E4A5C9EEB94EE32976BC039DBC4870F73CCA | sha512: 2DB234714B61109FB32552E1078C5BBA39046D70D7902CA04263487CB361BAB75A8480DD5E592B20B5E4813DF4C1B2E92DAFD32719881A2DEB377A987A2970E3
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: E7E8591D4A526B44F96D1DBC18176291 | sha1: 90AF5BF508EFB20092E1245FD4FA5F20DF424967 | sha256: 6E17EFEEAF08E1DDBFFF7CFCE8E60D6ABAE2B161613635B19C257D0B45C9AD2B | sha512: 0C1F9C9D481C4D68A9478523A929DBFD77B173C31AF3B231D3E8AC157AC7B1EE8A5C431595C7D3B4152D24CFCFE9D1940D3532BBCDA0A7C8FD71BA9260D93E23
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: BC169FD8669D97DAE89A960524D804BA | sha1: EB4AB0F9DF2A428214BA8F21ECFB2ECA1F92D7E4 | sha256: EADAF6BF98080BBBC17A93B152DF596B7E6E08470C61BBF8F0A3074A445045FE | sha512: 28B43A072CD16B894ABD44B8673E26F23A38E0DC5929EB2A78F375E72BE1E71C0ABEB2EE6E52F057C3B8EAB792BF6C6F13CED66C107A7F4B2691BD9B7261AA4B
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: D7829A24BE92B0FAF2CEC6824EBE5CD1 | sha1: 5EAC238F9A78784001F07870632912931AF24DE6 | sha256: 32F40789E46634761BCE31A704FE454FBACD4562412A1BC673C3F5CB05E0FE47 | sha512: AC0527BFB6BBA44C6B17F858BD18315241E8C7224F4B1EB00A8D6C2214C8004EE20C8D278C889F7DA62FF7D708EAA96023A86EA7DF079AE8456C903A9814BEBE
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 4B59390105B12229E38B5F4BBC363DC7 | sha1: 39294D87619BA57040BD15A00138B9D405EA51A5 | sha256: 9FB816C1C72BD64A4B2597399D1514BD296C74045843A4C2A2131FEFF2292566 | sha512: 7547363F4F49882EB2C9C62ABC7047AD7EBA764A41E87D8950C123DD6CFDB5A11E3E38A1C65B38E084E51155BF1697A9FED6AD43494E1D967C3BE3DC2B80B947
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 8F46E19B50DADF2F97FA3314DE17C568 | sha1: DDCBAD15EEB2CE9D71870E6894271F980FF0B958 | sha256: AFFDD296B9B2D11449B247901210EFA17C198CA770803603E4BC93BB92615CFA | sha512: 42D65A5B83C18C022E90E34177F2EB058C248742BEB45FF10BC814FC04C57973B721260DA79D0D1776F2878AC1775E7589FF6E7DD5D919C92D2B73B46D4DED35
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: F1D81226B1CC98B7C4B1B2C28A56DEB1 | sha1: B1ACFE6E740CF274BB52F2500F67A2028785AF59 | sha256: AB23D9542992B7EDD2BE2FF833A6AD5477578DE14405EE3A36F122A907FEA5AB | sha512: 8BC6347683E34129EA8947203D99BA5FD477FE8D6DEB58BA20C40EA2DBB7407DAEFCEA523D6289839F34E504DE6E03EF147CC55792BAD5B78C63A9CBE641B0C9
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 730B26F9F511A66CAA7CEECC50230908 | sha1: F153EF719D0A5C73DEF6A00EDA83A295F846725D | sha256: EE28977457CA1DCC6A0130F3F0BEEB894D82D92AA368F9E5D3C00D5B20D798E6 | sha512: 2FFBC74A7C18B8F7183F721899EDD8539E0E0C2339BC9870DC74CE94D1E98F1D1CEFCFBEC5F31D6A8953D75215C33D7449A2D84B149B6F45F2CCDE9CA75004CA
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 7862DBC2A4A315105976098598CCA9DB | sha1: 2B9903A5BEACA5F18589288970B8B2594DF2B758 | sha256: E69793B6621FD7F7CA8C31541FE993E50FAB3ACECCFD13D1E4A02BF4A3881516 | sha512: 13038D8136570B68B92A7DD9347F4F1CDFB940262E2664E00A1B3B1DA06941187A53D9094196B76D20314FF3CC345DC211D584CBB5F13B76E3DE1745545552C3
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 0276CC7658CD81CA25BB8F6985CA1F27 | sha1: 9F3F8DA2571C16649133ACA4266D0FE4D0DF3886 | sha256: A51D6160C4B9132EAB07A67DF2CA1A0A9A9150BA91ACADE726DC9E1EF54750D1 | sha512: 1A6EE95B447032ADEF2C94C44E880CD194DA3D5B6D3A8A45D4604ED9AD1026A3B43D0B704686F597F08642B1943BBE5E820AF6C81A1EC98BB0D57B8376726D68
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 6F1B33EABE71B3E489E29D8CCE4E3EE8 | sha1: 8D7BD874BC8F75A18CBE3B96A15E74E69BB0884A | sha256: 30BDB8C1C7E15D95BDF0EFBE8A65F772F20B600869A21CFA7E3ACA3321D5D436 | sha512: 75C046110E9B6AAFC67FE3E46F6BF96C10174AFC57CB0641B0A0A91D64234F397A5D0B11C2B51FCFC63FD64E6E8DDE8C3D7BE56854DB3D650789FC25E7641419
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 6F7B2DE22C5D978102B3B0B561F9DEEF | sha1: 932E4D2B8FB55C66B2EB1FA1D500C9DBC864BE01 | sha256: D32E4127345B8C983DB2E5A79019AF2BFF16A6561DEA49ACCBEAE6F52F8D22E9 | sha512: 4D1AC5431F2CC972032D57999C00C0F4862AE8B1F5D62684D87E5E2D4839C94CB0737B2841087DFB4ADAEEE6BB504408912CFD38E299C30A831E4431E92480DC
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: FB01B6054F81A025DA2ABCDA83ED18AC | sha1: 20E996B9EA37022E36FCFB8AA0C546861932432E | sha256: DB677F6276F657FFDAB9057337499487EA552BF14CA8F7FF3AA4CAD6899DC248 | sha512: 6206C4A7BD7D84CF27042F74AFF3C4A089D3DCBD0F998977D454E33C8450A825636AC7158FFDB5411D03BF44A0D641EC874F349B9DAF1C6B04DB8C4FF4259A6E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: F672C2066A6E1DCD150F5F05EC0C778A | sha1: 4B09B8DA8AB08F0FCA3CC687D7F74B1E30B9CE26 | sha256: 73672B64AC1B3AAB4EB588980E3FE69A98CEC2DA6F99C2C6D37EAEB761B06628 | sha512: 3F4565C491EB85653D141F33F9E317F791A17B2B5FC1D2405828B1A201BCEBEABB258A3E18D4AE9CE35B16D14770010C3C2CDD1A20254EF52FEB285B48DA253A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: F4D5F2B52D8A9B402EB7EBABBCF62329 | sha1: 070C3BD813C524422DA8CF57228567F04D34F939 | sha256: BCA5E3D90474FE62F734BB478421C11C7A514D8B0AA503FFC8E6F98D176C0E6B | sha512: 09EA0685CF59D6B24134114252EE1285441FAD72D55D71F8451475B49B63C165AB58C149E906D3A4074B77991DD404183B16CD819AAEBE8D88EDBED85F54722A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: B9D082F3B603DD799FB40EBFB74F508A | sha1: A82DD339743676CC5EB1EB1626CB5C2D439D7AF2 | sha256: D0ABEEE25107FDBE614710BFB438BF54F99B1B758ECB9E7A690CE5688A84896C | sha512: B0FBD63064DE7AF238ECBF276F733033B03DD78CAB39DB66937D3D53929A2B122879E3F5DA16B66366ED781EA461EA9AECB2E2CE247A1528D31638DC9A6C351F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 4B413F380950362140BDC50B151EFBC9 | sha1: 00D3EE0AF8BAF1E43266163458BD4C9FCB892806 | sha256: 7E32792486B58B86A8D97C70DBEADE2C900BE2754DC36ABE78979933A294673C | sha512: B4072B10B325B2C47F01A9DD15E2A9D088C78071E772F711295F95DE722E28810A9C8F6AF6CEB2B4A04DCC75E31DC7A4A0317A9D6D26273FCCABBE4A0B044C7A
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 9443287F10C5C10E2316231D9A8D4BDD | sha1: F787B66EBC9F160AA799E643BE0D3CDBB4BC7AC8 | sha256: 8075139F2A299DBD61058978EEE4ADBD534102D576C8D265AED5A91E0F810275 | sha512: EFC5283BFC3A36E5322A8EC3529842D0F33861EC7CD678F6D8D9ED9B896DB9A0864F13673F605442889057A0E75E82CE55731A72DC96DC1A504AB21557E726E5
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: FE08066313B63BA480195BD0DBD6169E | sha1: CD5FA6C01ADF91DFAD59B0B6D35DA6298DEAA8F4 | sha256: B3293EA94D4650758F41916A4A049EFEA9F96C3A85733AD2B473D7463F433AFA | sha512: CE11C7EA4E7E155A19B6FC478D22FD9E8CC80EDB6346A1030197D630B841553002CB4D82EE77E565079B788877DEBC275E60725B178013C9E34BE94A5049C19E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: E93CD2736575AC9E7FEC289CB7774173 | sha1: 0A2810986A60DB269F12CCFC4F371AA6DC9C784B | sha256: 80BC5ECD8C075E8F87845723DE3BB8D7F4AFD4A897D2265E08F57509A9662013 | sha512: F27A10DC31F5F7CB88AD5F01A1CCDCC05D9C844C8AB5F3081B42CCBF5F1B03BBD50D3A4937061C2C3CFAF3E3E050DA4358BFF9CFF760B374764B8D7C01551808
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 70415D043484FA4DA984E1D551528436 | sha1: 96E4A1E88A415BDBA328AF349C5088221C2BE740 | sha256: B904DD7D90577837FE0B71E920FCA60CE707F597D2292F34A1D39FB7124EBC6D | sha512: 0C2704724054FE30096EF15BBDD416511D454D5DF0A6D4F40AA4131885DA50D972957EC5469C24A231F23D073C27E0F2F9E021E80E57C5ED1B9592D62A14C6F4
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: F39540924BF5ED77CC93A918797C1755 | sha1: 083336C6125472E4EDA67992FAB0B20BF7D33D24 | sha256: F775CCC97AB9E8D06D97E0E8B514C856E59678547CBD50E4158D287A0C61C7E4 | sha512: 4B8CD4112E29D6FFD6B163FF0EB84FE0C9681A1F2FF2E41D2B941C8D91007E18E2925B4BB4E1071C82F681C331283D2A3CB1FF1C91B02325A0BB5456E5605E1F
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: 4BD73D5613DDC91DCE8D988BBCED0BD3 | sha1: 2DAD29727FFC5C756FF587D5F702A80411794574 | sha256: 76391E580E2A58F63675EB88D11ADD79EF7334E7310972C61A8D61AB43873805 | sha512: 207B381B955057419ED77FF1B14022ED7D386A3E59FA391F6C823A02DFD3ACDCF4B6B7CB04110D8992F7AF99A409E2D4DF59A8120134F20B2E489147A69A58E5
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: ECC745BFB5AC1833133E61BB74D96857 | sha1: 250DE969D668AF4CEDE4276DEB8B4FBC7D94C680 | sha256: 10496324130C7C921F71705905C7636868C15C815707B7563EE2BABF1F9980D1 | sha512: 6EA6217A77D8A83F8542CE024A3D0F2C406102EC3521CCB4E13A5F51B7755EEEA80C00552A09B1FDE2845F78F9237F669F765F1B5E37A370DA1A997BF6F37F04
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Client.resources.dll
md5: F269DF9137293F517E19FF8EAC69C2C1 | sha1: 8C18FBB9B545A7F7D060D06B980C51B9EC488D02 | sha256: 0606F31AB19D8E1BFE57E4EDA933DC2ED4C412B70F55DC4AC43BDE4F8AE1C631 | sha512: 94A9B07D7A3ADD4CA7B479C07253190F9C2CD10F8A84FEA28461D5B805AB07C7E30E62F97213FD0F76CC91E68C6CEC593E2BE6188C5E805935CD7ADB42D97F89
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Common.resources.dll
md5: A27E6A214BDF47EAB722810C7DD6D885 | sha1: 1263ECB221B73A95E568CADF992F900D72C4E18B | sha256: 93B8611E0DB059D46410AADAC7B999A0B318D6E860746740646FC8B4A292D75B | sha512: 3A05DAA1417AD461E2C8736AC6FB5933D8E0BA9A4279C27B2DA02341BECEBD2682450B4FEED324AB26E22899BCEFFC62179C3C1922B0F8ACF1DD8CCEB38676D1
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 7AABE85F9AC1265656517B7886DF6965 | sha1: 5410B5B0C1197BD695F4F23EDBE7BDE4B26E02A0 | sha256: CF65F4DDFC3323D898237930BA9CC20D4B899FF92CFAE55C81F95381D5DB40A7 | sha512: 5A8902303D7683EB48CF466F815CECE72969F7AC3DC674947A634E0AA248A9854B4F44A7346DEE265DCE0CA40E382620F9944AE4DE3E500B35B1BAE841917340
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 9A3203A170F4F692B75A5947FE73C5AE | sha1: F68F56D2A64C1B6AC21757C01FDF621A72531765 | sha256: 106A5CDD7028204914F06A8DB9B0DCC8ECB265377EC99D51EF022D2B354D0C72 | sha512: 33FE8FBE35261D8261EB7001AF8465B394217961B0C157E2D1B3FB888ACA5B329792C1892494CF8CB4D4FB321668533E8C8F770A43E22AAAA448781E4C6DE7E4
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 94D214D72B49948C8FACB83EB7109E8C | sha1: 2998220C639BA820F2924961FF0EA1079AC4B22C | sha256: C006173CA7FF7F6CB9EDB54DF1930827FC79C3E7B488BFB771564E053D7A1E05 | sha512: 3E27AE1FF27ABE8BA430CA492CD6034EBF7B93E7EA19E41C8F2D43712102B6E2A8AAACEE4BBE96196E3056F46691C545D491D9961CF0AD1AA98E32B580291EF1
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 11B61092F1E3B7F37B2E4636311E15F1 | sha1: E844B7953046D2EF79FA847DEC6C7D48630C54E6 | sha256: 624DEA1EB0E01B576528410EB1132989751B7D95BA0E95A69CB9297B451B4E39 | sha512: 66AB108EA95969CCE7F354A17F467A7DBA8884107625C56008BD55C9DBC6E308D56760A660E769E7DA76E5F48A47BBCC38EE360CEC3F2440B68285A52CAB0343
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: D17E6ECA3D529FC65DA56C7625C211AC | sha1: 2FA01C26677C7F81697DDC3A3D43CEBC2A38A3D8 | sha256: 9605E05BF3FFF4BC2DECD014BC66E8E7634B08AFB3BB280FCB37FAEBA73B823A | sha512: 25C4E9A6033F4BB67BC20CA2F83B42A13B8BACC73072CEC090B4936869BBCC10590757F21959BE8242058EF0A62B4F2AE89F54817061951F9B855B527BAEEF6D
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 57C220D69889874C40D5A8E96DBE19F6 | sha1: 0E05AA4EE42E6AC65373329BAEBAE990E7BE85E8 | sha256: 9B5BD37FE10EE5366ECDC073B7E906F8687716195B4BA9E96001F04BE22BDF49 | sha512: 607C3E74340B540F4751BDB566EEC7B82A824F1D5ABD80757F14795B36A5F591BCA01DDB4683EB4C969261425EBC86D2B6A692BAEA64332D0D342D5EEC0C659E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 1B699C8435BD5CD12688D711340C58DD | sha1: 8FA94EBAA0F814FFD5519DBE56340EC256D92D2A | sha256: 959697137189683D2DB8ACC74646726B791134D63CB89BAC3BFAE68B5F73E054 | sha512: AB3C9BC9ADC5C4B877D3800C9BC351A559E22647CFE6FCB47A17E6774B80E28C6DFD72923BE7595A9CED80EF50F25A43AD1AF6201EAB09845DB6E7E844C7959C
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 16666444EF428DE1673185C911AEEB29 | sha1: 5DCA80A6D2013CF5F9526814AD5E90D0F576ABC9 | sha256: FF8AA6135C0D6D3FF914194A5D7A1EF99D6E7DEBF5082965AD0F4E1E2E580617 | sha512: 35C2FBBFB312BA769BF21A9503799848DD5E0CE166B4ECD33AC742F7466C35BEF83BA73BD26935EEB6A0C0175A88D3988CDBF53334833192517198CC156A8539
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: E27777C0424D8B0629CF7F54968DF489 | sha1: 1775E94EC2467FD014502EAA37C5DB1CC2086491 | sha256: 459FC76DEC8906F2ECFA3FB37F5EB57B66C27994209B3160DF9BDD74090C603A | sha512: 036BACDF109CBE6311DB130C714798835A979273D2F6F5192B57C04F0FD39F9873C547EB1AF55C2D0C5547C59BFE15F0291611BD75D782E3754358C7A0F6CCE3
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 16930B48AA133ECB353C6050038B69DF | sha1: 131CF92D386DC691ED6A2A20D5A81F46C93E5433 | sha256: 0B165D74D9CFBFE0D897A62BACA80964D0E4E7C7E1A3FFDBF1506799A328D216 | sha512: 57415F47D49F253EDE1923472DD8EAD90CA8968584982FD02641C2922F3D633D8F54497CB4953F0CF438A01AED7BD2AAB8CC75DB9888DDD64F6C06C78DBD0B5A
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: C0F2D08415D50672159ECABC9E0F87A5 | sha1: 0C15F7E053CDA524D7A7F9F4B10AFA5FCA5314C3 | sha256: FFAB441A86D28696D261F01F6B9696524B349B49B6CDB554A576ECBF5CF8B35A | sha512: 06EA93FB9932AE6CB8AAC2761DD79FD760A43C9F71443FEE943972B7780550D44CA23B6E8A8090E078F886B3D9504446218F45FB860EBD6FF2147B7BE439D923
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 37877C5147706ED1188A1E4253BD73A4 | sha1: 364B06C726B8124BD066EF7ABD7997D32D99D4A0 | sha256: FBDFA43D4ED034F1A64C9E50EC1492FF3EBB1728DBADEBE64842B5B7E773CDDA | sha512: 75BEAF7BBAAEED5BDF273C4FD3974AFF639E78F22154A23802863EB2387C7620A5BB6098C9CE6357237E8888AAAE45AF331E320BEA604F1D6492291A0D61AD69
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: C48E0680D52D6112FBDBBF76D90C6D03 | sha1: 92CC1BF9034C6B300EDEE096407E24A13694D394 | sha256: 1BECFC72051A59879CEC94B0FBEE1836072121B5AF682FCE89E7C1F33E26BE42 | sha512: 6F40886F7E459B4ADE06BF661E2613CAB981F1EF830886378179BC7AD6E7B928C05460FFD9C0DADC1EA283AC1F7CE06B12065621530FD4F3804532D3AE77BA01
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: BB32225F7CCA39A7372CC650D3EA704B | sha1: 36C8068A97A74552A3C2BC7D0509B92AA415D8F8 | sha256: EA02B4199DB4868A5A6427C8AD0CEADA01BEC7CB7ACE8B238E3BC5B7D5C2C6CD | sha512: 16158AD186BA632CC48A986B3229512888EACAA6FB98F11B7E0BD1ACF183E5874A7DD6F0D98A8A0BA892DF0721EA1237F45A43B080DC8FE25922D2B7E022E186
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 92AF2905EDB80E82539B22DA226A2AC6 | sha1: 82042D37D802FF0957E2BDD0D5B9C3E022396883 | sha256: D5525A0ACEBD3A70A67895EA14C7CEECBE54E7A3651F85DF0CEF1965DE0A3C68 | sha512: FF90FDBF265E44BE6164403C017C38E0176624C12EF4AC9DCFFDC95E7A28E761F0A8076A4D9B3F8F7BFFC809CCFC959C5BF0A1324F80736636DA6D386BB59C9C
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: E3B50F5F75942EE42A29C29B86B55745 | sha1: BEEA7847F80E3EB3939C8A48D4A19E9B81847331 | sha256: C3ACE8652F6EA8FF202ACF34BE9EFF3EA62DB5821B56508C8592C38FD64FB755 | sha512: 870484619213F2BEC2138366D40A21880563C4811FE65D04B14E2A618F2932E96B5A5B2AAAE45320FA84FC6DFEE7C11350B023F556D560FBE1022109EC1FD7F4
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: C13DC2CA4DFDD6D03D693EA379B1E8D5 | sha1: 03175844F10F31DD90B8731937CC6C98DA909AD9 | sha256: 25BA7D479B1D5FE5F960CCAA6294240318299A16E11EA76B9958A70FA21FCA4A | sha512: 6A98EEA1730A7D10699BCDB97769503C2777AE3690AFAC60C02B7D71A8BC314816B407AEEC7E472DA9D72798A665E5BFC1F5E4E8F41E03BD8E063057BC88A35F
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Common.resources.dll
md5: A9D745F625A3AFEF14AA083307CB5EE5 | sha1: 984E34D3BD033B951927787C5D054B94AA04E331 | sha256: A9C2ADBBD0DCE1F139E33817744E2791332CB7EBFBD2FC7E099895943DEA0BA9 | sha512: D63FD7CE0BB4999E92A784FB999899B808D674085A2C9148C9F6ED25E57EF1221BF2CA6AF0A2883BFDA9E92C07480BA7E896C652E6B67DB94C8EFA1332419B34
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 92F633E73012CEC7F2C9D6208410CBEE | sha1: B01FCF8166D09BE0983F88018FA7C92F43FA5353 | sha256: 6C939843CACAB9DA4EB8B1A00882BAB7702A0C1836AE19F0EF94683E3DAF3541 | sha512: CB0D3339CC696E597BB2AEF65F1BD29EF64538EB622C73721896DC546682126A9BD71F9ABA422B2A66D5F54BA6B13B9F85336A0E975F9906B4C379F37F7C8865
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 289D2762B140E0A8A2DD07414D093861 | sha1: 87E53F655E4FF1A68057F1CC4C8374C53F6B608A | sha256: 29674D5CC461222B9B3091FCBD9B638FC621F5A97DE86626F4FC5DD49E3CA5D3 | sha512: 2CF0234D638BE15588324872FEB0F612B68671184F8FCB8CDE04460F61FEE97445EB9B7479255F22E54EEEF3DBC7DAF3E1C4C73604571C4D2C336F2F0EBA120C
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: C0CC873BFE6B4EB7B499C05A083FD0F2 | sha1: D74ACC0C8BD3AC1F0EF8745A28712872A91E9F11 | sha256: E02DD85DCA6D333B357DBF18C2B92F7F74525651007E6343A3327A3B9F0D464B | sha512: 4C50357FA122F065BB50A87397A98BBEFDFCE16B981154057D44E995DF6EDB51D48B30185C8D5E6FD6754740D55A9ED6668D40B8863C94CDB08876D8BF22E17B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 1DBCD8ABAE63E8D4204EC149CA6AB61E | sha1: 13CD4F498B9DE9C1199488F389519A0C87AF02B8 | sha256: 96D05B9DFD29E9848D52ECF454F4D48396D91355886AF15A220497F2933B6C53 | sha512: 57FD6C53376DA13ED3BA35BE9EAFF73930C36635E3C65F8B1C1345C812CA220C3DE4072EAE458742A96808A142895D3CDFB27B7F01ADCCCA723670D911F0C8A2
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 8328D1BBE25AFF28B965F123A55F6775 | sha1: 1C1BE9B59DE4B383F9F2072AAAA6454AD92DE846 | sha256: 566383901AE7087E2D1BA25204B561E24CA146392DA635BD4156485E0AE6FD5F | sha512: 50B7F0DE360B7C1BF78B79138BB1047C335ECAD520800FFE97208F81BA6BD598F4B5B8F2B2277CDB4588B34BA797612598E7A91906C94BFA3C3712D6BE06B877
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: A956CE939597411910D40682EF387912 | sha1: CBE990E104809A516DF878697AD1BEFA14BDD534 | sha256: D1D6437773155A4E2D6AD83CAADFC8E25A40CB834A8FF955245FC48D9965A929 | sha512: 3ED0758917FE70E39850FA4DF6D0118799E160AEB661E5DD1C247DB9592A871A4506E904C56100417A908063EC7CD7552DD4E43AB5833245C9ADFD3AF2123A64
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 827E3EBC4597F8985B906F61E8D58DDB | sha1: 567E21AAB09446B68B2CB64CF112C606A948205D | sha256: 3F3483D033C86FB00BA49711424F54756649D00FF18DAA320FF21E661131E9EC | sha512: 1B1594FECD559BFB814FEDAAC52ED7761CE197DD23916ABEE6CB430A9068499F147BA7F062E222323D67770E1E3D927C17CEFE6F41A72335E393462A7711C32C
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Client.resources.dll
md5: 757C6CE5511CF68AC1EA03B37C6A99E0 | sha1: CCA77647CC7B3F5622CCD7C651BDD52C6DA5F82F | sha256: D3DB57D0C277CC557E183D1DA8DDF678B0DDFB85CA79933259024E95A0DDC287 | sha512: CA7B2CF7C15A7E30826138CA4C3AC37B5AC00911D9D6B17B9709853613D494EB1D973C5AFD2999FDCA0CD2008E90E0C9AE7E18989F145F7C7A5F6A121E502ABC
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Common.resources.dll
md5: C71AB5959B4620F7F63116A5717FA74B | sha1: F882D5FEA623BBEF7E355258B8C4EF98C41E9117 | sha256: 85A465FAB81D0E3A7AFAEDAE925363AA5A7B9AE6D6E27432541475EC96D07D29 | sha512: 8C0C249C76BFBC7C88ADAEB5C9FEEE207E1BA1D22BF32211550B3AF0488CD742BDF9A029339F97D072E2F408BA3AEDE787DBF5C81297552E80F994E8AACDF65D
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 72FF7CF4DD60653D1F160FE2A253C144 | sha1: 95871D4FF92C607F724165A246C314A7F73197D8 | sha256: 8FCAD9D4B85E7930A6546731D6A1DFAC12EF3313304D14D6BC7537CDBBC95690 | sha512: 39CAC9051C9CE7DC250774DCD34C27DE542027558773BF69A1CC3D51A751B4A2A4FC2D74C0B6DF0AAC50AF1B85F447B69CE15B8AC8D6DC90EEE04F90D46FBECD
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 1405A2DFC9EA096D67A7FE1790642395 | sha1: A5113A97293A3AB97C9A6E1FA9C183662C2B9C68 | sha256: 602508F52E12748BB2052A410809F7C78A2D8EC1BDDD79F1762EAD4016BE9866 | sha512: E4CAAC3EE154E6C972168A43FB4DCEE286EFE37808D4A9C3D0DD2DEF3EE24D4D9402A39BB81AE916ECEE3E7C559ED9C591989417C6BDD8134E40169CFC067692
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 6BDF13301E646C8D1FB5F7948FCB26C5 | sha1: 1387915F56BEC50B33488A9CC84AEA7BB7872C01 | sha256: 778501C2EDFC4A428AF043B21D2AF019A69E1C60B74DA0F5C3DE104B3CEEBAF0 | sha512: E20A9C144D47C8F67305B710269E2BA1BD07A7B4F07B4D9AB5777C2C203BC59C4DB2A72DD2811900A9AED76ADF8D8BE2880BDFAC3E9D171EEF9F6B36DF67313B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: CE037D75DE0F24048F9BEE63D9DB5FEC | sha1: 252E0F3208AB7415C54ED571756E14F38D6E7F07 | sha256: EF7A8DD4A9892D9625E2B6720A50703605CC71B265FDCC1A809B967E89E2B75D | sha512: DF7247841A1EB1C28F61C35D4263AE5D84DD59084017C338CFA9072AB0018613F89CE2B8E0F788883A14FC7A40B3969D6D7F304817AE129AA9FE8E316AE59F49
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: E3C51483E58A144484DBF45A80E686BB | sha1: 2BD1FFFD160241DC9CCF5201F2D8A733C3D10EDA | sha256: AAAB19434CC7CEC3FE7B597FB0C0013E41EAD4CD49017383104F4402361CC48E | sha512: F59B5E2EA53CA5D1652F4A6D64B043A91ED9D08248D5CAF7B677DBE7E228FEE8F341CF93458949ACAE581AC2BF16A9B2A57E1F4EE4764976B4CDCF686540A569
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 9D286B34DA37A06526003F06661DA596 | sha1: 83EDDCDC53748D583E67CBC2BF8F80325745A34D | sha256: 15B519E3B5B7F744EB33CA52FEA8F7539875389084F0B7924DBE89A95AEF76F8 | sha512: 6D88B767EBCE67F7098A6441880345D3C09695B88F8481C40124B5639FF1CCC09DF7ED75F797F7071B68292DC63EA8E0ECDE885E9ED019BBED0258C73F0F4F20
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 10B4755BD6C450EBE1972424811FA3EA | sha1: 1FF4F73C5C39ED6D413EBD34AC98AA1F47B592B9 | sha256: 5C45FB1C0C8D9EB49E5FC66CB854785AE39F30B76E3ED84094C02C8A481E2696 | sha512: F8C0C0C40D8DC3AE818C25760336AC008F38C619FDA5BA75396A74349731A34D6198569888747A81E11E433961D7EF588AAA823531902EDA71D8635B64F3771E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 1ECC1E8DA5B78B9B7B51F9D5599F8979 | sha1: 654433858F10DB22F92BFBF7D4DC30DBC4455B88 | sha256: B3A6324B56208C69F9D6ACEB9DB382FCD18A4824F8ADBEF1C1A9ECD2370EFCE6 | sha512: 81647A34D02D07B341DFBF4199293F2540F286A7F1E63D5DB7A18DE72F07507043D00471A1EC14F3AD2B0DE695A5D566FA55B7A680D3B59F1A54452CF0C29AE6
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 0957A48E6DA1E27BE1C2060461B18D3A | sha1: 12F5D2C358C16C98C02B365ECFF06BB288F4FC9A | sha256: 752DD045287AC74DE90D3F1C5966D631619E06BDC19269D3173A71ABD1F8FC5B | sha512: 756F8908889A8ED4D16FF58A491D0723409A3DBD27BD1741B48DEE246C3A24BB0A5CAC79D753BFCFEC670935E53BD55C49D68F0FCD471AC78114207579FC8641
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 592587152422B86CE9365FED357BFFB8 | sha1: C96AB945AC42D89D6A606368E6B350F1EE5230D6 | sha256: 9A9750C1CA71542BE2D842AA4FC911BFD36738095520118D0A0354944DE7E901 | sha512: ABD1E424B8AAD0579B55038E336DE239CD5B8538A405F4EFA24ECBC483BE2ECC83601F27124E28620A884A43EE2C5E7210A290D364EAA6E17E4509FCFC9281D2
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 285861F3B5C1C26D90148E3A5AED6E4E | sha1: 7A6674C200C7089F230BD530688C711F664CB126 | sha256: E10C57EC418691A0DCC7DFFF512B4C02DE148D8BE5A98E1E1B2E6A886C39F0F2 | sha512: 374D75812EB873D1CA6D4749992C38CFB94B1FF81961AC4B4F386F57BAD63FFA708D2A34233E40D132CB63F3F57C7E92E306FE4413BC16E3B430F4646E2ACCC3
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 971026BD2EE5EBF5D37E39721CC65018 | sha1: 4B9DA31EE5743F626E748EDD5D6E7E362C8C0FCC | sha256: 19E096C59BC347764324A1B2331328A6BE9C854BF90540B70C13A7AC311EFE0E | sha512: 628242E841D5D4E21E9F864CB23F4CDE58AD1DEE45C84266083D4F810D8D1C75FF254CA995F6358B3D93AB630C189E28844E3A616DC11AAD65AB3C64054E7BC1
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 571F29EBEDBB1528B5FC684DBBBB187C | sha1: 83682E8E81A9AE879FF4D030FC14B224803D59C5 | sha256: 86F19F6F0A675B368B12E2991ECCDAD033A58FB9B39DCAB197ED55058564F7EE | sha512: CA9A4C8D4B460C31605CA7641E1C44D8254DBF23648FDAA927A1AF3991BFA0C2D1191BE222C67DA8EB1298A1FAB0129183CA41C8BC853D98B2BA05DDAB32BFD5
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 40DC7C8030265B01FE749273D6DFEEE6 | sha1: 3E6361036CCC2E5F3BF559556C7A1E5600626FF9 | sha256: DF49EBDB6A6A099E51D445DD7CC126C39EA7B9697DAE0C1DD2F9151DBA30E6D4 | sha512: 8E703624B067EEA33E980677375BCB4A2745CD151330E6DFB131E0C42E1077D02FA5BBD0F5ADE8DE91C24853B4C343CEA757C62448DD2FFC4DE9A6E79B9F2F54
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 28FD20B0669C6F2DA307150EA85962B0 | sha1: BA75FC6A1E1EF59A8E7DA1489339B5AF45AE0E08 | sha256: F2A9B56726353F0675C6E8F63D440D55347BFC19BA43FB33B694A038BA4770E6 | sha512: 10F6762AAA5880DEDD0099BC0EA933D11D23DB846FFE2B7E5F1A6CD6F27096DA9630AF04EEAF0C37F8B73FF3F325A8268193E3B2AB9A9A838AE66741422AA760
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 8FB94DB361F46A4F5BE3441072E1809C | sha1: 56543416AC655509F4A48557D73BB01461D9B04F | sha256: DBFA52F01A37D014AC1F12491609B032D73A4BE683F21469EF4930F8786BB9A0 | sha512: 3C0747C2EA027BA5184316CC1F112A8D3608860D20151B7E44B380BE9F20FAF455B785ED4525D5A113093FB3AC0BD5956D6E96BF93008AC5E76373A30DA7BD72
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 7A7AB78246D259FDA4E21218200F9C23 | sha1: 5018BF14CFFF64CBEB95062802965B4A641534B8 | sha256: 6BDCDF8058BB75DB3081C5454D04FA6F12966C62D3792D8C3D66E1F2C95139D9 | sha512: 25FC9A287A243FACC903833FB104002B160760CF964F6203C1C0A475D7083357309B2B09D77870B1A4E5135AB8F1CDB7080976A9CA08FEBC902BC1821D6DEA46
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 9C3660442C6434AA4291E6B2A0E16E23 | sha1: C9F1E50D333740AF01B1C50FA79007D2B6A8935D | sha256: 96B4E2DB78E4A48E3A15B4517FD9B4917DF9765A700142A29A64E888B964DCA5 | sha512: 03868FB4CD44DEBCD9537D63E7750ED78A564CF5C9D7866639B52B20CB7215110D3A3D742BC96FA67BC907215F47FB1A39D3F4B0E6C41C7524500571C20CF189
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: E3ABE4F6DF6E19EE0053043C3C61D166 | sha1: B40E8C8478FD9468163ECB66FC5D65D27BF8691C | sha256: 793DDCD4AFAEFAFA705F6EB4B053EC6C69613D4B55734F1C654CBA401E77FC4A | sha512: 46E9A5C79512D8DB73B1FFA928EEAED61B4F8863DF869C45FFAC09B9430CEFCA92E1BF0FB168B8BBB1DB60C6C9FBB4157D9620022BF187317BBF49E6BDAB5FAB
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: B1A258170A9BBF4AFD43749E8ECA356C | sha1: 8754BB2066CBA682EA4148FFDAB331DC13A6AE6A | sha256: FCCC33F42F09749C7CB383C2F45AF4A5834668F150AE592E94A72AB6731A85FE | sha512: B943792F2CDA811458A03FBE8B574449E84425438E568E93AB8E20CD18587AA5B279FCFEA0E7B39600F5B8DD1A66FBF0E0A4E949545BB9EA4685ACFF2B97A46B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 2BCECC0F207059161D83918BA3C5254A | sha1: 485D3A1B9CB2D5F7AE2A5631FC324C6CD971DC43 | sha256: 9C6B236BB4D2C5F42469768A8F21689174437165E11243F48D743864C6E9D6D4 | sha512: DAA2FBE6EB7A5C97BB1C877AA1C5CE5DB842A5A876BCD0578BE62D63D9D2EB67F7BB8BC9F01AB19C9C86FC0E9B7D861E81166125D4A5357297D0D8A7FDEB551B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 85EF1E5448A0DDF6126E68D8A64FA4AA | sha1: D4CFFD9EE29121595481E1F53584F0BCC0BCB901 | sha256: 5C11DCE05AFC1B2F7C1CA161DCB5646120B1D5E3975752761E4F63D4E84A35D1 | sha512: 14AD5140724F567720597CCC28A07E371FC2D59C34A511C9247CB6C1EAA1A7A93CF7BCA2A0FBE41769C3D7EC7B90079E6FD776CE8F84597BDF37B137BE648CD2
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 70DD70E6DD7A176A5D8F8B39BB954111 | sha1: 486659FCC0A10D36C38806CAA1032DB84AAB0205 | sha256: 08518B6C11B512F2AB45C22D52FD5420D46C6A02E17D1F577AC54F6CF8DDF77A | sha512: 0E1B6A1453439E54E58124775F5DC85DF38C3D119FA4464EA9A17C9C6F4A2BD104610D9FC9512AC67CB77E7442F1316FA7DB647B8984B46947D90EB40DBEAFF1
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 58FFD51EFBA1AEBD69845D0A4F3F8250 | sha1: 86708F2E9673DB05AE69BA6E3C60B9A23EB8F3E2 | sha256: 447CAF09C94313C7174DBDFA4B8505098B51775294799322CE626043112C373B | sha512: CABFAACC594AB40831C1F824D503FC5E401DDCDCC8FEDFE9F84A6972CE829CDF5A08AB707F59C4510388FAB7CCA26AE6434F7CDED5DCA64FB5D0CE1B6886EBAD
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 67D52499178E461C3613F47E321A683F | sha1: 918C22A8516BEC025FC1ECE2F0ED5391EBE4888D | sha256: 425DB4C9FD1EF5053712B1259F2B85659714AE058D05A529729907291D579E11 | sha512: 2EF269EC54EB1A73CA7E8F5A66822330C577A059B3BF994C8B82E3C8A2FE848310801E17D6D760139B10380768C3E8872C83821A4AC9C814D1E9C255F66F963E
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Client.resources.dll
md5: C1B20CA8AA27E69DF2268CD06CF2155F | sha1: 57C8EE95CB7D81E9E41C995DBEE73355D2993A80 | sha256: 31E96F8930913696F64C4A9B30B7C5D1F7577793FD1CB7F03096EB57FECC8FF7 | sha512: 80ADA23A0D2786948B00705BA33F39A770F0DD51089569ED54F7DB10B6C672698055C47056AC9A00E78A1DF34EC5241F455443E5EAEE0B7F9D0AC12E4C2995F4
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Common.resources.dll
md5: 5029660F9BE575540830ED4EE36477BE | sha1: C935E31468ED40FE24760969F5D6A2CF831B82EA | sha256: B0DE40F4090F41B47DB52D51B5961CB10A43D4DEB66479522059815A5D888568 | sha512: 5B3E251C79526A04878271CB211046A5EA5FF6104E16D0CEF619B3E2DC33E5E93A315A41381A1BCC84206BC160E3A159310242B460EBF46ABBE71FE0B01302F7
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 504448F5B7E3B94BA66F44BE6262EBF8 | sha1: 39F828BF2A2E6F8AB23A3A3AD3EB648F7020A10F | sha256: 149EBF78E4925D391F0D8C56DA721268CA93C7D682921268423BF17A7306E33C | sha512: 37A990FFA5597FF2F8EEE09580628A39A9011D519F8A8AB10FD7BEFDC905EC5060B3B9392B4424F34067205DE27DA915096C3357F1141AF98BB86A8922F93A7C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: A8C202F8F520D2953C7C2D1F1E363893 | sha1: 3D87F54A4466D2C3F476B95D9E1B1B4213977977 | sha256: AF4C4CB5BB05A47F1CEA87B3B14893869FDD78BD27F91EF624C70FEC566E0D40 | sha512: C6BB897A44DF1D9FFFBABC8F6AF92D27739AC2C3AC7B12E17F82194A5B1E09DE9D5433BC663508BB909DAB48F2EE8BD0E62E8328FD59B5E43D0E6CD70800C6C2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 19A504168A35C79B1E0777677C3107A0 | sha1: F46486DEFA2AD82EEA66E4DF38F046467E1B96FA | sha256: F108CBB8CA740CD2BB9AA5AAC05D0E8026909965D3FA678C9BC45768CC36CF7E | sha512: 8493E7F3998D62C2C325FBFE33BFABFF1936ABC2218A201C134B58229C3735D8C570A8DDF816CE76A8BD7C46ABA4F67D199003BDBD828445BF7866952883C3DE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 304D93368706D659D5B061B7AB2ED0C3 | sha1: 133B1C89534D1EC3A37B9CAC47D3017D50E5E150 | sha256: 550C179732B1B2F324CD17934A9504A1E6D733315DEDF3A5BCF2B9B0DA072B54 | sha512: 55A66106B84D0A7A2572FBB931FB686DB764F3DFB54D05E2B590C40582CDAF98EAC2265873BA0B345AC959F8B48618076A0ADE25D5FF10D0F1C9CFF4CACCFCF5
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 9D5924C6D511603D3EF931BF8A62358C | sha1: C7822990524C8D17FAB44FC4FC794422B44D7CB0 | sha256: 6611AA51519BD738996D605F312032512F83C9A4E5625E2305FE473425A00F41 | sha512: D46B29C07343A37368E0D934F711D47849B2FF9CDB1CC8256CF5DB055091B08E4AADF0B2253F4C7E95BC0D6F7D92E8019754E8B1FD3809DD24653BC2E2EF60D2
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 4FF4272C21D6F59D8E9E591E43FF9CA0 | sha1: B997CFBC816E7FADE67FBEC42F89903246DB8105 | sha256: 5DF9919CEEFF97BEB4F1B3B0E16E5FB40DF6374BEA3301BB5091CC74515ACF75 | sha512: 5928C8EA617E605F517AA9888A7B46D7CFB84C67DDB94113CBE15443E5954143433B12AC572842476F14C79A3222337D9FF9329DD3E118FEA4A26158663D0BF4
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: DAC3AC8D00097EAE0996AE86D7F54A79 | sha1: EF32FE4F95DCDB6E4F79E92DAD66B84943723840 | sha256: BCEE0A9E51BA9D45D6F7FA6439D57475B87B4561B0AA509DE2C069497A71FF03 | sha512: DBA4769E0C1E2999007093846C5FF06AA3D6231C120A4A3B5D2239BDEFEA71C84A08CB4176A9308ADD4B8A5523916789762C7611A25AD6A192E3C7B3AD683F09
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: A5F5FECDBF28F72B1A554AD94846CF33 | sha1: 84433B025334ACB42A2A73F79BC31DEBBD5832EC | sha256: F68F8DC859C1DA4DF1A2FD8041612E8FEDD1928BF5690661BB4DFD20F40D10DA | sha512: 653809444E7CE4C822C8476B90DE4E5569693307C030D75384A3698EE56628603123D5ECADB3DBABBB403858359F67C7B0AE6F0AFF849F874C6B835C82801EFD
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 5486D146EDC4E94DA552B03FE2218AC2 | sha1: 406B5068626FAAC92F3AC5AE777A0D6DABF80E0D | sha256: 146DCF5D48B4A21280B23C0B78BA2D5F6F1B9B0961C00849C62A6048E44F431C | sha512: B1944E8C9B896B755C6DCF95ECCC6C96CA3EE83525D5123DF05B99709D234C6ABFA86518C8CAE9EF949F04343891AD0972CCA0B8D4A785894E89A959F2B5E57A
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 3E6E240F8867A67EBB45F49F6FD188F4 | sha1: E8ED0D4F566488EA787306FDA834F2B847CCDF3B | sha256: 03C623457BE98FC3CCECA06A358C20FB00F0064388D526ED3EEAB9B7257ED378 | sha512: 0D536B8CD661E0064BE8DE7FC676061011A6D4E6777E39AE32FB2746E34D2C5F2E0208A27974693B6A1B1EA428E6488BD7E7592B10D4F3B795EBF6B27B267882
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 26F50AB05E8ABBFEF584B06402A56EB3 | sha1: 025CB40B27FD185F47177FAA792A666F4A5ADCC7 | sha256: D0C52C9413718216A16B98B288A1FEE67B3A89707893C8211369D233FA166B7D | sha512: 53338F4BD81DD52CE122158F4505738EDDFA88399F584336003B4F866C8A54EFDDBE3CC88AD8BF47A39AE1F87B18F0081BEB602788B5D7098120618682132E68
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: DA3EF9F589788730B954A1AD9C19F97F | sha1: 2F92EBC183135E3A4AD025D89B2CB0409EDB5C5F | sha256: 39531B5FF7C6590AA21B1D05BA42C904BA59FBD5510ED484425C7ED8684D51FB | sha512: 0B91659605F01EE01B946F34FCC027FA43D80DA6642907F9601B534767C12F9A19477B41FBBE7F0F8E007F0849D4BD54537C4C020ADD1B18E1CB02D0E6BB8C09
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: FBE881B65416FC0261DD6D3452CFA863 | sha1: E4E7598D49AD133BE3253B9ACB2D2FB66AEFA52C | sha256: 4E822BCDDBB5004580B5E99C5D22AE589736D9C3267EE5ADFDE5F54150212C4C | sha512: F5FD69CECD45692EBC05D77CF6F74A6079DB7359045974C725F9B8C57E73CE3492BB6A2C12CC9A4C9BB630787A23C7818A53D17E3949E4F6D38189E72265E642
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: FA83279C341107CB9A6CC1337DF2C8A3 | sha1: DECABA6DD2DB6A221D768A408F71E9704C88B995 | sha256: C6DFF9A023E1E8FC9B0EFD4BEF59AAD2F045FB6A80DBAA46F70CCFF064487987 | sha512: 467EFBE3F19D8BD136F86DF80713AC03089B467B858D6E35BEC6048499ABF9CF81796A339DF7E848C273822490F3970D62301B4FAF34B5B6E956A011D89B1018
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 254BAA2FA086EFDF7E60690BE90A5390 | sha1: DDDEF5DA8FDBAE8B84615A09D769807E1D5A1985 | sha256: F6921FFA37AC358D179B2A641831788353B1CD87256CD9D2050BCF42197114AD | sha512: A0BDA03B2EAF55E406199903610E12EBB6D0881096869862F92E46EF967B5F1E5D972C02F66122B5A3436065E5C5A3D5BC61A9B3694A568FAA4B91625D110499
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 9A11E5F90A66FABE4D431C7D70002BEF | sha1: 7C86AEDA1864FB00CA422CF0D14AC7B40B4B3E13 | sha256: FFD8970F7B0409F354B85636062D2BE2736235FFD1A34057F90E2BD7A60B4C78 | sha512: 383427E7EE866B3EFCFF09B2892D77237DDBFC8786F79EA52CCAF4BCF7376775DB243CC0A423038697555C88CE40F2B7825FBB902F20626F39A02261FBEFA159
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 47AB6C9DE8445AAC59CE74ABF35375AE | sha1: EBF3BC76CB1A8EC8FDFAAA7530C15EAA857225E5 | sha256: 58B0CC19E5ECCAEB2CF53F47CC150AED1095951ACB027294CF1748DA32ADFF6C | sha512: 92B59991688C4532235B2EC5406395E694A438F89D4E14FA64E60A31A7380ED19496E99865FDA46B5EA17A1E0644724E6B1C684E96D28F46C35ECC56FA208DF9
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Common.resources.dll
md5: A05D1987734A6774A871E0FD520DFDF1 | sha1: 9AAA9698E24B2433D77525841B5C00CFBB86EBC8 | sha256: 031846D7AAD0741312B4912D7B8D86728828C3E865E627F1D1330579387D6C69 | sha512: AC889F48D45E2BD0646E6C95A88286C1826D2E5D739298D70A34D78ACC9645061B54C7968C2103C9FA518C2105212561930817F8DB33E47AE8D841A196AF8F12
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 1D94C54B6A6F71830938BBF8DA4B22BC | sha1: BAA80D59FD60E748EE58A3A53C00B36668F5DDF9 | sha256: BDC93EFFAEE88E992F7474FC3B466E5809EB82AF96E43F58A9C78B67635958D7 | sha512: D2F5BA8B86DC471CA29B8B388F05BE177779E96EA0FAB7CB286636A0024543566EE4C45564EC5A642BF9577545F742C11C8A382275F4539E13DF45953ED5950D
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: D0C05CD3A583F53542D09139E54922CC | sha1: 6B7EF04A23333CE80FFDA56BE08FB3DC37175613 | sha256: 887C13FFB18B2705BBDFA3A737F27152DDF12E4F05B5F16BF4032025579A3C7E | sha512: 32403747E45141BC2F54858B29CC2252A258572DE82E6D5EE918BB74B2C9976A9C6CE03697A511FF08830AE4C5F7E62CB309CA58484FA463D8B0FD6C46813654
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: FA07C08BD3D2E0916EF6DAB75707ED98 | sha1: 78176AA689099E4584CFCA3C62B3171CE5674444 | sha256: 48F4843871D18433D42F12328F213891D3527532980EF1A59F2CF5621A6E47AB | sha512: 2C34467FA201E5CE7B08D836D6590165E6FE566EAE55FCB56509F3D2D888EA25ACE54663D5E808C8429BA14F6A8D4FD5609960430D8DA6B127D36A2E515C8C8A
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 464C4B0B84ACE1C853DF27AAFD4AF522 | sha1: 099E5D113B9E750E9290F07E921C51CB5AB9F7B3 | sha256: C82170221E37E29CDE72BECAD1C2E8FF5CC6B076AB4B0B4C190F8C3E00CA7524 | sha512: E9E9925F3087FE9D1CE1B5933136194E68261585F00776F7C51EA7AEDD653446552585F0AA37E08833AA3B0B7653109846C2D496E06C08EDDF1CBB84E648CEDD
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 399131B0EDDE8FDBBC97B6C4B52FA4DB | sha1: 6C702080A6607A43E9355726AB26F58186E82A5C | sha256: 41ADAD84A39EF44F6E8ED103E0C7B9B5645CE3514722710E6554ECB51D3AFE0B | sha512: 8AFF9859F90B645327E98B78A92492C381ECF5B3BF158773257C2A7A1584D78961F8ADC5AB3B5095FD8B99925682352BF234D4977D8CE18E3015C9DC516FFACE
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 80CE78B31BDDBEA3BEDA065F545217DC | sha1: 362C183D53D4C408D4B063C87EDF7276D08CA3A2 | sha256: 181167213010B4BCDF079F623600FC4031FD286C2070A2A9E72A85F8F40C8C27 | sha512: C741278F89DEB367812C1BCC60E8EB5B87C3E82C2CD86998BD7764BC7F0C0C14BCA39C4311817EA20226536742586BE26CFBB8E34D1FA79610AC0A4BA23B67E8
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll
md5: 307FBB8B84EFFAA9F3275CFA1FB64757 | sha1: F41A23B29228F794D2A325153D8690F4E844F544 | sha256: 2C2E4F70C8D415D4464998E03E006406F7FE3F32E19DE7CEAC26A9B8A1CD50AB | sha512: 4F979EB217DD745909C27874AEE3C008B91B7775BDEB95D0C1C16D032210B2D440D9C47579C3A21723B4569980FC7CC99DC91E8278FB370CD7FCE9D6EEF6A88A
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: 7592581E92B52B54E2CE1FC34AA29159 | sha1: FAF46B5C58B3251C95BCC3D2C42802320B5F46CE | sha256: 1E61C9D44973A13190EC2AF820A6D0620EEF352F6166498FE5F2414F258C7B8E | sha512: D5FA943D5C0AE532940683E94EFB4E242ABF4B346D813086FEFB95167524ED8990E67FAD3D0972142E0DB926B730101096DCB733502A7FCEDFC8635C073DEAF5
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build.Common.dll
md5: EB1C4F9B99F93943E4EF6D6E89F66319 | sha1: 674467ADF201438A876D667AC049A1B0F245C1E8 | sha256: 325EEC052A5BEFB6B88B4AF16E84409B7ABB550CE32FEE6F16B05AA2B6ED6849 | sha512: 5480896EF15B64E5285BC42809EA5FA33CFC7A7F5B2760989C8238C7B00EB1A20A3DE4E23BA4EA2C6F4E27E1776937529965F34A1C22C740E74423B8F5AD89D3
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: A4E920B81FDDE1B11C1A60B203E77250 | sha1: 807BB3F7299450EF1F1E854B6C51C02E61F0DAC7 | sha256: 3AAD5CDDD0F07FD557B36295F9C3422C8D8873F7C33CFACEBA066E2EC007C3D3 | sha512: 3B816FA36A3513EE833ACFE8C4B0A53AC3060EBE80C72CF6F4BDB6854EC3D275070E0AAA0A8FFF8A4686BF46E9D0910E10CAD0F04C548F068496BE40BB7C8C81
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Client.dll
md5: 033148603BB6D057C6A927C8764DAC54 | sha1: 6457F87684E08AB4600E85E16711FB7B56BCFA4A | sha256: A5606DDE502220C708E59477C59D107F59E51FB6AD753773B3DD6D44EF94AF73 | sha512: 96CD10AAC680D8C03B9FC7D2CB3DCA8949AB7923868AAF011FA7C12A6B9833FE095C507A0F6279803716DE4AEA1C0828D758DAC9702F91CDBD38E92A4FA1652C
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Common.dll
md5: 3F0832BB1F96311ACA189889A67DD622 | sha1: 93646D48B2FBDB0FE06C9BF27DA1F148B638200E | sha256: BBCF4A939D3A10BA7E03AA9B8BDEEEECEC4BAE123DF7A060AA3B6E58150478C8 | sha512: FF9C921C19F543FD202F149D7B6B6B01C40334102B1EE599A3F6BFF4B7CF921A7504359BDCBFFD26798104DB9037E8A1A701AAE507C2C6A8BDB47685FD654CA8
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Core.WebApi.dll
md5: B515F34CBC1D1DC284510D16FC9EAF1A | sha1: AA6C7A8B06A861CD56D866129A9D4353043CE2D6 | sha256: 2BF7A791EC73AD8D5C4E736B3EEE7AC44AE805E8FB81756FA27341B6AD581E01 | sha512: FAA5142E939C920CD58CD75ED9B0B12F7CA2C912BBE0F262FB71B3B65742C21993882CD92850FDB4F8ACEDB2DA04B6804E51051491470793CC220A1DACBBA67F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 06019472E488BB3C8391AAE6265C5C59 | sha1: 26FA5BC18D6B678B17401EAF55C121D66061D6A8 | sha256: D896DE91E4800B23CC21D6F2EA170115E6A49099A8463062A106305CD3DD489B | sha512: C8D17E5AEEBDC2012B801F1BC6EBC445DBE53ECA7B16E83597B0A411C48DC9F2B1DF3CD9793EA3D16A2709FE604CEAD8FCC06E65EDA794424035CEAB9E766EA7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DeleteTeamProject.dll
md5: EABFAA93A3C9F4BFD9472341A67AD876 | sha1: 5464E337C6213085BC785E7FD8A0BB02AEF5E707 | sha256: 7AFB0CAB413409D3D2379E032C033AD319B3DC34C92F5B939A3E88691A0B6D06 | sha512: CA40E850F3F0BE611794DB22A60E994851CFE0638DD3C025A59980C3017BB3FC937FB8C4125FEB1FA8F576A2369912A18894DAAA48D9B033A68499417807C8C3
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Diff.dll
md5: AB9701ECAB65B477C208ED2DBD249966 | sha1: CDA760BFD7A53834F2C7B8A9D167B98F36840029 | sha256: 79318E9F894C8156C5CDFC2B3C859DF7AF94E0E913DAA97E3E7C9150DF22DCFA | sha512: 40F6D8F152288960D80223D2707FA03DFC74A4EDF0F75C0437DCC78AE2E7633A751A10698610BCB5BB025CF5E17396F82AE1814369F810A1294B58DC80862C68
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Discussion.Client.dll
md5: FD9007EE65B5082CFD45B4D7E23A5472 | sha1: B1610319E7F69008E7DFC841481FCE285277CB46 | sha256: DB74384722B3556CE9ACDFD728B1A4492DF9BC862CE3B6682A5447846CF5BEF3 | sha512: 6CED6ADEF06C1353BA841C8724088A073D447B310DFDE9B888022F322AA2231CD0EBBD054B5939C13E76C344E17C7FAAE35298FC430ED59970B1AB5DCA8E6327
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: 006C6BDBDFE10C782EA3529426DB189A | sha1: 51B74ED1629B073C97903E2BFF3A5603657553E5 | sha256: 330C8E65CD93877BB72F99F027E1C84BEEA94EF55D2E2D5A4B1F1F33AFFD7311 | sha512: 1348AE96B9191333C147C20F337989CD07CDE5B129077EAE47FD04D1457ED8B7264007085DBE84F929507278459FCB1B6C85B539ADAF4E23D30FDDC5FFAE8F85
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Git.Client.dll
md5: 953387FEFFD83B656DEAE6F2F8B3EFDD | sha1: 39B539A2F739A9D21577351CAC496B703A3A4419 | sha256: 2ED34B26AEE726BA08A79335ABA96C10D02050208CF069B40D37C0CD59F2C9B9 | sha512: A3829D04FE25EA33DEDC0B5D3B7B112B2EA57F133777EF44CC1685A17B2FB9F5842A6B4BE36693A141B51C18854DD3A70D616ADC397E236EF3A9FDE293D8CB55
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Client.dll
md5: 1C2BC017D8960E6ED6BB3C1267EC6FB4 | sha1: 9EE4213E688C5B6F8ACF3374D2569508BD6CE565 | sha256: 9F6946FFBBF299C6109196F43C4F9AF62745A4D4C8B84F67099E940B91453925 | sha512: 21C0C0FD39ADCEA9E5C777D4BE79D9C453D833711047C02EB276BCC5BAF97552F8801240644E3CD547E56177166EB7B84D6AFB5EFBDE1A224C02C30785CEC6EB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.Common.dll
md5: A1E654AE82DDC8D5A81EC1B2DD65277C | sha1: A80C92D441DFB2B6141007A5EC486D1EE00F2A3B | sha256: 69819316E6B5949865CC08A801948DBE670FB21138536F730CE8BEC136E15559 | sha512: FD33135845298F108538CAB55DE3C68A844E47D83B868B7D955135F654DE77ADAC489D31C4CA4A835528FD7CE6DB8BC0B62C6F08C847741E16A7C4D1C01045B0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.TestIntegration.Client.dll
md5: 3CD4D2EFB607B52D46AF3C50101846F3 | sha1: 6B4499AB0A8693AB9CF8522197D34754BAF631F1 | sha256: FDEB026B870921B04F8543AFA2652C2C93877EC45E1457A6F8CD4CC03352172C | sha512: 3B4F05B455DFBE5C110AC37077ECDE17588366F03936A6A3A5904BC426394191445B2F2AE197B851BBC4A38B060CF586D12604BEB429F20E418A60D9D03EF850
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.dll
md5: 14E8A0E638B13BD723432709A22724C7 | sha1: DCB79A1DBB4699AE2F47437E5CCF629A852F1D93 | sha256: C66A4F7BE389457D5E25A3C61507F9B1747D30DA0FC453AB52EF90C0A1663C49 | sha512: 5E22E1354AE9C4C6C01AB5279835A93B4FABA28A1A8DF5B7C0A2A35A4619B1D381DC37ED7ED6C8711EEC25F86CCE12C5545DE7E1B28E97F6E6AC1B65E970CDBD
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Pipelines.WebApi.dll
md5: F09EC5A27417C8A3C5B22E2FF8E7E3D9 | sha1: 71808BF6BE383F840C438EC851C6604750382691 | sha256: 1C0A050CDAE5F391F062F63091666E6F496B3FE8EE94931C5CD769B2799F5F39 | sha512: ACD8C1CEB626E7A2883D8E6958FF7DDC60D60F7A06926059C4DC082C7AFEEE9240C5DD3D85353882A39F27FF8CDEA0574AA1D2BD83924B7212DE20AE12C3F7DF
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 0443DA7DC62F0A2B3866CB08039BDA31 | sha1: F28321F73C2BBA526D1A735806E8E9754E40B71B | sha256: 91943D112FB2079414BA92C77FB390DD6B8F40FCEC52E21C2AD686F8EEF34CEE | sha512: DD42DB9177D3AC2A9F08B36D28FF32F7AD58CD2A32168153CDD5E65423B2FCE68034523AD8E6AB7896312075346C593E44A6EE57E531EF789AFADDD2D81B1AE7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll
md5: EED0DE88AC893D20DFB0D848B0AF13F6 | sha1: 7A774222844DD430B1B90F7E7A341EB78FDC2E43 | sha256: 703C2100D76D11AE8F64F83D84232A1947282E9E660EEF62460728D79E9A274F | sha512: 12448819B2B050AE2F21138AE71E78A143C611BBA7AB58621A082F4E6E5188CC9AB8CEAED6A2ED4B8D50ED9AB6BAD5E316B68634E8D5275207B616FB320401E3
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll
md5: 508401709C6CE436592CEC772B2B93CC | sha1: 9B78D9926500C5E4FA620324EC1B0579C341154A | sha256: 37402C017F9539CE0AD4FD5265AA1628AD6E4256ABEC9C718CDDA3F401845CA3 | sha512: 54034C97D3CA6FC7E973A27EED75AA25403AE7023409205D9FAD4651387A292D2FFF88D80535C7E679178EF17609B511BB736635B352E7BD60A72DE6EF8F4EA9
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 4D28A37F22DC1CCF45B2D530CF889C66 | sha1: 1C4039B9573DA6C82E32DA0C8353ED613F22ED6B | sha256: C87E7D1FDB6DACEFE17479D99BB60C698977AC4210425B7D3924EC7420EAAB7C | sha512: 01E8F21BC1C6917966E0D0232F9041E0B373D9A5F45A473C41E36FAD7E95CF99326785AC468CD53C9F5D0D757E87AC674BA671AC2D76224DB850A7938E44F8DB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll
md5: 60415E792702B091641040821C98F389 | sha1: 8F5692C08E081BEF24539674199E1FF08D00F1BA | sha256: D5E24497B28BEDC0A71B202759876C15E2278CA55D58FF3970AE45E85D06CED9 | sha512: 86BF3EE067C264ACA41C4E5FAB8D2BC55F2FAD90E9F581130F26D687B1ECB88AF73234A1B88EF074CDA47487EE78184DDD3DBE6A7F3093A472ACD402074EC7B3
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll
md5: F76D3B7082FC9B54B1455AC5EAFE6144 | sha1: 550644A29B02E6A66BE809A1979E2C536D782116 | sha256: 79EFD05C2D1A907F1DFAE3B392B581C4EE17F0B0CA4F6E07E862ABA75BA01A71 | sha512: 99CF1E8A1C109329F345FEABF3FA5BF847B779A5EB9ADB77FBB9035CBFA1E55A1F6EB6662C3E3A1CAB7A9CDF3B8281F2DB69E69A9540594AAF2CBE9B690F4FAA
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll
md5: 2F2B40A89E56D927B9D91FE8F59BF0AB | sha1: 9D7FE0E9FDDA1E446DEB51BBD3862278ACFE9550 | sha256: 43683B99CD5F8E9E38383C7371E40CB182C4C26C2DBF437F6FABFDD2F8F37DA2 | sha512: FC7AA980995CAB0DDC5E5A4AEE613B3665F542D0D958AA968E2421FD3B98BF3B2355E990580BBB04F30856D84CA0CA6830672837CE7D3143A4D551095E6E0F30
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll
md5: 7DBE0CC3813494748FA094B1158D18AC | sha1: 5E0E0DC4F58D1DC4421653FAA3B8E0909723AFCF | sha256: 4C92F9D47339BC8D5A25FFD6A5EBAD243C5F99AF233A95F1843753F0F413A5AA | sha512: 0044B513217A55F2160E355B920EA9DFFFCEF2ED54834AA073126E844BF990953516C47F43F00D8A553E0AF980F8070D8E3B22548A34851BDD147AD2B6CD7480
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 707EDAA395BCB5701534641760111451 | sha1: 78AEB1BDEE4B01214F173EF25F568BDB7A6D8486 | sha256: 4523E164294B988FD087081E6CEB30DBFDA56FFE95DA664FC96473846AF32743 | sha512: 01503365B4CACAF802C2F97A44B1303ADCFDC4A2604691313C604BCFB13E9D01A53EB9A07A72609A552753DC84631BCD7B927F0CC12FEC8657756634BF5F7CF9
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll
md5: 0C6C5B598A8456509801E7A0A76CFEC6 | sha1: E5848ED34987BAC2500261761A4681F4CA003694 | sha256: 34EB0998B2E937E2F1315713C69919D20F66A6100916E207F8E1B3500AEE1AF8 | sha512: BECABA2F1CAEAE3B43416D4F4E2CBD65EA7630FDE869B8744115D73C3F412A461EB7C4F95AC255E651A07F173A8E37AC682FF9BFCDAB6403595452D0F3933248
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll
md5: 784196F1D055F78EC160854E3CB004F4 | sha1: 7BC7098648FA108EECA6D21BFFF88CA2B4DEFA41 | sha256: 09313C8F84BECBECC519D265E92447BE827666D08503CCFEA67A1F2ED4598B97 | sha512: F1EF494FD0D9CEA87B51E4C4156E2686D354760834715C402AFD62CD3DD61C3660D2DA092DE1F00A62979304E83BA36E82471CE061A50A82C1DC84D1D85496CA
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll
md5: 43C57B48CCFFBE25F70A9CFA0BAD530B | sha1: 1A99F756806D936C7BF630B627F044406C1E12A9 | sha256: 65DE00F003162653318B75D937C764DD04148185BEAEFFDDD9A651C6476D8A40 | sha512: 49BEC5AB5A7B74347E7C613A9F3AA50DC1D61F541CD7D57DE4072DC50A8C7C8D183A3E79452F36810F0897CE938BD9765F223261B6E6D4E926EAB14750B8068F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 202EF842CDC0D5CF14DA1DD4C3B297FF | sha1: 136AA84EB88B0840E1668F09224D9FB4791E8974 | sha256: 8FC003C91753196E73304CCE19133FA2DFB5FD57C9A730EA79905FAA7407A6CC | sha512: 2AF858BCED2093AA332A1915F0D73C978CB9EE6FAE9991E3AD3D46D576A7E1FCA19C892E1657FA1986C2A2E0A6D6F2001257F172B6A86773B5C5E1DBFBF6A7B8
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 0C1FE7AC700C5F91F360CCFE2C4E35B9 | sha1: 41F0450130D964BBCCE66A7B43B057DD0B9D1345 | sha256: 7A3996F8FFD6239306A123179A7B48074260C75E684C90DB2B6EB745B270423D | sha512: A8A1CA181C6686AD3D96DABB8FDC9BA5B755B1C8B15767DB2BDFDDBAD6B17CF9C7F62EB9CBF30976E30F4B03808DE87A203FED30732907A80BBF2299102D2756
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll
md5: 7B6945DD04A99A92423CC44F7899CF3A | sha1: E20FF6345072EC35519B0839F5147AC6C3E3DEB0 | sha256: 032A1809F088A1A988C5BB5473BFA37248077C5F901155BF8EDA5C00DC46C216 | sha512: 42413A73790D358D04DF57F8DCE09BA258CA92F9C99D689FC40B68E64F865363163B00B72F9C18CE069829603D37242D907905016AAE806442BC0D06742D9D70
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll
md5: C3873D7812D704BD6A11FD687EC6E550 | sha1: 84FEF70EFA07D0FD8B46F0EAC708B232AD324942 | sha256: 40FC9962D554E4CA2E1BC96A477E1A40C2BD73983F97C6FE03332FA42F050950 | sha512: B6435CD9801B4276F33511E5804B35526EB4837152B4333B7322820EEA0398CD095670CF52CFBA1D01369216E4EDECB8DE8E9F066708789890C0EA126DE8F3BA
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll
md5: B186BE68E3CC18BE17167348CA5EAE6C | sha1: 6A22B00EA71D625FA1041E5EFDC4FFF2F637FD81 | sha256: E4037A5A5F2AF914FF24D9F1759FD5920FDD93EA68E529DFE573409F9F38F98C | sha512: 1B6143A32AC21AAE791693560EC8093147098B562985C604B885C995CD472B147740CEBD79187264C56683AE70107381D03E7B46BBD967463D3AC0BA9CE73A8D
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll
md5: 9AF3B6A7E1F82CD73ED5600A8BE679AD | sha1: 2243632C01E594556157E9C5D4E9FF0FD6A2A2DF | sha256: EE8F185CAAF25FDEB419C9F6B367ABE9C5A82DC085BAD385254791C92FE69B99 | sha512: 47AC8D77688F6CFF3784C2D617197E7098E40D5DE0C05FC70D91FE5D7C293AA34AE750DB8F54DB41D9645EA48B824BFB856F87E853E47E48ED935A13D74D78C0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 0967E185CC24FB8F5939C8BC725933B2 | sha1: A2B5B93BA2D456645B7B57DBB9089FBFC5AB9705 | sha256: 0688162CCF25DAC500159A3E8AC8BC8BC9BCBA8A891FC05A5694805E0A8F0F2C | sha512: 94B3C84E1E467BA2A74484B3B4B00CED006913AF49E14871EB7A2AB4A38DB30C28A521BDCD5AC9435D28A571DD000EDB1D47B564B7D40C58F9EC7E8B006B3D11
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll
md5: 5AC800162D6373B42EDB77163E0B39AA | sha1: 300A1FCAB87AD888BE320A08EA1E189B859605D2 | sha256: 41431B2C8BE04683C8B2ABCC1DACC977B0B683B2C0BB40F159796A7D5AE505B6 | sha512: 00BB2BA6AFF38F342F0B50FC4A1202AB35DD251111E4993B55B3107493119D5F68C88A496955A2C2BD7B4375C86070F3F39A0B024D09C14EBF733221EECD7882
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: 189A32101CFD6A9184BBAE64B43E1B86 | sha1: 8798FAF0FDF2185BF2C0662D012A71AF0A1DD69D | sha256: 6BC562B14C97E4879C106B3BAEA03D588167EA6890B1FE45A44F0BCF1C6FCE04 | sha512: 497132F36E0222E6844D485DB55088593D2D7E7996DF6F8F8FE30B7199B131482CC9E3C335F8CD3342DA23C3691383576982958FBB8DE082DBF68CED86A55F7E
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: 93187777F1E84A4833138399B21CCA8A | sha1: 729EB5548587AB6D8BA1F24CE8274C1EF74670D6 | sha256: 030927A2F00975AE3FB59D8CDFE3B2CAF1A84B87AB7288D546D88740EE02A19E | sha512: 6E702D8D60CEDF514336DBC64953B19C1AD0326F39C6825A8F5E52ABEAFEFA46972DC4F63B4C71730A57C2F505FB7E0CDEB526B9A52B09D4EA0FC1F12221A16F
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll
md5: A26CF42E780F913C9D25B4C677F02E8E | sha1: E608ACA8C852B465644EB51EF4AFD40F6E5E0AE3 | sha256: 64A305BD39E220838B6A187E1BD974E62BD2A1AC8304BB1FAA2DFB539AA28F62 | sha512: 93F60B2FFB413AF497FF6D117D3D7268D235B9F3003DEF42D8C136C2731D5D33B011F73041F808427547889005D542971B5B252292CB6586AC3809B5FF50EF91
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 48BFE043AE26BEAC742D75AAA06532E9 | sha1: 0746114CB18CA87B89A5BE49A7742B3EF5874C8F | sha256: F3DE69A03A6198A0804E8C8EFBE159DF5B0BE9C1884265356789319EF2A13657 | sha512: 2B276F9FA914D77303FAF20242B8F7EA7A9126119E8684B4FD9C80786C5FC32DDA020558AF400A5CDAFE27FE1768E383AB3B498D7A446BD6BC24C6FDDB15CF51
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: E2C998F86844DADF7AA1C94B2848D37C | sha1: CB69AE97296485BB62DCC98B53449AE6F88F266F | sha256: 53032691E3B3C2255036CA28407635F02D340EF3674310EED596DC0CC0889099 | sha512: D8BA8DDB456F3792FE843DCF9F3A3AC6824F9FF35CBBA86FC7A963669D7DF6DF7452AAF02D516C3E07F6FC3EA7A160955D14D9D157CFD37001C54151DB736539
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: 0CD363676D1CD103EFE993077F34F0A7 | sha1: 6AF26B7E10875767340104AF0A3D852561BB4FB2 | sha256: A253469129B38BBFEECED62280B696C72FBC42BB6AA5B11443484B25F2E48CE4 | sha512: 7698C2182EDB2F815E10F2E1B651EC1D1F01CA4DF389574A8EEDC67E76C04F4C3B5AEF36E39B4BFE4A7B2AF1A679C52C8B28DAC6E2A5425A632293A0A3DFA1B1
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: FA48F38ADC3B16FE82DE402B5AE81D5C | sha1: 00DF69CEF1073D8C2E0E6215F7997AE356A59557 | sha256: 936AA813E3C71D24CAD1CCA1C228FFA113E34C6CD8390050DECA3797B6067F8E | sha512: DF636DFD17EF683C8DE087E03ED4DB9B5A9405DFBB63541C0970494741CF2E1CA72F485D83BF21E50BA866C775123CDDF7C85EEDAF1F9B460251C5449C2E954A
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: 8D90CEA268B1506D19AA483A0B9BF208 | sha1: 4CD5956FFB60B0A3D61974F1F7CF6F629955F974 | sha256: C379DEC1984855769983275D3C7A891315336E480BF6769368A057EB1794A9AC | sha512: 0AC37F9A3DAF1C5A4342549F3CD6B03EAC77A34EA78C68A763B499CABDDC08B97CC31D441A800BEA5B3DDDC13D97E0E6DA25C48615B3DCD4604C47A30028651D
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: 704F7D6E4D150C06EF18568FD47B1598 | sha1: DE2C3C6FA19717749812CF48D52B2984D83F180D | sha256: 9603938EAE6EAB98ABEF9D73F2820A6D42B21E7E14CDE61B465ED24B81847C13 | sha512: DB8BA2DD4FA59620A873D01C5552DDE6405AED4065844370FE308942B381930BC01F9803F3BC02E415D688C4A5CBD071255874F73341A9EF6A14FAD06DD1C656
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 87A169F777769F083F4BAC5A99744165 | sha1: C0CA788B94106ADC751A2C26E4CF6A5C9A079F23 | sha256: 58D07BE83649E456BA371330B94D1614B2C83FB074AF9B0BFB7D8E2B95A9447F | sha512: D2EA9E0A116E4F6C599114AA08D4D59F9E9F001B563437599A85D67994B501553B5654E393F487D13A6678CD99AC3C1EBD627ACBEFD84E8733E3151477489291
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll
md5: 07EDB62588B912AB02B402507B98A166 | sha1: DDD078C658D1A3E2ADAC498ACBF31B2C28A9CE42 | sha256: 0A4491495903DCA95CFC74659131A874D6E27562D5B634064FE13CF7D59BF09F | sha512: 19607073BD4AC0C20C4CB9F783C1F1D21362027E67CE717E2346FDCB0AB6ED41C9186AEBC895DFCF2CF6425CCD521A0BF5566DE1D03A3470918853BCAD69438C
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore32.dll
md5: 9F96160AC325342F0A314A613CA5D63F | sha1: 6B4F3B98B486F7CDB73E9486EA00E20A04AF46AF | sha256: 270D38D1FE58A7ACE3FF450E1EE626E01FD753C60E460E10AD2EA7820B897631 | sha512: EF9A8114E47E598355ED1FB8F766445F77158BACD02B6094766594BE5115CF15E49D616A0C78B68CD2F91A4337219D0878191B2952D779D9BC036A3EC56AC703
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore64.dll
md5: C76CF5939612F83AECA6FDC47A09F473 | sha1: 4FFD28545880C1E6374A2073F32BB6FF5317AC42 | sha256: 9B0308339784961F60CAB1EA7477EF7665C356FC8BA8670C2C2D397F66F2EF95 | sha512: 6CF4F35231051B3EBF8012E59EBFA4F4696EC14FC86D658FF468B017F6427AC203708E12CA1A9FC8F441E9E8DDE09CEADA701634435536641766661A0C85EE4B
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: A4C9386D7A4964E65AAC9213D1CE4E64 | sha1: DB3CCF0FC426C861F41CCC00743BC1F9E87C7ECA | sha256: C68693B32F5CE609844F099F14D0CEE6528E06E2C49442E75077B35BA129AF7C | sha512: 11D0A310C7EE83598FF3E01FBB6BCB4E59E27B18C355FF6E6062B4ED15044B75BB119416906A1A35833D9DCB3319F1973F2BEF216856318C86E6413DD3D9A89C
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 458A0F339B3E265A1C38EB8001EB2357 | sha1: 3DB4D5D59D1BAB590286F817A84A18BD6BF63138 | sha256: 4600261763DFEF8E59D711EF2A55BAA8DD0198F75D11C4E2EC299EF161ECF8D8 | sha512: 0FDC4BF750675978178BE0F85EE76DD6F06C0EE9477565482A5F058D0624391E9697D03DB46DC856EF5456DE5E59C173BB0228BE137EA24F3230C80A6A052733
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Client.resources.dll
md5: D83D819FCE178D91996739FF3C2DCB0F | sha1: F138575418ADF7ECC97D5C907C48D86216A68853 | sha256: 527E5651E472AED57AD3EBE01BB8915728D5741365EAB5DFC0A37393923DBE5B | sha512: 494BAB1A75E547924C27A4B8DA7449276FF67D94B1E05EE57FEDE7BBF8AD8A494CF259FACBED15608C19CAAF277E6164BD9435E9EB53B9D1216A5DAAFA11F262
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Common.resources.dll
md5: 11F19F4795E3AC57AE8446EE0D336FE4 | sha1: E778EC3DF7746BCCD265CA744CFB161046A8F907 | sha256: 54E6FBE5F913B5C66191D8CDE90FA3AACAE65B20332BB88865589DC3FA7923B4 | sha512: AF313B93BE2A4369985E70A85221760D64CFDE2848BEA066D7F4205C7F09032EE47C520E396083E72D0E7F3E4F3B838649B1CF720FD8CD55CA9A10B4EF0BDA99
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: D1547DBBCB93713864EEEA9D34BFCF9E | sha1: DBC79F4A223099B0F51A305408A21C82447E1A6B | sha256: D7AE2F74F4EECC114E8B87C0B9F7D7B7139428E01B547629E5367329EEA011C8 | sha512: 3BC03BAE9A7A8CEEACFEC887658BF55E894B7516C5CD858C396DFFDBC408C629513F9B672A3808D681860BE974AC18458E6B91B25C345740669F31CA05EBC1A6
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 46BA536E0E9A5339BE93AF71578E08EB | sha1: E8D77132936E0D19AB98B74FCADB4C7989575081 | sha256: A3C9E9783E55EF17A831BD3F732AA676EFEA789D147F829907D57C52BAB67BF8 | sha512: 6AD9749D5D038D5E0C1064BB29DC57868C2A7FF7FFB812CC2AD90444F3F273096880245375210C4D6770A8CD9A7E3A02544FE0598610DB4B1F35295E24F09A52
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 454639C6B5AE73539EE34328D02920C3 | sha1: 024E3BB6169A4B6C047C8ADFF9CDF826FFB72CEF | sha256: 2609F1B98B358BAC3FAB8851C708664225F614A7D8B7AD1DD6DF2C26E37AA997 | sha512: A2E3E4A5421FE762E6E5444263D3B0C502C274091284DF6775A272F933FF09401522D9910B28C9A58B99D20462D7D585AB660AB5B84B144238CF2F57FC37BA1A
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 318B5D1028CAAABC82B54726805AB2C0 | sha1: AE3AEBE4B9B6222548B626A4E6E61F1CE92CF907 | sha256: C6C7E3E303E35204EF389CA2967842E41B890FE2A255D691AC5A5FA2A42391F6 | sha512: B1085B6EA1F183DFC3341C10CE149449A2EBA6EC48BA5A48572CCBEE8772FDFEF26CB0F49B6A72548EF8A60A690B4B39DE43D7543DBADE9A93A70BE556294F77
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: C0EA9857820C7EF07395DB5771460618 | sha1: 87EE364DD622D22EAE405CCB929818B67443EB91 | sha256: 3E6BFB780953A8FA7EA2C702B8E2E5E97F17696B176F8F8B3ECFB111EE04602E | sha512: 1004C58EA9DB1CEFA93227C9184E5867F5EB3FF2FE733B434E5CDA0AD33AC8F2E7E6D364113B2EBF25691F5DC3993AF45CEDEEBE2B65C83E4590E388781BCE7C
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 5156D8AB3B25C688B71859B964700AB8 | sha1: 64F343C0807DA0D8CECCD8F23CDA8D2B210918B8 | sha256: 964334F2AA0D6353A188AFD46D2758A7601735E6321F82506D4B89C69169F03D | sha512: 9504A1E5E7F2C2AE25250D2A4B7D1A47CF1E017F109BFC4378C38CD6B3220F73C1EA0E211F7FCE5D087561172903512DB091E4B3C4A3C6E7B303F28F0339D605
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: B3491C4BCAD852A9D4FCE62017A7E515 | sha1: 0B7E57D71F7E2BF6FEBAE59A94851A65793DEFD0 | sha256: 053B81F8E53A0ECBA2BF87CF7C21F8CEA60960BDA8AD6D66C86B0257E68BD7AE | sha512: 1711C4B7D75C9D043330209ED24B63EEB7855E9DE58CB00CFD04DF6C9AB00D757BAAF057827A6FE6D25D4CBDA198ADA15958D002F46E8567BE72FEE7C7184815
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: C8298F442984781DD1CEBA7426B71A0A | sha1: 0DBD4AEFB16568319D4D7E455A06032B05BCAD76 | sha256: D11F4D1F734A50DD395BCE8B676531D14B2E01CF88F63803DD56836D4D237292 | sha512: 5299906CAFFA8E525725FDCB6314B981236F06E01B9AAAC8F9E84C9DAEB7703269083E8CBD6D6EFDFE5F92DD8A56811CC38ACB0CA6DEB9EF7279B0969BC5568A
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 885BE26F2097321A28C3006FE637D8EA | sha1: 4639934A7C0EF373CDC8B058E0FD5BEE5C98B7ED | sha256: 426130E6931896A1774E0096EEF2F5E51988ECAD186956D0D00436A1C5E77BAE | sha512: 0720A47B23CE24BD61FBC4546DF2B1421F62EEEFFD7CBCB18BCAF85C627154ECB463F84F65D5137B7A08201B1E1B2427D2F106C8E510E60C6FC32EE526E1DAA3
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 94B05639151A9CDF41C09678D5894F73 | sha1: B33FA7FB39D51EAFCAB7FA0E00A5B02D40A10700 | sha256: 0EA934887EBDA4A5DE92DEC7AF588164FC7FB5311D3AF5C64344907DA597B5D3 | sha512: 8D0D171F941D90E926825CE9D3C84565EA3C158B922CD6BE3B7BF61176923D2EFC49906ECE69EA9E3C1628E616C4FCABE71B626974B2C56C1423AE74EE0B0C71
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: A6F5A4A2B3BC5EB6B2E54C2D11D45A43 | sha1: 8F5A8C7235D5DA4F5B903EE4EB9A0A2B7AB8F3AB | sha256: FF380439055F99A3BA82C60AC772312D0FDE7719949BA020E3CCA16D2C298746 | sha512: DF730457B169C37F0B7EDD4B614FC0A080BDD02ABD9B7E50B9FE9A43E866F69CDBAA1A2E271303F563D44537E920D2369126C34ED500E986F8616AAF0FD6EC42
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 9F9B8E20764609A8E7BDDD6BFF7ED249 | sha1: 7BB8E6F2B81D4B40D85E2DE8FC1C3AE0D3E14E19 | sha256: D2618E2ED3EA252ACC51F8157ABE0B87B9E4EAC15D379D6A458CBF6B9C440E44 | sha512: 939DB3C985897995DB1C044086E334C7E0352C8964BF74C0789D40974AA8033AC401EDA79EF9782C9C6C9EED5FB7A73DD72843124000FE6EF956D6886A0E037C
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: D4603B7B94EB6D05570A4B1395C605FC | sha1: 720FDD67C12D25C158CF65CD6709C51CDAD007EF | sha256: E4355BD673551E41367D2E2A7AAC76AD0AA5D8CDFD95C510DF83F44B139C3EB2 | sha512: 69ECA0F2882358509BAAD7B5B3551F5D47D5B1D9CED503785440191ABF1680E5207BF7FA0936F9E655B42B8ADA8CCEF983DE83F1B180AC23B3E228254BEB0F87
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: C8CCE95416F2E0A9B615A6A2069F6E98 | sha1: 0B4CC58291FFA84D2DCD665A721D9501248F7BDC | sha256: 2396DC24916250F0452AF1CFA5692B0FF8900125646496787738437C62E47A74 | sha512: F9D4685E5932A140935EF7493B23200EDFDEE9091ABF1C1B84F8C63E93EDB6BB7305959A44B4A43F16168B947976031CEDA985716326FBAFFF49093CE96F46A9
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 1CA45B74F68B407F37997DCBA7891AAE | sha1: FE4677D1A1DD4E642DB984344B32076B6F9D73BD | sha256: 97AC336DD1117C9A220D7FC7408E946E26A2C1D8583320E8EA71A7FC35F872CB | sha512: 5267939C8B11EA3516CB38C214EF22C628CB7B144998B03ADB2EE9A288A9B4BCE807D310DA6D7D48FBC05766C3EDD232546057A005B974C01250CB63F10AB2A8
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 3E3CF4B86509741A22BBC7429BA880EB | sha1: 2BCE4FDD31683524EFAA7DB5D3AB8618FADAB6C0 | sha256: A9B56AF3411A1F73C1EC8E7F38EB1F6E47F7CAE735A518BF416BB899ED99A1EB | sha512: 6E1FE290A2CF5E3DA644951CCD308A876F168C2D426BF3AFAB51DA1336AC3C6B049583CC7C553ED2D520B397C000B76B87E565592D385346368D5195F8F74805
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Common.resources.dll
md5: ED459F78FBE209C930D6EDC366BE1EE4 | sha1: 8C6F72CE9F7A1EC8A9B498A62F4E2D8849E7141F | sha256: 5686DCDADA41BDA0D8962D1D412A7804CF6792983E9120BC907C134F846DF0B1 | sha512: 2DD5331C635B7A606D81366348B73B4D8DEA321433D3ABCD72BE225774A866BE8531E2596E0E1CD3EC241854C949646ADA06EF6D0AF29F5BC062B11B45F48913
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: A0796E218E46D7077AB0C9CEC8625445 | sha1: 7E711259BC6D0F5B54CA3827F348B04B08CF6DBE | sha256: 4548035DD5D38B23E6838517096685FBE1E22F661CA6E1A9717CDA98943C083F | sha512: C1E8A1F5A2C66F96DE3EA214A4D876F797415770720D2820A08F644719F8F1E88EEFF8E38EB3CE1192C212DBBA1DE0E92694B82FD52C6B6E0295C2D6652B0B3D
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: A4469BBCD94B78377460BCD4FD5E319E | sha1: 4A44B4B2278C10A9F38AEDEAB7F61E554DB03529 | sha256: 1077E78812FEFF85DBBF160D6F1474E10F2B4430DDBFB6A34B795AD4871B534C | sha512: 44A5A8C7712DD1442171ED8CC9B27F58B7D76C85E7404A9754B894E3FDE180B84A51B8969797B996323C14C737504631E7A91B13038C11F651C460454F957AAA
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: C0AB329429118E3B242E733F9ED5C2D7 | sha1: 530FB2473521733D60952B1516E6CBADBD3B1870 | sha256: 60E05AB2688B958E4558FA79903BE59AF9043D71CF396EB7A66302F4A4582AD4 | sha512: 0F3CC34FE8427710E01085DBE556B06E928B7A541BEB9CB99BCC91194F32EB2512E886E987C317FAC1D77886213CBD3B42017EE4AE950ACDF97617C7BE377BC1
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Client.resources.dll
md5: E35247AF07E7D9D9EB2111163E595605 | sha1: A6F9FD34ABF0757BA70C53C07E0C5FA25E7A2FE9 | sha256: 682F05329F07B2D8CA6053CBB33ADF6F17D7CA3F144A6B36797E578A171347D6 | sha512: B19E367366931A03923DC6E9FADD2FF92057CAE5C787BAF5EFC37D4231B8E0A42EBC3E2149C6D095F2832696873BF2930C42CF7CBCD57D2DDD4034E739B3AD65
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Common.resources.dll
md5: 107C371E179A8E1517E8ABB5AD937086 | sha1: 8B1D96540505CFA386ADC7456FC3870B2C155448 | sha256: ED39CDCABF96B36241AD361AF6E998ABAE97B6AB2EA4B908714DC366BEB41FDA | sha512: 55CE35939D94D2F2C55B23EB81579A05A52E333BF0EC73E1723B95C6D1C7EDCC0D4471507664B6FA75EF83ED1FFED2D45A72B415849C2E9467493D31EA9139CB
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: F53B54B01F97483D94CE751D06FD000F | sha1: 264BC7BD6AAF85FAEE4C30EC2A54948B271B7A5F | sha256: C1EDBC13A936470736F57C7D114D5C9FB876E90E60EC8C422A9CDC259ECA7345 | sha512: CD7BB5EB9F08CD443FFC38D0A423BA1996341DCA397C0B49C56168C0A175B67C9413CAD717B32695D4CF6E26FFD4D94D415AE24024CE334539BCC8C66ED7E8D8
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: AFCCA73B2204E7CAAF8AD96D564A2EAA | sha1: 16D6117B1771F3C8AD10A346389DF990BC6F30AE | sha256: F902427B31B583A87219AE941C8EAC273C813037AB25442B3FB295E53D6BB2E8 | sha512: 7C650B3579B80885E74285888F98EB0B4FFAFADFB81D4275859CCFA9083FCAA5365E452C0386696A25EA89BCBA25761C7E1B0D6B6831AB0E0A452B3729B4E7BB
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: BE7B8F99FD7A3115AEEDF1AC75E4F9C7 | sha1: 61AD565CDAA66F6B300DAE7F9E9E51040997ED24 | sha256: BAB018DCF3BEEEAD95357F1DBDC7D4F3B0DF324EC57900C94B32C9D3BB83B1BA | sha512: 2F85EAFDEFEB309902DCACD40A33ED41EC494CE85C5728320D6A06117228822E17A0F6FFE6EB209EDEA1089EA765B9E923E48CA663CCEDA525C2ED31BDC2CC05
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: BCB5FD9779670228A96C00AC6C97F16F | sha1: DABB1A64ABB42B1D0E65087D5C5FADF0E0CAE886 | sha256: 3D97FFE0E517D1E714A1CA0BDD2E20C5098CD9381D84AAC7210B81CFBB01BCDC | sha512: 50A5E557F4D538DE58487E159E43038D6C7DDFB9180BB0E7F0862B863424290A993C20154C2D6EA90CC8742279F71D4E93CC5CFA888D2BE0B8FD6E26CE9E3ADB
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 6421A845CCAAD5137A3B4311AB9730E9 | sha1: 61E03805EBE3D35F23AB058668FD0353D2E4A35F | sha256: A7DC7D81F4BB3EF283A6EF38CAFBCE8B6D589D89C0B416477CE45875C077CC42 | sha512: 24B20E0E874A0D23D4CED3FC6D99696D23D41DE6E73766DBAA32A692EEB89F3C8356BA6A55111C57CBF53CEA2E085B631352E224FEF0B959F576915E80D9CF2C
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: CABD4DA52DC6BA9B320DA1310B4B1F33 | sha1: 5025F0FC46BD6E75B6B19F6B68CCB932A5A6A2E8 | sha256: AB15302FC23B6813E9D476328F6949CCF7EC4BDD8CB9E7484719946ACC99CEFA | sha512: C14157AD718A1FB39A947867BB21B806509D5536F781EFBD66833AAC691F127A48B67A44DB200169E215BA1C0C09B1ED939A4D5E94125E3FB90A5FFF39B672C0
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 10A1B1731EC4C8722D7276FB86043762 | sha1: 8008C5606BC555F309103FF47B9F553124E45A5C | sha256: 2ECB5562EC891E2042489104280CC7B4824A99363809855991F575F5F3C6B629 | sha512: 7D5EBE6C9A80A54074D1781B4EA9393D444F58F95EE267346F8B1E57B7621F0D42A6C0E82C5B3121944F6310F1E247A672307E90FF0035C705E563F3FD123212
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 4B932C2C201F12E09155DD794DE93851 | sha1: C654D3CFC5F5FE17DC35D5E62ADC29F10CB409AB | sha256: 732F84892CEBC1905ED8A5AB9459FF29E137643490D00969471A1CA33F5D840C | sha512: 18A894CF8D3E81633B0FF440F8774F586D97F49FC2E8A380B0649483AD5E695949DDB4BE2CF78A281DA271700D023FFEB90C115D079FFBC1B592B828D5428A62
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 34A78E735E35936E00D48259C5D72D49 | sha1: E1FE39BA66C6B2AA6530C2823EEAC5593AC779FD | sha256: 69307A619F24B5E3DED62C66DD1D3EA23A4062917FA8FA0D27E1AEDA78806AF6 | sha512: 2FE1C2DB0FA76EC19E41E09288D352DDCAA9AAF5300DED6C540FCC9D8868D96DE1CD486217B0323CAD014801A8C31F822EC65B9151EE60C6E3B361D9F5D5F9F4
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 350201DAF999BC8040EE175D578C0783 | sha1: 8BAFA0C6B83E36BF50523E0B2F8DADCCF7F99B5E | sha256: 3E0E6B5D6A72490F3D4920CD3700619EC06D4337D2D094429FE24DD5735A0522 | sha512: F357770CF8300DD426EA3DCA4087234B277BEE101F7F0C0D27B4A25C1A52505AD7881303C492867203E2C74EB441D0E5B349911F5B1996DAECE63889B3CA908F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 927A3590CFEB39C10ADAF42CDE6DCA6A | sha1: E92F76738F0CC092C1E912B06B588FF5E0B83E9C | sha256: 469219571FAD80B1AE7CC3C8A3F25C52997DA01B60C964898BA32433DB36FABA | sha512: F834C8E0B5CC712CDE9FA31B68F178C3389ABC812988A28249C1F2152F4C7E9822D1264ABD71595A12211114B7C65514CA0A233FFACCE56E40AEAEF861A8BD07
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 61150746BCF8A1155341C22E2072B2A7 | sha1: B45959D19565F6F219AF4678DA1BC0D5D03E31DD | sha256: B2ACDE7AE93D7678D12CC2EC78A42106ADD00EF78425132ACFBFC2C69F72100D | sha512: 1AFC470640295E181C874C4461485F858813EDD7F02280DCE155A8FEE8DB0A1FBB9F32BEFC953F5496FBD2651C9B7D49B3B2AFBF455230C06A0EAB20F90D397A
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 6F1750ABC487A7C4E6403817796012D0 | sha1: CF7267D5633419961EA198BD6A2173A5FDDA2CD6 | sha256: EA0414D450871049B1A3FCB455676C3C714E3A5F38C612203784F2E93B256B5A | sha512: FD6CD67B296E0449082A475E1AD41703A68FB1DBB2A4084870670818F967D8B9414714D60BEECEEA70A60FBD178215A8686D5496F4FE4D42BF9AF9E414ADEB8C
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 01D349EA8A38F01D0B1445C80F875BDA | sha1: 71D81E658C2CCCE9254F9B4E3571A807F276DCB9 | sha256: AB335BAA2DDB68B8AA002527C3C4D09223EB0F3B1032BFBCABAB9E34DDCCE617 | sha512: 3C0315A7DB7CE990C20C9B855B4B346F91EFEB13E02089A1DA56FE0C657B98021B969FE4017617ADBD48671814D004A9A327C91550F4CF47CABF054FBEFB3F4C
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 7F9FC43E972F5748CC11F3F43CF8E38A | sha1: 31C4F5BB59C16773C1BC15D20C73827C6224B673 | sha256: CFD8FEB9DFBCCEF597C03D845BE8A0EB88686A2A40477D2B59C0E6F2896C5665 | sha512: 57045A746C01DEF6CF526696314D674964B9B504E0ED25D578BEB1F9470B5FA9A86AA66152AD6C88E8C7224EC9F96AB40B1749A328B6F14C3581879725BDFB91
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: FA33B71BDE31D1AA6D7EC98920B06790 | sha1: 93D80527123CE7B848076E8CB579F5D3ACC06DAE | sha256: 7D22C444C3102F4044F0C885DEB55CA70B179EA075591B77E45E22D0AEEA2212 | sha512: 3B622067121033BD67E6C3B6A724B0312838CB977C7B03B8BBB5054C847820FBD0FFAE5EE1970D0D75B9E678B65AA17C55AF910115B007A2C72F3AF1B9141E47
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 1C1648409CEC42CC3ED32EE3C7E24EB9 | sha1: F4DF7E1AEEDCF51CE9EF94655D266D586A8C81A5 | sha256: 5B47E6405C5A4E2993FBA0BD35B19E9C6B8BEB52B17AC0B209002F671CE8D34E | sha512: 82C188B63FCF4915F8E6288D8B276384E28A275EEDC3640983A86CD463BDA45FFFC88D3A62CB0E40E46703173FAF34062462D4D37C747BBB8A727ED50A320219
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: C1F472970D7E5F68D5F1560D86923974 | sha1: 073702F83FF112CF9C348B83D9DE3370528DD152 | sha256: 6428DBF1325583A2FC0FD229B8B9F194F5A7CE37266682EFB878C97B1A21277E | sha512: 4B86DF9D4A0EB1CBC845CDFD04CE9ABBE6F847A60C8C6C536D6976DD51E1743A279023BDA4B52BCBB19AAA683EB63D77867876E353DADC8FC4ADAE34B21BAAEE
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 9439B1F4175B272F4FC394DC60493D4B | sha1: F658AB3ACC16BD07AF8B30CC02E861239A9C8A86 | sha256: FD6DF35AA6CDFB67AFB7BC7BDB291E4EC79EBA184051518C083C25D63F28BC67 | sha512: E31CD848E33EE6629D07B95599DBED5B36BA40975252085C1EB516AB40C41A944DF5124483DF3967F490EE9086F16D56F2CF8268188CFD784E0BB3773E6EFA8E
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 4FC3FD322D3882B3A11A6EC4FF02E017 | sha1: 8B5A3882F80F204050B8BE9DE37521F429AA2486 | sha256: ED91BBF4DDB81348364AE3ACF1991AFC2DDC5D448D68D2B61C626C6983D891A5 | sha512: EAF81DA5667724A97B8668095F388E7EE8DE8294134E1F90A6A76EC2671F417C321E3B90CFA96A1F83CB295B565E571239D652C8AD4C7F407D4F6A3CF84F24CE
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Client.resources.dll
md5: 783B3A75A58D59DC44FCD2E617951F76 | sha1: 86668710890E3ACDC535B2A578E794AD83CC5D30 | sha256: BDA3EE0BAF4F136EF114D277D29B92251AB8AE0BAB9DC6F19025025C334B0145 | sha512: 762B0D241F2B764D2751212D7967A9BA1A9783254EA24F4B5A433420E093A832E8ED8E5EAC1D53E0CAF7741ECCEA4153088D065ABEBA8CD6CFABF7C1CC002D9D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Common.resources.dll
md5: 798535301A8C829593E27299C9D4C6F0 | sha1: 1EE45C9ED8ACF073001029E30C227CAC7B2AA511 | sha256: 664324AC57F529FED0CAA22C6A87D0FA8FBF7A59DF99383662C8C589281C3363 | sha512: 06D8C26DE3CC38E564E829A4BBEEF9B93FF3206CFB6646B24A1DDD7A5628CEE84B6DC20976D98BEC4DA1E8909D8AC428C4CA8989DB414511C19A98B7CD7A1828
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: BF0D9F4F197EC36B3B3FD5E035078EEC | sha1: 39EAC352ADE9EC01F88853C253C1A8736950C693 | sha256: B2E4E6B99D9A7ABD4E6379AA087C3B71B2EBFFA600DF966A5B5F38F71714CC68 | sha512: 4D4E493AFE0F87C65D770F03DA823145402CC3B1D79010F8C32C1D0CC511EF77E8610F40865FE5E9E23644BE992521A8913740A46A702404A0468843CB386792
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 081977B38C24111514B4E133AB2E6307 | sha1: F3936B9988274FB2E6906723F7D52F5128FACD89 | sha256: 218F4CA7CF426268861A8057DA528B0DA0F7D919EA56D0C213DC35B69BDA889F | sha512: B9427D1216B6FE7665D386D803707D152322A2712415F43EBDD312AA9C648218F9D65D24896F30FB4BE4D0ACFED837104B6961A9B2DAA16F29675495F1A4D30E
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: C4185D85AAD1ED356660AC8E3488B580 | sha1: 85895A891E19F3A66B2631A771F3FA23DEBE8840 | sha256: AF42496A685A8E68B786FCE14396E59C5BB847B5DA32480D6E80D0D3A2448DCB | sha512: EA17E041CC51C9F4443EB94E3517276750A020B16AC2CEFA8B55B35450101ED5856BB9D9583C10153E3C4F90C8C3B2C4D3F1389BDA6A7E323338E5290F48C9E8
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 29D4EAF0875A5A5533083A91C91C6A70 | sha1: 55ABD0D79D2B2B213DBF90F2103BFAAA50DB0AE3 | sha256: 36F4E07B39E19D953E3C29B8C65D3CF5C9435EC0F7857AEF415BC25B40D026A5 | sha512: 3AC1E156DA848D938E283CEE027092B96D5132D6AAC3BE93DBC46239ADEBEE6EA7DA93FFD44C7ABBCEE5388876F8EEAFD2888B79E4D46FCBB0B335FC66F06015
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 808E0FF52EF39F5F157B6D21C131E8D8 | sha1: 39C98AFBDC3CB26397F5E1CCDD11148B75741188 | sha256: 34FA940E92596C7EE080E2E9B8EBCD0CB879749B6B6F5BD016887BB6661A1830 | sha512: C2885789759B8626EA5B505CFC6E839F734837F9FE28CFD07DD68ED5067AC6B4B1B447E68FA43892D35B9B41324D325AEB7F983410F75CF1591FD47417AA39DE
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: C62F773B2AD91F952EFDE1DC88A753F6 | sha1: 4D2C5076551E5E8BE438DC1F61CF0A61D0579638 | sha256: FED9EB9E60987FDD4255532769D7AF49D79469D9ACDB72F1D850583374848043 | sha512: 8DFE5284054085A2AABA415862ACC0D76BA8CE149E6C7ADA923B1754C86AF7CAEB5C108FC3EE2A331213F66FB60CC1D41D0FFA4D239BAEA4C6ADB76BCAE907D0
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: DCB5631E894DB839EC0966EA693418C1 | sha1: EB9C000EFE203C31F07808DF9D5629774E8939FB | sha256: 275E5B1F4F2A37DA13D44181B53C048A92B7D9EB32861B7CFD355F153E41FCD7 | sha512: 22CBD9AB8B91280BC15895FDFF433E7A442D7CA655C455A63658F60ACF58A9C94BDCEEF80769CC5B163C28F85573327A56B948253F0C2B32A6B29BEECA618724
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: B402F65A9257A6C2DB71F19CFF25ECEE | sha1: A103ED8638A66388F2FEA54ADF91D69603277016 | sha256: 5833AB31655F048096ADE16A55E04589BF1A85E0C08956F9DCBDBB8A89EC28F5 | sha512: 96013F90A305E286AEB1AE00212963AA05AB24AB27EE3B2D3B1621BF507C1812F4F836E45B20E69BF1E246CBB4EC5473E68DF2FD7A9AC3052563E7076B144506
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: BA94000AB293D540054CA563F1577D39 | sha1: E39AF52FBD1AB8C6047CAAC85A54C998A9EEF0A2 | sha256: 446FF50C28DE8F803CA274229F8C624353537D5F14EFFF2C7994F8A9D4EF9D8C | sha512: BA34002D5130E3478288DEA7CC6CEF18920F3C3B6E8D712C5C4E25BD007E2B90CA6559CCB769197ABAF257EEAFB4ECDD669C08F78D1EA959A0A216D076071E05
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: CED59CEF571B181733D49BEC8B0E5C1C | sha1: ECD919418D41BB9AE55293455A765D86C71A7837 | sha256: D7F7EABB5B3BD8244D396E66FB3C91546EB60528FBBB335413602CA1AB2E96C2 | sha512: 974DE0B4DA69622790D80D42104B065552E63AC2AE639F610DBB1BE7ABD3C99F1B3195668449BB52BD211020E4234E4E02BFA01C6BFCEC7187B042C1BD785E75
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 02EDAE7547193D2800D84F3B78481138 | sha1: 9EE396BA171103C60448F18A85372B803BBBA2FC | sha256: C9F7CC9EB5FA614AAAFBDB6859166026FDA99D625AED09D0D786AF6F14B6877E | sha512: 9AD79A2DD56BE056DACFB8DC3C1582B75DB03D88AF852DB191680899838ED8E30BD440E522223C2B435530D8F096EB423FF52F7F1ABB5F30BA7CC78E90452310
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: BB141F540F254E986ED431A8A37D8EB1 | sha1: 25818D182D05DF8112146B48590BB9EFD158C0FE | sha256: 82EB011E050769DF740E05EF8D1D11351FB87D65A145F96B3D9E05A366FE115D | sha512: 86778A30DD831D4983A8CC00075B33E2F5208A77B9AEC69C4231E1E536FC0C6847EEFF33C9B1BBC9755F6E13D3C6CF1F0EB858D1927F1F9DEBDC027E34615597
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: CA4C694F0694DA36C6E0A765D5F7C4B0 | sha1: DDEC918122A4C77FEC88C8CE68A225CE0C58095F | sha256: B477D324C4651AA8366586E6F92899D27A813AFDEC17F4805092D8EC7FAD6B07 | sha512: 3AC85B021A968184B7EADC67FF9E9C5015290EE664437A0419A5A3622086594216A4C8B973A9185CEC6E6214D7C307E0EFFCD22B5B3EC51161EEDB11C2A91D38
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 3660A860637448746BC9889575FFD1A6 | sha1: 38047CAA6F17667F44DA1A201966EC97A554BA67 | sha256: A87982A3FCD4D7D422A0110FD616D704A519295410F7C2516B7149DCA22849C6 | sha512: 8303D822BD608FEAC9AC28922FF090647612A2DE8800C7B547BFC380D0A3864E34CF58C64503FECD36E5981375F1700A8ED4F7F980C784917DF365E9B4CE2D8B
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 3600863014B1B725B71D24A8CF515929 | sha1: FD17371734C916EF944B007DC751E4CEE5EA151A | sha256: A624614926F879C7D234BA5E1D81013C0B0296B071BF13A22D7C6AB36030F39F | sha512: 97C8A511DA73422B27790015A2369E8BBF54C57293E08CBBF739B5B82A6B7C2CA8245AD058C3C94DAF7D368ED4E0AEC170F8C7AC52EC2627C0D6215FB0364672
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 62D822B269FDB0BDF2D11EB23D41153C | sha1: 962043C817B970AD164B8B2BB76B30743AB63EAF | sha256: 949E3C736CE528490792C4383E833EBCDE6F517B1F19D94C5B6922E9209476AD | sha512: 348D2013BFE4EA91B993715FE67D8AB61F7B82D6B477AF097EF8861ED0A49BE0E2AA4F5CB8ACDDF63D1E4009CE081A220DA60144C98DC90E417F238E795A380F
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 48BEACD9DF5783E7D6806E895CE52A67 | sha1: A36CBDB1EC54F34FC080E943BDF3F1A6D97309B4 | sha256: A79DA0DC9FEAB305330A434DC923578C965BBF638BA3EDC432EA31F7FD9626B9 | sha512: 264C710EEE8AFDC4400EC3A136ACEE52BF45DE5F7402F5096966341376EA9E94DF04E6FC98DD390E5BF6A06FBEFA41C5687A2A408238DAF9AF33123B9E46E987
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 18EBD69D46AB289AC4DE5350F1334C5D | sha1: 644A114E727D8D0D7398B2398FBFBCCE120690B2 | sha256: 35C96E9A0855B8CC09A3CBD2B527D8F18EB1622BA0F859A7A1CB8F0FC8B8A99C | sha512: C2C985C4F1D982D7D7EB88F6CE4C6AF143148E6D73037BBC8A837636D2132741E328896630B53BF7F5289DA04772BE09CF04AC81A57443585D33130E514C19CC
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 0E5EA3DF481BA15E66A002A27E7CDA8D | sha1: D04D621A261DF15CA7C973F2A792090C863F3383 | sha256: 722A105B5C52B02D6AF083821F789DA8639CF44423817A78063B0A545728FACE | sha512: 10FCF93D71E18C75626F86D24E52325900CC6A4E7E98C9FA3474E446BC035C8C7DE6A8D898451E827431820BAA024928CBFC304062F2573671B507BEAB47D6CA
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 1EFAC45FA3092E4EB60C4EA0AF1A4884 | sha1: 9BBBA825B3369B5ACC53EC387FC2CB4204904CA8 | sha256: 046BED4B01D380C292C7FD8E73BDA4A7FCDDABBE605020AD899A550F594B9337 | sha512: 57F2F76E580EC6586D09EC9AE7D7875B188FDE4150106F1527BD3DCB212B9621FB172484DF9E054869999CCC917EA88BDFC1A34CA2074D83BFC5ECC106E72739
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 6CC753E54C1937B429FBF537EBDF2BD6 | sha1: 9FB8E0F1DA254EC6BD32B739EE374FA43F687900 | sha256: D28BE4E61138C571F97CB9867AE6EA742C20876642AB9B246EB8111F4F48BA7A | sha512: 2AB2EEEFD692DB707940261B311F249DC6CE9236B76646D848B8F46E018D9E13838060CA0684E6ED3100685F905AEA2812301E1029F1E851A91B9B60C1BEE4EF
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 6334E3F66F51582541BFCF4621A6CBEA | sha1: 7DDCD541C2DED4A533BAD8F42684336D20CAAF9F | sha256: 21F0A996CDCA3D10F5B3948E6CBEA972CAA901710E02F8E3E9DDB64FE7C303A7 | sha512: A372A353DEE9DAA44975BDE5BFAB01DC8130CE174C1BB306358BD4A5AFA158DE4C6B6977963BF1327BC2D5FCD93DF1CC0E9ED8E6730FAB091FE89A1A0BE4BC11
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 49F814C179D68B6F4EEC5A5E9119AF76 | sha1: 324C85446335A6BEBDAB53CE9058707F17D09202 | sha256: BF4C39EF4C9BF553885706A91AC59F1A369B3A773AB88900C728B19EA7EF48A2 | sha512: 8FFB7D59FD9A2387D9A66F14A80DEF5351E97962D942BE63238454C02C501BEFBA77846810AA9C3B4358AE5E0C58121FFEE9DFD7EA1B1E6C2690A29966F93367
tools\TfsCmdlets\Lib\Desktop\System.Collections.Immutable.dll
md5: BDDD1CF42DD6F7BA5D1D7114CF7D86AF | sha1: 7AE42F96E3348EEC36783C15AD5D9E453D232FAE | sha256: A411A3E3AAC75D3211D8A58810B5FE13329E9D0BE62CC62C61FB1B3351E11FBD | sha512: 1C2B2ECDDD465C9304F88DBF13301403BDDEFA05C061923020625A088A245EA6837E94334013CC8CD6FAEEEB53671F0CD1D3C3349BBB149C84FE31C357632C00
tools\TfsCmdlets\Lib\Desktop\System.Data.Common.dll
md5: 4EC7C87D3C8820C20E8C2EF80D80D363 | sha1: 1FEABEBF78539D5E7316BC4352B4383D239FD438 | sha256: 4FE23DD147813C0B724B62FCFC0CE419E9A4AD36F3DA4CC43E5DA97D796E289E | sha512: 2504DFED8DCF4F5C1CC56CB9EBCB03833CFB6837D0592F82DBDBC28899B6F1AAE2E007E0175AD7544FF13B017F3063145E1826267A5DFAEA91BE182ACCA3C5BB
tools\TfsCmdlets\Lib\Desktop\System.Diagnostics.StackTrace.dll
md5: C20C268EABDCC95DA38AD646A0AA0310 | sha1: 3760E870DFCFA41071E5B39CCA59265657B3715B | sha256: E932B25F50E3B09DD7759FF5B9E9ABFA8FC115EA171B768164AE21387FEAC7E8 | sha512: 422F8F7A50F457EB979652B14A6C06A51A6A94C7EB9F56045A4B944ACBE3026580465AEFFFD9F30A4334A556FA1EED8488DB0766C16D637023E72B579A26DFCF
tools\TfsCmdlets\Lib\Desktop\System.Diagnostics.Tracing.dll
md5: 482573CB18B537A7415DCC00C906611D | sha1: 4377161FBD9644953471A94021DF437F21FE83E6 | sha256: D4A59FB62D8A7A138A49911110F8B2AB416196DF95F4CFC599ABB6EC61629E5E | sha512: AA96E1544FD0286FB1D6A77B8ACE8745F69EC4835CF0957C457AA3026B4AD5EC02E953C7BC106D80205109A85512D1DF99AB3DE7D41300E96858298AE5767FE5
tools\TfsCmdlets\Lib\Desktop\System.Globalization.Extensions.dll
md5: 8DE05921A38C0FF54E6D4B4ED0C32235 | sha1: 5BA1692964F8732D2CAAFA6A8D1009DFB8B4A764 | sha256: F690794A0296D8DAD4F30D626A8A89121DF51B5909E440DA08707B09518D040E | sha512: B7DAE61979760224EDDC28C717B78AABDCDE2C9ACD3659958041D08B44CDA12E9D62F15B436691213771A4B32714BD78D54D2BA4C90471FC7BFF4BF274C66C07
tools\TfsCmdlets\Lib\Desktop\System.IdentityModel.Tokens.Jwt.dll
md5: F9CA978B29C5B56B502CC37DEA7AA8E1 | sha1: C8914013108C48086E09D893F8FD0507D719300A | sha256: 919B933E167252DE36A9A752DD296C475475F1817A19D9F892D0FFEA3854165D | sha512: EDF2294B19ECB580E9356E1D2B549349FD668DBE66A3CE0D2E3D50C158049E9A93A226078550C1313A39390ABD24128C4A68226E2A14A43D0BB7547B2E111A23
tools\TfsCmdlets\Lib\Desktop\System.IO.Compression.dll
md5: B2CE49C37351D7A7471CD20C9E02B6E9 | sha1: 44EB7732131B4B1B25EA8D023C3D2F544E017F24 | sha256: 76FCACCF84313BF78F523B3BC8198C2D040DABDC04A5DC863B46C8AF7AC10A88 | sha512: 40980B050861F7C4F1ED5B71F7F7FD91052FCFC1C49B7B3490D9A4FD68FEC8FD3C95AF38D113ABA8E7F1CE2B4CEADD1B6D66C5D1EA68064EC6265C266BE1AFC5
tools\TfsCmdlets\Lib\Desktop\System.Management.Automation.dll
md5: D4C1558516297C9F4989BA8CC5276AAC | sha1: 5D99737E910358F37DFABD1D400AE123C1E04F35 | sha256: 197C7EC45938E874F6324DE0FF2BE3AA9B0F4BC27E031E89F14C5371FA0EF808 | sha512: DCB8F56C33743A1F43305F7DBA34F8DF079C049B759F948DA395DC731515CB32A4F548B2839926350F6ADD1696F12E7683A9AB2AD8EA6528F317AF30E292224E
tools\TfsCmdlets\Lib\Desktop\System.Net.Http.dll
md5: 5A5E18C377228FDB1D3DB74F1140C1BF | sha1: E36366D2CCB64AEBCC9DF8FD7FADC7A9BB562AF7 | sha256: 8646A26A64928866BBE8746F3323A1F446C5A28C10B6B81DF9BF4A08336B8C02 | sha512: 0C308B29FEBFB5D4CB52BD3B7B0C61A5844EBF1BDF305BE2B89FB0F5040F52ABD8557E9C4245A4F35C527A23674F1AE97BB12CC3A02A7DD7C8387208FCC73152
tools\TfsCmdlets\Lib\Desktop\System.Net.Http.Formatting.dll
md5: B676D5E9828D6010339743F236F54EC4 | sha1: 0DFF461BE2E04EBF6DA5F4F2D3EB639CC2E0A8B5 | sha256: 7B58ADC6E23B24CD6615B35E848A002BDA053A26D48F9DDAFACFC8098E97C49C | sha512: CCA0ED47B391B12F44716DB1921314E7DCBF2A9F6B0916C78642B4AA814825C570569B103A7F5E298E9C02DBAE22E7CB905F08F80F94AD6DCB69FE09085CD8A8
tools\TfsCmdlets\Lib\Desktop\System.Net.Sockets.dll
md5: B59AF5CBDDAFDC5DC5FF3E34533D6857 | sha1: DEDE511B5270D55E306E1A744E4BC0384A35C8BE | sha256: A4B4BB8B9BE478600F48E43AE8571E6C123F8130923067F10FC92546D0900FB6 | sha512: 4E0104C8A650943D8680F0BD449D4B953B25FF909BF50BE19772E88295F9CE7542F29211528E20B4AD798D26251A50211EEEA8685E3D81FAB72DF1380CA6B984
tools\TfsCmdlets\Lib\Desktop\System.Reflection.Metadata.dll
tools\TfsCmdlets\Lib\Desktop\System.Runtime.Serialization.Primitives.dll
md5: A84B438DBD4DF29560EEB5765E03723A | sha1: 37DE951F703687CF061556B1A52C6F548CBF779E | sha256: A576D1609CC08C46A46CE708B7FDAE33452A3BEFB701128A5BC9D6FF1F1B6DFD | sha512: EE6855BCA6EE6FF8AC7CE5C0565CCC77C35E5F1B3096F1EDE2C018D3364683BC289C6C520472BA46E174FDBD821EA673BFFA7DABC9358CE4C86D26F0C08FCC7C
tools\TfsCmdlets\Lib\Desktop\System.Security.Cryptography.Algorithms.dll
md5: 79C6FA92DBA0C34DB2C412BFA62E48A3 | sha1: 583A3E0F870ECE6419350A8656D7D4AC21746F1B | sha256: A83CA72A33172E977D7FFF1E96FA6CBAC6BEFE86DCA21D651C04578210325225 | sha512: 386AB22AA5299C5D4FB3D8B551F97C916129F05FA87D4D3D90B58BE1CC304FFD3431B0B5402A0A77F2DB64B713F31BA60B3D006D0F01EB5A5195A4307ED7F590
tools\TfsCmdlets\Lib\Desktop\System.Security.SecureString.dll
md5: A6DE3093FFB397AF3E4D2A91FA46B738 | sha1: FB9FF696F96BB574EBD40C2AC9C980FE45AB0F84 | sha256: 9239DE3543EA4DCF71AD86F16AA23EEB760566BC69078925900D0E41EEC859AC | sha512: 3EC05A1DE21EC4C96D6137788A868342AADE033B2D6E9ED7972C8FBEF3503CD03DD4728BA34E37C577AC301C056BB8C142516332C31D2F131599021A307DA86B
tools\TfsCmdlets\Lib\Desktop\System.Threading.Overlapped.dll
md5: C8CE5A96458742641AB9752B5B564039 | sha1: B3315E3657442F82B9A84E9ADE610846D183CAD1 | sha256: A74A34E69B5226F0EE4882F7AC1FC0A88602139ED439202C5FC5C8ED489BFA11 | sha512: 16D4C5180ED313C10886C1E411BF38B5B664D5D3E1B9CB1CDE2D6DDF9EFE39367A792E818636B5E12F90A027C68347A546BF43B386195F50904BD9B5882A005E
tools\TfsCmdlets\Lib\Desktop\System.Web.Http.dll
md5: 145EB749E3B061DAB3360B142690FFD6 | sha1: F0759599123B46212080FA42E84F23D2EA2D7B0A | sha256: FD09C793BDEB4AFFB991D04D2AE1B09DE0B81422D57968231884C66C8410DE02 | sha512: 3DEF8EC69FACD7BE6B0FE0082548DFC46D2853AF721E22014CF1A1C46F7C7D0CE4C32283EB8EA38763B924CEB0DAB1AA24EAD943F93455A59C7028B680A5730E
tools\TfsCmdlets\Lib\Desktop\System.Web.Http.WebHost.dll
md5: D1976F7280F75E8B6D8FBB2D03BED6EE | sha1: AA964BFDF49330C118FD2FC186FB6633266D3551 | sha256: 4CA246031C9CC050FE3E88C3F5ABF970612211155CD6FFA6C9E81E5050337A36 | sha512: 88EB23BFF00D9F61E664E54FC873F03481A7E25C476C7C92A988132CB9E79373AD41938B8C158CBB48B3CC8F55184E72CF8E54775185EFA1020F9EF35F025BB7
tools\TfsCmdlets\Lib\Desktop\System.Xml.XPath.XDocument.dll
md5: 54A0AE378C4D20F237E8B01B29E907F2 | sha1: 08FD364458B935C82ECCCA43AC53EA182DA4EA45 | sha256: 05DF614F3252B522D2AA078585DCDDD502A25BDB06CA3A44B1C0D24C1ADB85A2 | sha512: 12EA4FFBCD243F3DB5FEC4D4901F5550F044E49478A909416E7B588EB15E9C6DD005D8255ED8235E803C76B57FBEEBA6FC9B0B85A8155787C1D885537EB87611
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.dll
md5: E8658ACF94979B1CAE3F55906BD14867 | sha1: 4C8E00BA9F8B43D2F260A495F7619FAC5A14931C | sha256: 761956A21BA9DE20BC624401ADE4090FD97F15B3C3EA08A9F3B85A22163C1229 | sha512: 1505F8BA50A27FEAB63A014D1713609118300B554D74A56BE57B75F3CB5D50F57D6CD5CC91D644C5929F44045B6524430A5BBD7B536923D2C6996A6FAD211D01
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.pdb
 
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>TfsCmdlets</name>
    </assembly>
    <members>
        <member name="T:TfsCmdlets.AssemblyResolver">
            <summary>
            This class is used to resolve TfsCmdlets assemblies in runtime.
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
            <summary>
            Mantains a list of all assemblies stored in the /Lib folder of this module to support 
            on-demand assembly resolving and loading
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.Register">
            <summary>
            Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and 
            loads the list of private assemblies to the Assemblies dictionary
            </summary>
        </member>
        <member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
            <summary>
            Represents a private assembly
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
            <summary>
            Creates an instance from an assembly name and its file path
            </summary>
            <param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
            <param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
            <summary>
             Assembly name
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
            <summary>
            Full path to assembly file
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
            <summary>
            Indicates whether this assembly has already been loaded by the Assembly Resolver
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
            <summary>
            The actual assembly represented by this instance. If the assembly wasn't previously
            loaded, it will be read from disk and returned to the caller
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection">
            <summary>
            Detaches a team project collection database from a Team Foundation Server installation.
            </summary>
            <remarks>
            Before you move a collection, you must first detach it from the deployment of TFS on which 
            it is running. It's very important that you do not skip this step. When you detach a collection, 
            all jobs and services are stopped, and then the collection database is stopped. In addition, 
            the detach process copies over the collection-specific data from the configuration database 
            and saves it as part of the team project collection database. This configuration data is what 
            allows the collection database to be attached to a different deployment of TFS. If that data is 
            not present, you cannot attach the collection to any deployment of TFS except the one from which 
            it originated. If detachment succeeds, this cmdlets returns the original database connection string. 
            It is required to re-attach the collection to TFS.
            </remarks>
            <example>
              <code>Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</code>
              <para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</para>
            </example>
            <related>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</related>
            <notes>
            Detaching a collection prevents users from accessing any projects in that collection.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Collection">
            <summary>
            Specifies the collection to detach.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Reason">
            <summary>
            Speficies a Servicing Message (optional), to provide a message for users who might try 
            to connect to projects in this collection while it is offline.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the detach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection">
            <summary>
            Attaches a team project collection database to a Team Foundation Server installation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Collection">
            <summary>
            Specifies the name of the collection to attach. It can be different from the original 
            name - in that case, it is attached under a new name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Description">
            <summary>
            Specifies a new description for the collection. When omitted, it retains the original description.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseServer">
            <summary>
            Specifies the name of the SQL Server instance where the database is stored.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseName">
            <summary>
            Specifies the name of the collection database.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.ConnectionString">
            <summary>
            Specifies the connection string of the collection database.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.InitialState">
            <summary>
            Specifies whether the collection will be started ou stopped after being attached. 
            When omitted, the collection is automatically started and goes online after being attached.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Clone">
            <summary>
            Changes the internal collection IDs upon attaching to that a "clone" of the original 
            collection can be attached to the same server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.PollingInterval">
            <summary>
            Specifies the polling interval (in seconds) to get an updated status from the server. 
            When omitted, defaults to 5 seconds.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Timeout">
            <summary>
            Specifies the maximum period of time this cmdlet should wait for the attach procedure 
            to complete. By default, it waits indefinitely until the collection servicing completes.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection">
            <summary>
            Starts an offline team project collection and make it online.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection">
            <summary>
            Stops a team project collection and make it offline.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection">
            <summary>
            Gets one or more Team Project Collection addresses registered in the current computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
            <summary>
            Returns the team project collection specified in the last call to 
            Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.ComputerName">
            <summary>
            Specifies the name of a Team Foundation Server application tier from which to 
            retrieve the connection string.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
            <summary>
              Gets the installation path of a given Team Foundation Server component.
            </summary>
            <remarks>
             Many times a Team Foundation Server admin needs to retrieve the location where 
             TFS is actually installed. That can be useful, for instance, to locate tools like 
             TfsSecurity or TfsServiceControl. That information is recorded at setup time, 
             in a well-known location in the Windows Registry of the server where TFS is installed.
            </remarks>
            <example>
              <code>Get-TfsInstallationPath -Version 2017</code>
              <para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
            </example>
            <example>
              <code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
              <para>Gets the location where the SharePoint Extensions have been installed in the remote 
                    server SPTFSSRV, prompting for admin credentials to be used for establishing a 
                    PS Remoting session to the server</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
            <summary>
            Indicates the TFS component whose installation path is being searched for. 
            For the main TFS installation directory, use BaseInstallation. When omitted, 
            defaults to BaseInstallation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer and also 
            the permission to access the Windows Registry.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
            <summary>
              Gets the version information about Team Foundation / Azure DevOps servers and 
              Azure DevOps Services organizations.
            </summary>
            <remarks>
            The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. 
            When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
            <summary>
              Gets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. 
            
              Registry entries can be scoped to the server, to a collection or to a specific user. 
            </remarks>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
            <summary>
              Sets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the 
              value specified in the command.
            </remarks>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
            <summary>
            Specifies the new value of the Registry key. To remove an existing value, 
            set it to $null
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.StartIdentitySync">
            <summary>
              Triggers an Identity Sync server job.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Wait">
            <summary>
            Waits until the job finishes running. If omitted, the identity sync job will run asynchronously.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.CmdletBase">
            <summary>
            Abstract class from which all TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.Provider">
            <summary>
            The service provider injected in this cmdlet instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.CmdletBase.CommandName">
            <summary>
            Returns the PowerShell command name of this cmdlet
            </summary>
            <value>The name of the this, as defined by the [Cmdlet] attribute. If the attribute is missing, returns the class name.</value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.BeginProcessing">
            <summary>
            Performs initialization of the command execution, logs the supplied parameters and check whether the current 
            this is tagged as "Windows-only". If so, throws an exception
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ProcessRecord">
            <summary>
            Performs execution of the command. 
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="variables">Variables passed to the script</param>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript``1(System.String,System.Object[])">
            <summary>
            Executes a PowerShell script in the current session context
            </summary>
            <param name="script">A string containing a valid PS script</param>
            <param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
            <typeparam name="T">The expected type of the objects outputted by the script</typeparam>
            <returns>The output of the script, if any</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetServer(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "server" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsConfigurationServer (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollection(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a "collection" Connection object built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>An instance of Connection containing either a TfsTeamProjectCollection (Windows) or VssConnection (Core) object</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionAndProject(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connection and a TeamProject objects, built from the arguments currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object) and an instance of TeamProject</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionProjectAndTeam(TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns a tuple containing a "collection" Connectionn, a TeamProject and a WebApiTeam objects, built from the arguments 
            currently supplied to this cmdlet
            </summary>
            <param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
            <returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows) 
                or VssConnection (Core) object), an instance of TeamProject and an instance of WebApiTeam</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetClient``1(TfsCmdlets.ClientScope,TfsCmdlets.Cmdlets.ParameterDictionary)">
            <summary>
            Returns an API Client from the underlying connection
            </summary>
            <param name="scope">The scope from which to retrieve the client. Supported scopes are Server, Collection</param>
            <param name="overridingParameters">If specified, the values in this parameter will override the values originally supplied to the cmdlet</param>
            <typeparam name="T">The type of the API client</typeparam>
            <returns>An instance of the requested API client</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetService``1">
            <summary>
            Returns an instance of the specified service
            </summary>
            <typeparam name="T">The type of the requested service.static Must derive from IService</typeparam>
            <returns>An instance of T, as provided by the current service provider</returns>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItem``1(System.Object)">
            <summary>
            Gets one item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.TestItem``1(System.Object)">
            <summary>
            Checks if specified item exists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItems``1(System.Object)">
            <summary>
            Gets one or more items of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.NewItem``1(System.Object)">
            <summary>
            Creates a new item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RemoveItem``1(System.Object)">
            <summary>
            Removes an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.RenameItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.SetItem``1(System.Object)">
            <summary>
            Renames an item of the specified type
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCurrentDirectory">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ResolvePath(System.String,System.String)">
            <summary>
            Gets the current directory in PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.WriteItems``1(System.Object)">
            <summary>
            Outputs items to PowerShell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.Log(System.String,System.String,System.Boolean)">
            <summary>
            Log a message
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.LogParameters">
            <summary>
            Log the parameters passed to the cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckWindowsOnly">
            <summary>
            Check whether the currently executing environment is Windows PowerShell
            </summary>
            <throws>For cmdlets which are "Windows-only", a call to this method will throw a 
                NotSupportedException when running on PowerShell Core.</throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckRequiredVersion">
            <summary>
            Check whether the currently connected server is of a minimum version
            </summary>
            <throws>
            For cmdlets which require a certain version of TFS, a call to 
            this method will throw a NotSupportedException when connected to 
            an older server.
            </throws>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.ShouldContinue(System.String,System.Boolean@,System.Boolean@,System.String,System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.CmdletBase.DoProcessRecord">
            <summary>
            Performs execution of the command. Must be overriden in derived classes.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer">
            <summary>
              Gets information about a configuration server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Current">
            <summary>
            Returns the configuration server specified in the last call to Connect-TfsConfigurationServer 
            (i.e. the "current" configuration server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer">
            <summary>
            Gets one or more Team Foundation Server addresses registered in the current computer.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.Server">
            <summary>
            Specifies the name of a registered server. Wildcards are supported. 
            When omitted, all registered servers are returned. 
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer">
            <summary>
             Connects to a configuration server.
            </summary>
            <remarks>
             A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, 
             it is represented by the Tfs_Configuration database. Operations that should be performed on a server level 
             (such as setting server-level permissions) require a connection to a TFS configuration server. 
             Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. 
             NOTE: Currently it is only supported in Windows PowerShell.
            </remarks>
            <example>
              <code>Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</code>
              <para>Connects to the TFS server specified by the URL in the Server argument</para>
            </example>
            <example>
              <code>Connect-TfsConfigurationServer -Server vsalm</code>
              <para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</para>
            </example>
            <para type="input">Microsoft.TeamFoundation.Client.TfsConfigurationServer</para>
            <para type="input">System.String</para>
            <para type="input">System.Uri</para>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Server">
            <summary>
              Specifies either a URL/name of the Team Foundation Server to connect to, or a previously 
              initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. 
              To connect to a Team Foundation Server instance by using its name, it must have been 
              previously registered.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Team">
            <summary>
              Specifies the name of the Team, its ID (a GUID), or a 
              Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, 
              see the Get-TfsTeam cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Project">
            <summary>
            Specifies the name of the Team Project, its ID (a GUID), or a 
            Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection">
            <summary>
            Connects to a TFS team project collection or Azure DevOps organization. 
            </summary>
            <remarks>
            The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or 
            Azure DevOps organization.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsTeamProjectCollection.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsTeamProjectCollection as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsTeamProjectCollection by default.
            </notes>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Collection">
            <summary>
             Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organizations by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer">
            <summary>
            Disconnects from the currently connected configuration server.
            </summary>
            <remarks>
            The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its 
            counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" 
            as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, 
            unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeam">
            <summary>
            Disconnects from the currently connected team.
            </summary>
            <remarks>
            The Disconnect-TfsTeam cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" 
            as provided by "Get-TfsTeam -Current" will no longer work after a call to 
            this cmdlet, unless their -Team argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject">
            <summary>
            Disconnects from the currently connected team project.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" 
            as provided by "Get-TfsTeamProject -Current" will no longer work after a call to 
            this cmdlet, unless their -Project argument is provided or a new call to 
            Connect-TfsTeamProject is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection">
            <summary>
            Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" 
            as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Connection.NewCredential">
            <summary>
            Provides credentials to use when you connect to a Team Foundation Server 
            or Azure DevOps organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Connection.NewCredential.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
            <summary>
            Gets information from one or more branches in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            When omitted, all branches are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
            <summary>
            Returns the default branch in the given repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.DisableGitRepository">
            <summary>
            Disables one or more Git repositories.
            </summary>
            <remarks>
            Disables access to the repository. When a repository is disabled it cannot be 
            accessed (including clones, pulls, pushes, builds, pull requests etc) 
            but remains discoverable, with a warning message stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.DisableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.EnableGitRepository">
            <summary>
            Enables one or more Git repositories.
            </summary>
            <remarks>
            This cmdlets re-enables access to a repository. When a repository is 
            disabled it cannot be accessed (including clones, pulls, pushes, builds, 
            pull requests etc) but remains discoverable, with a warning message 
            stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.EnableGitRepository.DoProcessRecord">
            <inheritdoc />
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            When omitted, all Git repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.GitRepositoryDataService.DoNewItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
            <summary>
            Creates a new Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
            <summary>
            Specifies the name of the new repository
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
            <summary>
            Gets the Git branch policy configuration of the given Git branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
            <summary>
            Specifies the policy type of the branch policy to return. Wildcards are supported. 
            When omitted, all branch policies defined for the given branch are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
            <summary>
            Specifies the name of the branch to query for branch policies. When omitted, 
            the default branch in the given repository is queried.
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
            <summary>
            Gets one or more Git branch policies supported by the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
            <summary>
            Specifies the display name or ID of the policy type. Wildcards are supported.
            When omitted, all policy types supported by the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
            <summary>
            Specifies the repository to be deleted. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
            <summary>
            Renames a Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
            <summary>
            Specifies the repository to be renamed. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList">
            <summary>
            Exports the contents of one or more Global Lists to XML.
            </summary>
            <remarks>
            This cmdlets generates an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist"
            </remarks>
            <example>
              <code>Export-TfsGlobalList | Out-File "gl.xml"</code>
              <para>Exports all global lists in the current project collection to a file called gl.xml.</para>
            </example>
            <example>
              <code>Export-TfsGlobalList -Name "Builds - *"</code>
              <para>Exports all build-related global lists (with names starting with "Build - ") and
                return the resulting XML document.</para>
            </example>
            <notes>
            To export or list global lists, you must be a member of the Project Collection Valid Users 
            group or have your View collection-level information permission set to Allow.
            </notes>
            <input>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</input>
            <input>System.String</input>
            <input>System.Uri</input>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be exported. Wildcards are supported. 
            When omitted, it defaults to all global lists in the supplied team project collection. 
            When using wilcards, a single XML document will be producer containing all matching 
            global lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList">
            <summary>
            Gets the contents of one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list. Wildcards are supported. 
            When omitted, defaults to all global lists in the supplied team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList">
            <summary>
            Imports one or more Global Lists from an XML document
            </summary>
            <remarks>
            This cmdletsimports an XML containing one or more global lists and their respective items, 
            in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist"
            </remarks>
            <example>
              <code>Get-Content gl.xml | Import-GlobalList</code>
              <para>Imports the contents of an XML document called gl.xml to the current project collection</para>
            </example>
            <notes>
            To import global lists, you must be a member of the Project Collection Administrators security group.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.InputObject">
            <summary>
            XML document object containing one or more global list definitions.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite a global list that already exists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList">
            <summary>
            Creates a new Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.GlobalList">
            <summary>
            Specifies the name of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Items">
            <summary>
            Specifies the contents (items) of the new global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Force">
            <summary>
            Allows the cmdlet to overwrite an existing global list.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList">
            <summary>
            Deletes one or more Global Lists.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.GlobalList">
            <summary>
            Specifies the name of global list to be deleted. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList">
            <summary>
            Changes either the name or the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.GlobalList">
            <summary>
            Specifies the name of the global lsit to be renamed.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList">
            <summary>
            Changes the contents of a Global List.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.GlobalList">
            <summary>
            Specifies the name of the global list to be changed.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Add">
            <summary>
            Specifies a list of items to be added to the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Remove">
            <summary>
            Specifies a list of items to be removed from the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Force">
            <summary>
            Creates a new list if the specified one does not exist.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
            <summary>
            Gets one or more identities that represents either users or groups in Azure DevOps.
            </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.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.GetIdentity.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
            <summary>
            Adds group members to an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
            <summary>
            Specifies the group to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
            <summary>
            Gets the members of a Azure DevOps group
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
            <summary>
            Specifies the group fom which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given group. Wildcards are supported.
            When omitted, all group members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
            <summary>
            Removes a member from an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
            <summary>
            Specifies the group from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.NewCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.NewCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all build/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder">
            <summary>
            Creates a new build/pipeline definition folder
            </summary>
            <remarks>
            Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of 
            the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
            child folders.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the new pipeline/build folder, including its name, 
            separated by backslashes (\).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the pipeline/build folder to delete, including its name, 
            separated by backslashes (\). Wildcards are supperted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing build/pipelines definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
            <summary>
            Creates a new release definition folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the path of the release folder to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing release definitions definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild">
            <summary>
            Queues a XAML Build.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
            <summary>
            Exports a XML-based process template definition to disk.
            </summary>
            <remarks>
            This cmdlet offers a functional replacement to the "Export Process Template" feature found 
            in Team Explorer. All files pertaining to the specified process template (work item defininitons, 
            reports, saved queries, process configuration and so on) are downloaded from the given 
            Team Project Collection and saved in a local directory, preserving the directory structure 
            required to later re-import it. This is specially handy to do small changes to a process template 
            or to create a new process template based on an existing one.
            </remarks>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
            </example>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be exported. Wildcards are supported. 
            When omitted, all process templates in the given project collection are exported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
            <summary>
            Path to the target directory where the exported process template (and related files) will be saved. 
            A folder with the process template name will be created under this path. When omitted, templates  
            are exported in the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
            <summary>
            Saves the exported process template with a new name. Useful when exporting a base template 
            which will be used as a basis for a new process template. When omitted, the original name is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
            <summary>
            Saves the exported process template with a new description. Useful when exporting a base template 
            which will be used as a basis for a new process template.  When omitted, the original description is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be returned. Wildcards are supported. 
            When omitted, all process templates in the given project collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Default">
            <summary>
            Returns the default process template in the given orgnization / project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
            <summary>
            Imports a process template definition from disk.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
            <summary>
            Specifies the folder containing the process template to be imported. This folder must contain 
            the file ProcessTemplate.xml
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
            <summary>
            Specifies the state of the template after it is imported. When set to Invisible, the process template
            will not be listed in the server UI.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
            <summary>
            Creates a new inherited process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process to create.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
            <summary>
            Specifies the description of the new process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
            <summary>
            Specifies the reference name of the new process. When omitted, a random name 
            will be automatically generated and assigned by the server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
            <summary>
            Specifies the name of the parent process from which the new process will inherit.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing process.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RemoveCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RenameCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RenameCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
            <summary>
            Gets an Azure DevOps HTTP Client object instance.
            </summary>
            <remarks>
            Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, 
            Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to 
            many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient 
            that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication 
            information supplied by their parent connection object and can be used as a more convenient mechanism 
            to issue API calls.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
            <summary>
            Specifies the full type name (optionally including its assembly name) of the HTTP Client 
            class to return.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.GetRestClient.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
            <summary>
            Invoke an Azure DevOps REST API.
            </summary>
            <remarks>
            Invoke-TfsRestApi can automatically parse an example URL from 
            https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens 
            (such as {organization}, {project} and {team}) as long as collection / project / team 
            information are available via either the their respective arguments in this command or the 
            corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted 
            from the supplied example, when available.
            </remarks>
            <example>
              <code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
              <para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
              <para>Calls the API described by an example extracted from the docs.microsoft.com web site. 
                HTTP method, host name and API version are all set based on the supplied values; 
                Tokens {organization}, {project} and {team} are properly replaced with the corresponding 
                values provided by the current connection context (via previous calls to 
                Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
            <summary>
            Specifies the path of the REST API to call. Tipically it is the portion of the URL after 
            the name of the collection/organization, i.e. in the URL 
            https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is 
            "/_apis/projects".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
            <summary>
            Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
            <summary>
            Specifies the request body to send to the API endpoint. Tipically contains the JSON payload 
            required by the API.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
            <summary>
             Specifies the request body content type to send to the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
            <summary>
             Specifies the response body content type returned by the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
            <summary>
            Specifies a hashtable with additional HTTP headers to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
            <summary>
            Specifies a hashtable with additional query parameters to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
            <summary>
            Specifies the desired API version. When omitted, defaults to "4.1".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com", 
            e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
            <summary>
            Returns the API response as an unparsed string. If omitted, JSON responses will be 
            parsed, converted and returned as objects (via ConvertFrom-Json).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
            <summary>
            Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. 
            The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
            <summary>
             HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
            <summary>
             HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
            <summary>
            Gets one or more service hook consumers.
            </summary>
            <remarks>
            Service hook consumers are the services that can consume (receive) notifications triggered by 
            Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, 
            Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to return. Wildcards are supported. 
            When omitted, all service hook consumers registered in the given project collection/organization 
            are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
            <value></value>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
            <summary>
            Gets the notification history for a given service hook subscription
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
            <summary>
            Specifies the subscription to get the notification history from.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
            <summary>
            Specifies the beginning of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
            <summary>
            Specifies the end of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
            <summary>
            Specifies the notification status to filter on.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
            <summary>
            Gets one or more service hook publishers.
            </summary>
            <remarks>
            Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by 
            event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to return. Wildcards are supported. 
            When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / 
            TFS collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
            <summary>
            Gets one or more service hook subscriptions
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
            <summary>
            Specifies the name ("action description") of the subscription. Wildcards are supported. 
            When omitted, returns all service hook subscriptions in the given 
            team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to filter subscriptions by.
            When omitted, returns all subscriptions regardless of their publishers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their consumers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
            <summary>
            Specifies the event type to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their event types.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.SetCmdletBase`1">
            <summary>
            Abstract class from which and TfsCmdlets cmdlets derive
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.SetCmdletBase`1.DoProcessRecord">
            <summary>
            Performs execution of the command.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
            <summary>
            Activates the Azure DevOps Shell
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
            <summary>
            Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
            <summary>
            Do not clear the host screen when activating the Azure DevOps Shell. When set, the
            prompt is enabled without clearing the screen.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
            <summary>
            Do not show the version banner when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.EnterShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Shell.ExitShell.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
            <summary>
            Gets information about one or more team projects.
            </summary>
            <remarks>
            The Get-TfsTeamProject cmdlets gets one or more Team Project objects 
            (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied 
            Team Project Collection.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
            <summary>
            Specifies the name of a Team Project. Wildcards are supported. 
            When omitted, all team projects in the supplied collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
            <summary>
            Lists deleted team projects present in the "recycle bin"
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
            <summary>
            Returns the team project specified in the last call to Connect-TfsTeamProject 
            (i.e. the "current" team project)
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
            <summary>
            Creates a new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
            <summary>
             Specifies the name of the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
            <summary>
            Specifies a description for the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
            <summary>
            Specifies the source control type to be provisioned initially with the team project. 
            Supported types are "Git" and "Tfvc".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
            <summary>
            Specifies the process template on which the new team project is based. 
            Supported values are the process name or an instance of the
            Microsoft.TeamFoundation.Core.WebApi.Process class.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
            <summary>
            Deletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
            <summary>
            Deletes the team project permanently. When omitted, the team project is moved to a 
            "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
            <summary>
            Renames a team project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
            <summary>
            Forces the renaming of the team project. When omitted, the command prompts for 
            confirmation prior to renaming the team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject">
            <summary>
            Changes the details of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Project">
            <summary>
            Specifies the name of the Team Project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.AvatarImage">
            <summary>
            Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). 
            To remove a previously set image, pass $null to this argument.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
            <summary>
            Undeletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
            <summary>
            Specifies the name of the Team Project to undelete.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
            <summary>
            Gets information about one or more backlog levels of a given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
            <summary>
            Specifies one or more backlog level configurations to be returned. Valid values 
            are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the 
            backlog level to return. Wilcards are supported. When omitted, returns all backlogs 
            levels of the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
            <summary>
            Gets one or more team boards.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns all boards in 
            the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
            <summary>
            Gets one or more team board card rules.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
            <summary>
            Specifies the rule name. Wildcards are supported. 
            When omitted, returns all card rules in the given board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
            <summary>
            Specifies the kind of rule to return. When omitted, returns 
            both rule types (card color and tag color).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
            <summary>
            Set the card rule settings of the specified backlog board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns card rules 
            for all boards in the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
            <summary>
            Gets information about one or more teams.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
            <summary>
            Specifies the team to return. Accepted values are its name, its ID, or a
            Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
            When omitted, all teams in the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.QueryMembership">
            <summary>
            Get team members (fills the Members property with a list of
            Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
            When omitted, only basic team information (such as name, description and ID) are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
            <summary>
            Gets the team's backlog settings (fills the Settings property with a
            Microsoft.TeamFoundation.Work.WebApi.TeamSetting object)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
            <summary>
            Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
            <summary>
            Returns the default team in the given team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.GetTeam.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRemoveItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRenameItem">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
            <summary>
            Creates a new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
            <summary>
            Specifies the name of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board. When omitted,
            an area path may still be associated to this team depending on whether NoAutomaticAreaPath
            is set
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
            <summary>
            Do not associate an area path automatically to the new team. When omitted, an area path 
            is created (if needed) and then is set as the default area path / team field
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
            <summary>
            Do not associate an iteration path automatically to the new team. When omitted, 
            an iteration path is created (if needed) and then is set as the default 
            backlog iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
            <summary>
            Specifies a description of the new team.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
            <summary>
            Deletes a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
            <summary>
            Renames a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
            <summary>
            Changes the details of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
            <summary>
            Sets the specified team as the default team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
            <summary>
            Specifies a new description
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
            <summary>
            Specifies the backlog area paths that are associated with this team. Provide a list 
            of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all
            child area path will be included recursively. Otherwise, only the area itself (without 
            its children) will be included.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration paths that are associated with this team. Provide a list 
            of iteration paths in the form '/path1/path2'.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="F:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days. When omitted, defaults to Monday thru Friday
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
            <summary>
            Specifies how bugs should behave when added to a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
            <summary>
            Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
            <summary>
            Adds a new administrator to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
            <summary>
            Specifies the administrator to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
            <summary>
            Gets the administrators of a team.
            </summary>    
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
            <summary>
            Specifies the administrator to get from the given team. Wildcards are supported.
            When omitted, all administrators are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
            <summary>
            Removes an administrator from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
            <summary>
            Specifies the administrator to remove from the team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.TeamAdmin">
            <summary>
            Represents a Team Adminstrator
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
            <summary>
            Adds new members to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
            <summary>
            Specifies the team to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
            <summary>
            Gets the members of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
            <summary>
            Specifies the team from which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given team. Wildcards are supported.
            When omitted, all team members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
            <summary>
            Removes a member from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
            <summary>
            Specifies the team from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
            <summary>
            Clone a test plan and, optionally, its test suites and test cases.
            </summary>
            <remarks>
              <para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
              <para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
              <para>  * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
              <para>  * Shared steps referenced by cloned test cases;</para>
              <para>  * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
              <para>  * Action Recordings linked from a cloned test case;</para>
              <para>  * Links and Attachments;</para>
              <para>  * Test configuration.</para>
              <para>The items below are only copied when using -CloneRequirements:</para>
              <para>  * Requirements-based suites;</para>
              <para>  * Requirements work items (product backlog items or user stories);</para>
              <para>  * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
            </remarks>
            <example>
            <code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
            <summary>
            Specifies the name of the test plan to clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
            <summary>
            Specifies the name of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
            <summary>
            Specifies the name of the team project where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same team project of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
            <summary>
            Specifies the area path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same area path of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
            <summary>
            Specifies the iteration path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same iteration path of 
            the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
            <summary>
            Clones all the referenced test cases. When omitted, only the test plan is 
            cloned; the original test cases are only referenced in the new plan, not duplicated.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
            <summary>
            Clone all test suites recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
            <summary>
            Copies ancestor hierarchy.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
            <summary>
            Clones requirements referenced by the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
            <summary>
            Specifies the name of the workitem type of the clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
            <summary>
            Clones only the specified suites.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
            <summary>
            Specifies the comment of the Related link that is created ato point 
            to the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
            <summary>
            Gets the contents of one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
            <summary>
            Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
            <summary>
            Gets only the plans owned by the specified user.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
            <summary>
            Get only basic properties of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
            <summary>
            Get only the active plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
            <summary>
            Creates a new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
            <summary>
            Specifies the start date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
            <summary>
            Specifies the end date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
            <summary>
            Deletes one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
            <summary>
            Specifies one or more test plans to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
            <summary>
            Forces the deletion of test plans with test suites and/or test cases. 
            When omitted, only empty test plans can be deleted.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
            <summary>
            Renames a test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
            <summary>
            Gets information from one or more Wiki repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
            <summary>
            Specifies the name or ID of a Wiki repository. Wildcards are supported. 
            When omitted, all Wiki repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
            <summary>
            Returns only provisioned ("project") Wikis. When omitted, returns all Wikis 
            (both Project wikis and Code wikis).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
            <summary>
            Creates a new Wiki repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
            <summary>
            Specifies the name of the new Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
            <summary>
            Specifies the name or ID of the Git repository to publish as a Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
            <summary>
            Creates a provisioned ("project") Wiki in the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
            <summary>
            Specifies the Wiki to be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
            <summary>
            Deletes the provisioned ("project") Wiki of the specified Team Project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsArea</code>
              <para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsArea '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode">
            <summary>
            Base implementation for Get-Area and Get-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\\**\\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode">
            <summary>
            Base implementation for Move-Area and Move-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
            <summary>
            Creates a new Work Item Area in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
            <summary>
            Specifies the path of the new Area. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the area name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
            <summary>
            Creates a new Iteration in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
            <summary>
            Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the iteration name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StartDate">
            <summary>
            Specifies the start date of the iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode">
            <summary>
            Base implementation for New-Area and New-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
            <summary>
            Deletes one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
            <summary>
            Deletes one or more Iterations from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode">
            <summary>
            Base implementation for Remove-Area and Remove-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode">
            <summary>
            Renames a Work Area.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode">
            <summary>
            Renames a Iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode">
            <summary>
            Base implementation for Rename-Area and Rename-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
            <summary>
            Modifies the dates of an iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
            <summary>
            Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode">
            <summary>
            Base implementation for Set-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
            <summary>
            Determines whether the specified Work Area exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
            <summary>
            Determines whether the specified Iteration exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.StructureGroup">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode">
            <summary>
            Base implementation for Test-Area and Test-Iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Node">
            <summary>
            Specifies the name and/or path of the node (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.StructureGroup">
            <summary>
            Indicates the type of structure (area or iteration)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem">
            <summary>
            Creates a copy of a work item, optionally changing its type.
            </summary>
            <remarks>
            Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) 
            that is of the specified work item type.
            <br/>
            By default, the copy retains the same type of the original work item, 
            unless the Type argument is specified
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.NewType">
            <summary>
            Specifies the type of the new work item. When omitted, the type of the original 
            work item is preserved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeAttachments">
            <summary>
            Creates a duplicate of all attachments present in the source work item and 
            adds them to the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeLinks">
            <summary>
            Creates a copy of all links present in the source work item and adds them to the new work item.
            Only the links are copied; linked artifacts themselves are not copied. 
            In other words, both the original and the copy work items point to the same linked
            artifacts.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DestinationProject">
            <summary>
            Specifies the team project where the work item will be copied into. When omitted, 
            the copy will be created in the same team project of the source work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Project">
            <summary>
            Specifies the source team project from where the work item will be copied. 
            When omitted, it defaults to the team project of the piped work item (if any),
            or to the connection set by Connect-TfsTeamProject.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Passthru">
            <summary>
            Returns the results of the command. It takes one of the following values: 
            Original (returns the original work item), Copy (returns the newly created work item copy) 
            or None.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
            <summary>
            Specifies the title to look up for in a work item. Wildcards are supported. 
            When a wildcard is used, matches a portion of the title 
            (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field 
            with the operator "=", unless -Ever is also specified. In that case, uses the operator 
            "was ever".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
            <summary>
            Specifies the description to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
            <summary>
            Specifies the area path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
            <summary>
            Specifies the work item type to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
            <summary>
            Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
            <summary>
            Specifies the board column to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
            <summary>
            Specifies the name or email of the user that created the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
            <summary>
             Specifies the date when the work item was created.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
            <summary>
            Specifies the name or email of the user that did the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
            <summary>
            Specifies the date of the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
            <summary>
            Specifies the date of the most recent change to the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
            <summary>
            Specifies the tags to look up for in a work item. When multiple tags are supplied, 
            they are combined with an OR operator - in other works, returns  work items that 
            contain ANY ofthe supplied tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
            <summary>
            Switches the query to historical query mode, by changing operators to 
            "WAS EVER" where possible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
            <summary>
            Specifies a work item revision number to retrieve. When omitted, returns
            the latest revision of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
            <summary>
            Returns the field values as they were defined in the work item revision that
            was the latest revision by the date specified.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Query">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
            <summary>
            Specifies which fields should be retrieved. When omitted, defaults to a set of
            standard fields that include Id, Title, Description, some state-related fields and more.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
            <summary>
            Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
            <summary>
            Fetches work items in "time-precision mode": search criteria in WIQL queries 
            take into account time information as well, not only dates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
            <summary>
            Opens the specified work item in the default web browser.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
            <summary>
            Gets deleted work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IncludeLinks">
            <summary>
            Gets information about all links and attachments in the work item. When omitted, only fields are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment">
            <summary>
            Downloads one or more attachments from work items
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Attachment">
            <summary>
            Specifies the attachment to download. Wildcards are supported. 
            When omitted, all attachments in the specified work item are downloaded.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Destination">
            <summary>
            Specifies the directory to save the attachment to. When omitted, defaults to the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
            <summary>
            Gets the links in a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.LinkType">
            <summary>
            Returns only the specified link types. When omitted, returns all link types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.IncludeAttachments">
            <summary>
            Includes attachment information alongside links. When omitted, only links are retrieved.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
            <summary>
            Moves a work item to a different team project in the same collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
            <summary>
            Specifies the team project where the work item will be moved to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
            <summary>
            Specifies the area path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root area path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
            <summary>
            Specifies the iteration path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root iteration path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
            <summary>
            Specifies a new state for the work item in the destination project. 
            When omitted, it retains the current state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
            <summary>
            Specifies a comment to be added to the history
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
            <summary>
            Creates a new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
            <summary>
            Specifies the type of the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
            <summary>
            Exports a saved work item query to XML.
            </summary>
            <remarks>
            Work item queries can be exported to XML files (.WIQ extension) in order to be shared 
            and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use 
            this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to export. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
            <summary>
            Specifies the path to the folder where exported queries are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
            <summary>
            Flattens the query folder structure. When omitted, the original query 
            folder structure is recreated in the destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for Get-WorkItemQuery and Get-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.ItemType">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase">
            <summary>
            Base implementation for New-WorkItemQuery and New-WorkItemQueryFolder
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Force">
            <summary>
            Allow the cmdlet to overwrite an existing item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.ItemType">
            <summary>
            Indicates the type of item (query or folder)
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
            <summary>
            Deletes a work item from a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
            <summary>
            Specifies the work item to remove.
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
            <summary>
            Permanently deletes the work item, without sending it to the recycle bin.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
            <related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
            <summary>
            Specifies the text to search for. Supports the Quick Filter syntax described in 
            https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
            <summary>
            Specifies the maximum quantity of results. Supports between 1 and 1000 results. 
            When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
            <summary>
            Sets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Area">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Iteration">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
             <summary>
             Specifies the reason (field 'System.Reason') of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
             <summary>
             Specifies the Value Area of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
             <summary>
             Specifies the board column of the work item. 
            
             </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to returns. Wildcards are supported. 
            When omitted, returns all existing tags in the given project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
            <summary>
            Includes tags not associated to any work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
            <summary>
            Creates a new work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
            <summary>
            Specifies the name of the new tag.
            </summary>
            <value></value>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
            <summary>
            Deletes one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
            <summary>
            Renames a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
            <summary>
            Specifies the name of the work item tag to rename.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
            <summary>
            Specifies one or more work item types to export. Wildcards are supported. 
            When omitted, all work item types in the given project are exported
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
            <summary>
            Exports the definitions of referenced global lists. 
            When omitted, global list definitions are not included in the exported XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
            <summary>
            Specifies the path to the folder where exported types are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file in the destination folder.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.DoProcessRecord">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
            <summary>
            Gets one or more Work Item Type definitions from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
            <summary>
            Specifies one or more work item type names to return. Wildcards are supported. 
            When omitted, returns all work item types in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
            <summary>
            Speficies a work item whose corresponding type should be returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
            <summary>
            Imports a work item type definition into a team project.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.DoProcessRecord">
            <summary>
            Performs execution of the command
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ParameterDictionary">
            <summary>
            Represents a collection of cmdlet arguments
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.From(System.Object,System.Object)">
            <summary>
            Creates a new instance of the <see cref="T:TfsCmdlets.Cmdlets.ParameterDictionary"/> class from the specified parameter collection, optionally overriding its values.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor">
            <summary>
            Creates an empty dictionary
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object,System.Object)">
            <summary>
            Creates a new dictionary, copying the properties of supplied object and merging it
            with another. 
            </summary>
            <see cref="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})"/>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.Get``1(System.String,``0)">
            <summary>
            Returns the value of a property. When the property is missing, returns an
            optionally supplied default value.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.OverrideWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Overrides this instance with another one. Existing properties are overwritten.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.MergeWith(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Merges this instance with another one. Existing properties are skipped.
            </summary>
        </member>
        <member name="T:TfsCmdlets.TfsComponent">
            <summary>
            Indicates a TFS component
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.BaseInstallation">
            <summary>
            The root folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.ApplicationTier">
            <summary>
            The "ApplicationTier" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.SharePointExtensions">
            <summary>
            The "SharePointExtensions" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.TeamBuild">
            <summary>
            The "TeamBuild" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.Tools">
            <summary>
            The "Tools" folder of a TFS installation
            </summary>
        </member>
        <member name="F:TfsCmdlets.TfsComponent.VersionControlProxy">
            <summary>
            The "VersionControlProxy" folder of a TFS installation
            </summary>
        </member>
        <member name="T:TfsCmdlets.ClientScope">
            <summary>
            Client scope for Invoke-RestApi
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Server">
            <summary>
            Server-level scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.ClientScope.Collection">
            <summary>
            Collection-level scope
            </summary>
        </member>
        <member name="T:TfsCmdlets.CardRuleType">
            <summary>
            Board card rule
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.CardColor">
            <summary>
            Card color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.TagColor">
            <summary>
            Tag color rule type
            </summary>
        </member>
        <member name="F:TfsCmdlets.CardRuleType.All">
            <summary>
            All card rules (card and tag color)
            </summary>
        </member>
        <member name="T:TfsCmdlets.RegistryScope">
            <summary>
            TFS Registry scope
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.User">
            <summary>
            User
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Collection">
            <summary>
            Collection
            </summary>
        </member>
        <member name="F:TfsCmdlets.RegistryScope.Server">
            <summary>
            Server
            </summary>
        </member>
        <member name="T:TfsCmdlets.WorkItemLinkType">
            <summary>
            Work Item Link Type
            </summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.All">
            <summary>All</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Parent">
            <summary>Parent</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Child">
            <summary>Child</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Related">
            <summary>Related</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Predecessor">
            <summary>Predecessor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Successor">
            <summary>Successor</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Duplicate">
            <summary>Duplicate</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.DuplicateOf">
            <summary>Duplicate Of</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.Tests">
            <summary>Tests</summary>
        </member>
        <member name="F:TfsCmdlets.WorkItemLinkType.TestedBy">
            <summary>Tested By</summary>
        </member>
        <member name="T:TfsCmdlets.Extensions.DocumentExtensions">
            <summary>
            Linq to XML extension methods
            </summary>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXmlDocument(System.Xml.Linq.XDocument)">
            <summary>
            Converts a LINQ-based XDocument to a "legacy" XmlDocument
            </summary>
            <param name="xDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXDocument(System.Xml.XmlDocument)">
            <summary>
            Converts a "legacy" XmlDocument to a LINQ-based XDocument
            </summary>
            <param name="xmlDocument">The document to be converted</param>
            <returns>The converted document</returns>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GenericHttpClient">
            <summary>
            Generic HTTP Client, used by the Invoke-TfsRestApi cmdlet
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GenericHttpClient class
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.GenericHttpClient.Uri">
            <summary>
            Gets the API URL
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.UseHost(System.String)">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com"
            </summary>
            <param name="host">An alternate host, such as "vsaex.dev.azure.com" or "vssps.dev.azure.com".</param>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get``1(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API, converted to the model type T</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a GET request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post``2(System.String,``0,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <typeparam name="T">The typed model (JSON proxy class) corresponding to the API parameter (content) object</typeparam>
            <typeparam name="TResult">The typed model (JSON proxy class) corresponding to the API result</typeparam>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="value">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post(System.String,System.Net.Http.HttpContent,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Sends a POST request to an Azure DevOps API
            </summary>
            <param name="apiPath">The path to the API, relative to the collection/organization URL</param>
            <param name="content">The API parameters sent as the request body</param>
            <param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
            <param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
            <param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
            <param name="mediaType">The MIME content type of the response</param>
            <param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
            <returns>The response of the API as an HttpResponseMessage object</returns>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync``1(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GenericHttpClient.PostForm``1(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
            <summary>
            Invokes a REST API asynchronously
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.GitExtendedHttpClient">
            <summary>
            Custom HTTP Client to handle extended Git repository management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.Guid,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.UpdateRepositoryEnabledStatus(System.String,System.Guid,System.Boolean)">
            <summary>
            Enables/disables a Git repository
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.GitExtendedHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the GitExtendedHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdminHttpClient">
            <summary>
            Custom HTTP Client to handle team administrator management
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Adds an administrator to a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.Guid,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.String,System.Guid,System.Guid)">
            <summary>
            Removes an administrator from a team
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
            <summary>
            Creates a new instance of the TeamAdminHttpClient class
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmins">
            <summary>
            Represents a collection of team administrators
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmins.Admins">
            <summary>
            Collection of team administrators
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.TeamAdmin">
            <summary>
            Represents a team administrator
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IdentityType">
            <summary>
            Identity Type
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.FriendlyDisplayName">
            <summary>
            Friendly Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.DisplayName">
            <summary>
            Display Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.SubHeader">
            <summary>
            Sub-header
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.TeamFoundationId">
            <summary>
            Team Foundation Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.EntityId">
            <summary>
            Entity Id
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Errors">
            <summary>
            List of Errors
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Warnings">
            <summary>
            List of Warnings
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.Domain">
            <summary>
            User Domain
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.AccountName">
            <summary>
            User Account Name
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.IsWindowsUser">
            <summary>
            Is Windows User
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.TeamAdmin.MailAddress">
            <summary>
            Email Address
            </summary>
        </member>
        <member name="M:TfsCmdlets.HttpClient.TeamAdmin.ToString">
            <inheritdoc/>
        </member>
        <member name="T:TfsCmdlets.HttpClient.AddTeamAdminRequestData">
            <summary>
            The request body to submit to the "Add Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.Team">
            <summary>
            TeamId
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.NewUsers">
            <summary>
            List of New Users
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.ExistingUsers">
            <summary>
            List of Existing Users
            </summary>
        </member>
        <member name="T:TfsCmdlets.HttpClient.RemoveTeamAdminResult">
            <summary>
            The request body to submit to the "Remove Admin" service
            </summary>
        </member>
        <member name="P:TfsCmdlets.HttpClient.RemoveTeamAdminResult.Success">
            <summary>
            Indicates the success of the operation
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.BacklogLevelConfiguration">
            <summary>
            Encapsulates the backlog level configuration object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Board">
            <summary>
            Encapsulates the team board object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.CardRule">
            <summary>
            Azure Boards card rule
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.CardRule.#ctor(Microsoft.TeamFoundation.Work.WebApi.Rule,Microsoft.TeamFoundation.Work.WebApi.Board)">
            <summary>
            Creates a new instance from the given object
            </summary>
            <param name="original">The original object to copy settings from</param>
            <param name="board">The board to apply this rule to</param>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.Board">
            <summary>
            The board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.BoardName">
            <summary>
            The name of the board linked to this rule
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.CardRule.RuleType">
            <summary>
            The type of the rule
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.ClassificationNode">
            <summary>
            Encapsulates the area/iteration node object
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.ClassificationNode.RelativePath">
            <summary>
            Get a node's relative path
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.ClassificationNode.FixNodePath">
            <summary>
            Fill a missing node path. Older versions of the REST API don't populate the Path property.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Connection">
            <summary>
            Encapsulates the platform-specific connection object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(TfsCmdlets.Models.Connection)~Microsoft.TeamFoundation.Client.TfsConnection">
            <summary>
            Converts a Connection object to a TfsConnection-derived object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.op_Implicit(Microsoft.TeamFoundation.Client.TfsConnection)~TfsCmdlets.Models.Connection">
            <summary>
            Converts a TfsConnection-derived object to a Connection object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Connection.GetClientFromType(System.Type)">
            <summary>
            Gets a client of the given type
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalList">
            <summary>
            Represents a Team Foundation Server global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(TfsCmdlets.Models.GlobalList)~System.Xml.Linq.XElement">
            <summary>
            Converts a GlobalList to an XElement
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(System.Xml.Linq.XElement)~TfsCmdlets.Models.GlobalList">
            <summary>
            Converts an XElement to a GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor">
            <summary>
            Creates an empty instance of GlobalList
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new instance from the given name and items
            </summary>
            <param name="name">The name of the global list</param>
            <param name="items">The items (content) of the global list</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.Xml.Linq.XElement)">
            <summary>
            Creates an instance of GlobalList from an XElement containing a &lt;GLOBALLIST&gt; element
            </summary>
            <param name="el">An XML element containing a global list definition</param>
            <returns>An instance of GlobalList</returns>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Name">
            <summary>
            Gets the name of the global list.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Models.GlobalList.Items">
            <summary>
            Gets the contents (items) of the global list.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToString">
            <inheritdoc/>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalList.ToXml">
            <summary>
            Returns this global list in its original XML representation
            </summary>
            <returns>A XElement object representing a &lt;GLOBALLIST&gt; element</returns>
        </member>
        <member name="T:TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Represents a collection of global lists.
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(TfsCmdlets.Models.GlobalListCollection)~System.Xml.Linq.XDocument">
            <summary>
            Converts a collection of global lists to a well-formed &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(System.Xml.Linq.XDocument)~TfsCmdlets.Models.GlobalListCollection">
            <summary>
            Converts a well-formed &lt;gl:GLOBALLISTS&gt; document to a collection of global lists
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor">
            <summary>
            Creates an empty collection
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Collections.Generic.IEnumerable{TfsCmdlets.Models.GlobalList})">
            <summary>
            Creates a collection and adds the given global lists to it
            </summary>
            <param name="items">Collection of global lists to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(TfsCmdlets.Models.GlobalList)">
            <summary>
            Creates a collection and adds the given global list to it
            </summary>
            <param name="item">A single global list to add to this instance</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.String)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="xml">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Xml.Linq.XDocument)">
            <summary>
            Creates a collection from the given &lt;gl:GLOBALLISTS&gt; document
            </summary>
            <param name="doc">A well-formed &lt;gl:GLOBALLISTS&gt; document</param>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToString">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.GlobalListCollection.ToXml">
            <summary>
            Returns the XML representation of the contents of this collection, in the form of a 
            &lt;gl:GLOBALLISTS&gt; document, as a XDocument object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Identity">
            <summary>
            Encapsulates the platform-specific identity object
            </summary>
        </member>
        <member name="T:TfsCmdlets.Models.Team">
            <summary>
            Encapsulates a WebApiTeam object
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(TfsCmdlets.Models.Team)~Microsoft.TeamFoundation.Core.WebApi.WebApiTeam">
            <summary>
            Converts to WebApiTeam
            </summary>
        </member>
        <member name="M:TfsCmdlets.Models.Team.op_Implicit(Microsoft.TeamFoundation.Core.WebApi.WebApiTeam)~TfsCmdlets.Models.Team">
            <summary>
            Converts from WebApiTeam
            </summary>
        </member>
        <member name="T:TfsCmdlets.ModuleInitializer">
            <summary>
            PowerShell module initializer
            </summary>
        </member>
        <member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
            <summary>
            Method called automatically by PowerShell upon module load/start
            </summary>
        </member>
        <member name="T:TfsCmdlets.Util.LazyProperty">
            <summary>
            Supports the creation of lazy-loaded ScriptProperty properties
            </summary>
        </member>
        <member name="M:TfsCmdlets.Util.LazyProperty.Get(System.Management.Automation.PSObject,System.String,System.Management.Automation.ScriptBlock)">
            <summary>
            Gets the value of the specified lazy-loaded property
            </summary>
            <param name="obj">The source PSObject that owns the property</param>
            <param name="property">The property name</param>
            <param name="sb">The scriptblock that is evaluated when the property 
                needs to be loaded. It must return the value to be assigned to the property.</param>
            <returns>The value of the property</returns>
        </member>
        <member name="T:TfsCmdlets.Util.ServerVersion">
            <summary>
            Represents the version of a Team Foundation / Azure DevOps Server installation, and/or 
            the currently deployed version of Azure DevOps in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Version">
            <summary>
            Gets the "four-part" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.LongVersion">
            <summary>
            Gets the "long" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.FriendlyVersion">
            <summary>
            Gets the "friendly" version of TFS / Azure DevOps
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.IsHosted">
            <summary>
            Indicates whether it's a "hosted" (Azure DevOps Services) deployment or not 
            (TFS/Azure DevOps Server)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.Update">
            <summary>
            Gets the version number of the Update installed on a server, or number of the sprint 
            currently deployed in an Azure DevOps Services organization
            </summary>
        </member>
        <member name="P:TfsCmdlets.Util.ServerVersion.YearVersion">
            <summary>
            Gets the version of the server as its corresponding year (e.g. 2019 for version 17.*)
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 51F0FAEE370EEED82101216B51E734C9 | sha1: D0AD29B85D5D01DBC650917B83531B8DA45152AA | sha256: 73D815685ED61A7CC9249C88CC282348D517FF47D354074F2DE3A9BA091D7470 | sha512: 43DD0E8CA32F4AC307041E3220EE9349E81EDE99075CB00F50F5BD8566585B391BCC1BACB078FE1849ABCA77A99A300A56EC729F04201DDA77502BFCD44206B9
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 81EC3B3388F053A70543D4E787490F20 | sha1: A8D24BB2C4E195468665DA8CCD386FBA3BC0B9B1 | sha256: 125EB819A3DB5788B0379FC1E0342681B198716B3790C1D280AE6B99FB249784 | sha512: 4D28C76EDFDA725DBF6F4E5845BDF85EF9F008A4ED995828AF557828207C597A09C3A2220969CE3D52B91598DB3BACA7D4A939B8AFE2BD66A2D1411F33F81433
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Client.resources.dll
md5: 914C1FABE763A7A2C9AF1F6EB6E99259 | sha1: 0991C60113FB85340E010A87E1AE5F923CF2F39D | sha256: 1CE3E7A9AC5CD1F98B67881A85E9BB01AB3815E2DAFCFE1A21A998D1C8AB289B | sha512: 28760A92CFCCC476FA9B695E42008AA5200A061D51C73A6D003BCB49431798A8DE176F51D229A4FBF597B3CDBC7BF2AA8711DA4636F0A42CCA7BEC8C3886F27C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Common.resources.dll
md5: 8DFE3F610B09C93E6755C186516F2222 | sha1: 3098F4BF1819CFBCB47DBCDF5C3359D1A10238E5 | sha256: 86D34DFFA9CBE6DEDFC733F07A1FDBD42D726897F7FA33BF8978B1A2258EFC7D | sha512: F279758BA99470BC7BA3D64E9622ACFFD61DE802930BA03EED2B80F6684C76F317A1E39D0DC49B4181D459015C7B4CAE9863C58FA51D4A53FDE74D81B27A08EC
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: A6D524B214A1091F0690FEF5F49DC83D | sha1: 5E3BDC9D33ED1E257CAE497E478C5A19B7DE9CBC | sha256: 8CC5FA1D461A81BB95DD5D3FE2DA3BAB2B587CC4F6D627941AB6F68FDF882B8C | sha512: 4F11C5E41AD004A95369F4A5FFB3D26F976549F997E5310EF44ADB423F9AFE198EBCDE90EFB52D6417C0A10C145CB52A455BF4ADBE69A710F1A72253AA86E614
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 71BBFA1336F13F427E54D4A65AFB9E56 | sha1: A13BC5BD57BB8DECA673B8A671ED50A07AC54F68 | sha256: A71203EC91CE10ED62A720D8BA125E2920284F94014ACAC83E3EF90A71547F4B | sha512: A3C95671CC3FE7871C300393365E65B5B273AECBF900AFCBFA31E2B503ED84DD535D15E2527F0B55A3408D6AEF256EE8277B0E538D3ECBF924C8E4476098D956
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 1C97D6BE9F50CBAAD4522B47E1A2F78D | sha1: 9CE5C88FD851284A894E04D1611EA17A5B5A8D91 | sha256: C1CBBC251641476B36CA3027197495C457B62735F83C97CC1757EEC798F3D1A9 | sha512: 4680BDD911A718CB9A0D40A79E9679B8C66225FDFE75C8D890E3E0F5A2D9FB5AD2E584F644EAC4451D2217D5B0435658C63400E13F120DFEF611BAEAC5698149
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 6EA396DE57C3D8C75CB2C115FCDF1D2E | sha1: 769C3A3DA3537B506155D9969AE433B0397245E2 | sha256: 9FD01F5958D5A7EF9B053A78DBE61862B1C20907EF959DCD592A7C2477A0DFC7 | sha512: 29F431FA787A0EB8B4134F3252212B2CEB1D2D7C85E8BE5F107C0BA387F6669403EC59414D8F782E2C8239C23B996C697A7180AB2457C8D35B637C60E5C4A8EB
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 6DA75936DC842387D8090BEB1138B334 | sha1: 9731BB5C2E57EE1D67F039D41ED8B406BEAFB66C | sha256: 8DC9DE7713CBA65759B9C098E130426692A22177E559A2C593177B163A0D804A | sha512: 4E22F12163E2DC43AEBF5DCE7CC146D8095F9C2732EF1C0F240ADB5A621FC80D6BF92F68CCEC8E07CA82D0C60235544C90858944AC999A0A760E725452E8E8ED
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 91742320C7A81E97BF0BE3365B8ABC77 | sha1: B587554943CC184B03EF92A43607F9F20CB7AB08 | sha256: 0DD072B89DE420BBDC2FD4B5B6227D96163B5AA91E48FDA9182D96501015077A | sha512: 6E8B5FFDFA4E2DDA42C198E40F54139E06409D3A2B63EE22F33CD63CB2A7E4A03AD46415BBA28D790FCEA851853C7614A1AAD3A337F963E7911922A80CAAE83C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 3C8B5DC407789A0FCF6BBE4B2D9403D2 | sha1: 8B56819D8E6A4846802F17E6D01E7EB0F8B6B58B | sha256: 30A1CB547D7F66474B85F7EE474C7C98843DD05569CD1F02EC49E4B948C72EC7 | sha512: EF707883D00E91D6F322F0C28A52A307A3BFC30AEF7F526750153651122A8EA769E0DFC887A7A1E0BC88A6E459FA96BD09F1AF9C00ADFF570EF888FF0E89375D
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: E39D42E8A7AEDC17B81036A04D3BEEDB | sha1: 571F85B44A2C05CA9015640B8CFD6065B282F65F | sha256: FB8A979BD2B05526C5543292FC56ED6B62FBEE12E52709E72F8CE7CC5C3AB01D | sha512: 77AC41C080E9B7F14B679B9157B68F24A675A57D9997AC907C5F8879D49038C7B52A34F34A4AD3AFE5410F8D5583C26A13EC657B11EDD5ABC557F276E45D91CF
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: D5E46DC0F925E3B9F7D6067BE403BA2F | sha1: 9E67B54311839F1BB39DE317558964B9BBAC4164 | sha256: 2997BCA25999DC82C4EA5FCC23285645045A8F7954FC84A250851D77766042F2 | sha512: 932F67280FF5B805BD6CDF01B46FC367B94261D7BAA2BB67049C59B0C998163F3895C34FAAE0EE3B859A26CF3DE66B46865AA2A139F9DDFF472736B35C45C2C9
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: D3CFC8C0277F4E34C6A6F58CACE2CA8A | sha1: BAE70D8E81B8360064BD8C5C638335CFE90F59F8 | sha256: 60E7040EFBA078FB82EF0B482C494CABF50D04BE3E660996469B287F7FA4F4AF | sha512: FC19D075256D028321D020B192A2D57EAF0785405821B716B22D71AD57328AB96AC42317F5A48B2E848311549AB37BD0DDFBF9174435E818E7319D310BBB84C9
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: EDFC85BCBC760B4AAA4A265B9EB5860B | sha1: 63B2BB446B710926BD5E0802DC4F4B8A7ACB0ED7 | sha256: E1B545BC5EC73E3FD93E2EFA6E6B7BD3C30FDFAF9FB2F6FB202187140149A81C | sha512: E98C27143E5CC0B32350B7C99346FA505B4B4432547B4A9F4198B5C71EAEF3E21D54A4D111964F052886489DF840707464C4E62F584AA445272EE962D602146F
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 9D93612DB99A5C2A1F076B8965B07CA1 | sha1: FE0E3717EE41672D340955F54B1ECE4C819FF2E4 | sha256: 3A7B51EA766A43F41DE794D56A50ECE6287DDF4D6B60320F6279C3E6A49C558A | sha512: F147C48AF1EA1CE5B6627A968CCB3D1785E6A84EFA35C0D21B507C0BDAC3DCC0384F5B5174BEABBFCC9330B0DD0C076084ACD5316302E90CCD179FB788F085B0
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 397AD4191C772D670C9D4A2BFBB4D118 | sha1: 361B7F9F505AA952BD4A79DCA73FABDD538E3DEA | sha256: 716C00D1A5061288AC12A34D5314D5C89E713CCFAFF13CCABB772057A66D26CF | sha512: 7B1F8941E375DA4C83B0AB5FF6873DA7490390602E2B2133F16F34CD8A25068FD2DED88833AE6F35B0E4354C1BDBCC9F65961EF103341DAE0D3267F04D9F8080
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: BD8D0733AFAB69A8982345EE10D71910 | sha1: 6A731DC486181F3F6A791670560A9DA924763AEC | sha256: C9580B7E72AA3B1938D0F363A9560C5E7E2484F529071D5B44E32F05E7C5DA77 | sha512: F538FA593D7F6C72AF30A06728BE8A8B54A5EA5DC60EC9B6DA0B77279A3AA2C0CFC0F3231BEC23A48E9D4468C14FF6E97541282383E1E6E6F7E67F9B188520C5
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 675B37AE0E1C55DC7825B60DAAFA58C3 | sha1: E9AA0014EE68D9B88DA42B661B5E9F73668DC041 | sha256: 0CC8D26C9E2F46BB4B89DE1DE33D21ECC66A865E32C4B3008210B40E69841D36 | sha512: C09F46D6EA01CAA18BF87FE4705D6BCA96B71EED387F5C288516BCB9C1110320470D9F407C9CEE31C1F89A8D06871DB8FD9051A397FB0CF12BA5A2A2FD1BAA9A
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 9657FFC1D86C1C8B2FD1017C755C6EC4 | sha1: 3DC19A268705BDFB1E28707D09529EB5B5286E0A | sha256: 77DB04B7910926E2612815F8199406F095744AC6134D8FDA6C3D093BD257DBDE | sha512: 46B2134A849FEA4051349CAEC8C3B1CAC90DC8D69A032CBDD799F795BB87EB81F8FABDE5CA70E7BF0D1BC854B17E20A259B9BA1E8F2CDA6D1863838858E59167
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 8461CA012C79B16F692F147117731908 | sha1: C4D9B5780AA47A21B68C8CD6A62D179BCC7E2A90 | sha256: A9D698B0BB4650F1E2BE6CF8CB3580EE915CE97AA4D572256CC66FC58C6CAA02 | sha512: A0860F5380E891940D075F7F42D6FE76CFF53FE34869DFE1D684DC0088D18A213975A22B50775FC5E7E2121DF6A97117006697C6402734960E0D15C0044D988A
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 2C361D94E822BD451A8959CAF7087DF4 | sha1: C5CE24010F12442A92B279CDB854FA4ED92ABA60 | sha256: F3CD9C3B38A78F1CFC0E986DE1BC4863B8541309ADAC8B70A7459DB11DD6AB31 | sha512: 3A9AFF0CEA06EAFC52A860E4612FDD01C7AF33E96A12BFBA9056119D9B175CA6F0801B52439A47CCDD226E1D42C2849CD4DA81B1FEE130490637AD554379C383
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 3C73DF61CB079250A115A6318A665CDF | sha1: 255F3EF7F82A8912605016CA36B678266DCCAB1C | sha256: DC73941BF99909EE31DBD0EE375730BECB5767655DE8F9827EDB8DC509AA7040 | sha512: E6FCAF18186C99A01BFC2E011FE9F66776872207E0CED27290BDC8578D2295851AAE2C8E6EA3D59693BEB1E0541362A837C5F5E0EAA4F0CA9D938ECEEAC7F808
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: BEDA6B210641D3120B5011A91C6B74D5 | sha1: 2113AF4D239AB2000667591790E415833BE1C8E5 | sha256: 24687AAF802B4F1D4378F999F018695A197C769C296979452EB806AD3229D562 | sha512: B9493603F8ED3887BA18A057A2FCBED52ACDC373EBBD333538BE7FBA89AD7F739531B9B6ECF690EF3913DC16CD2BE347961E364FD9CABC4F0000074752679059
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: D1F25E851455B615E958338BA7E738E1 | sha1: 49D28EAC38395F632EA1F931359DC92EE0FCF44A | sha256: 9A6CDB818CADC81D9289FD59042D9E2ECC7E4BE45146C3A98700519A36DCE2F2 | sha512: 8CC4574031D2FC675C2422015B4E191BE3406924639BAAFDC50DADE61BFD078072E5EB4DE0E3526277ECE77C8BD0B1E14E01E14091BC39D401B861D42270FBBA
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: E8596F2E90904F8209E2F674DABDC17B | sha1: F348E3B00B16DD50E392CEE40E8C1AC81743738D | sha256: 20FEE18D2A3F8BC21DEF3259BE8B381DD3E4C6804E95FBE89252BC7563793B53 | sha512: 7CF92BE3FDDDEB4432146FCA3E17FAFFD944E1521BE007B546C08D2418B9CD169A71F610708EF0DB2CDC70FFA090F91C4996C6926C333F31616D63E865AA7D7C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 156A94191CB7ED43089DA36AE73052A1 | sha1: A5EE2BC78D4BED781EA362E89A2A5B983D4FE9CA | sha256: B9B5F981A001A69E9C19A78EE482FBC0CC27731E4F5ACA4C41BBA0181AA6CAD4 | sha512: CD91FE1EBB5BE2E7F292B7BA7E5E9658FAC29673714E417EEA8D3C1C56996D6180829F6607550B182E57CFE96188A0A10787E62EB74D86A0D2DE52E06939280E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 89A4520FD3B3DA2F070E203AD3D9F70F | sha1: 41C604BF5346566718B23CCE9F25FB400A8894D1 | sha256: E5A64C5788B82E2AF1E440AE874BA1E5CAB97748C2945F9D9254A4AA8B3B4178 | sha512: A22A498B3CCCD4A9453328B1B4382BB40C73A5A2A11981BEA9ED4AFAAA11F3DFA49AD030C33C993B9CA08D1F91E8248ADDD17819B0DB3E7986905252EFF93D7B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 16D24B4B89D674189630C27D71736699 | sha1: C8D3290C2895F31470175540876D46F1CB614A72 | sha256: CE54F052935C3DB5AE1C07D209D1F09A59EF103F07015A6E26657F635C1A0BF2 | sha512: BFC81C1C3DAB2929E4AB187DDD5E8991832C972F5EDF324CC46B0B8621EA7DF21CE5C3176AFEF6CCA057462D1A0FFF4123C9ECA3D1F720D56828A61B1A6A7404
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Client.resources.dll
md5: 6E40B7CFC8AAC2B57D8EDB4F3CDEF3E3 | sha1: 48998B877D9C18C636CE588D41038200E5A65C30 | sha256: F8F844514148733D3DCE97BA58B3FFA0969451E49F4A7BB83EF9C70568625A67 | sha512: F45C25C29B468D534CFA2C8AB631786C2A3CC4E3DF216D39A3BBB41EDE2CAA0416534A55A4CB928A3E9F9DA452BBBC8CB344790A77CFEAAF39D1E17A962E9C5D
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Common.resources.dll
md5: 0748DCF777707D76B9A0FDCA5CE1179D | sha1: 67800DE104593B17A855B4035E54A388AEE80448 | sha256: C6BA69FCA28C302C1566E490436F2DFCFA5EA20EDD14DC717DDAC54E20A6F31A | sha512: 893711F427C831A419B79C41FBF86260026029AA29D5177C21455F45C722B06D85986F28F474B061D63B76DDE93618F44DA79EBB6F5AB085B5883630C3F2C647
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: D6FC571F87ACEA5A63393BB205FFC6C1 | sha1: 611E531BA4CCE1B064139610593CC1B2639D4B94 | sha256: 7F53BDE1DC2351831BD3BB4DAFE53945824E550945135E2F5D2810FE660B064D | sha512: 5BAE4BC474A9209B2D85145A02B3324E3596E7B80FE0466FD24A0031B0A93FF1FB537BF71E7A13DDD1E37E98BB962213CB6A8F60A86563F1078E08F85893C2AF
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 4F4A7F38ABE764DB85284165D7EF2162 | sha1: 0296FC6396BE61A2715DA73FB707DC3116DBBE4F | sha256: 53AAD870CA3B6A9729AB8833097D8A40CDFB441BD948126B5423433D4104367C | sha512: 975E23C1FA5791F73AD06D5201F1517D2B938BEF680E3AF5646D63AEB3803E7300420168D2589B850F056EABEFBF561EDC50DD933DA42B9167CB7365CC064027
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 4FA26CBD9AA7A612E8AE7181F3F9F3B8 | sha1: 19EBDF24701320D5007CF15715D0F1C29D364FA1 | sha256: FA3460B4BB905FC117F74FCCC7436C6A28DA7967851B2904917EF169CC790A25 | sha512: 88A3B639AA679C0B69B397C325AD19498D0A3607CBFB1F6982CDDECA42460570CE59EE55B9D0E8667F1ED46CFF276FB64FEAA060C96C374E130F3BF4D9EE3CE0
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: C707FC5B04F7E29A8DDE34EB1D03CDDA | sha1: 72408091D00331506F2B55C2011A24A0032932F7 | sha256: EC8D1649C9CB81E35E328FB8CD954EBD59B7ABEFFDEC3944FF373CE861625CA4 | sha512: 32CF81558F4BBA0045C7CFF4F28EFF64770EC2545D36CACFA1F3CF2C2E88AA91F5B425382FEE8C084B2347291867A35240C10E5B65D7C40E9AD3F587C60C96CC
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 2C85340B92E7082690C8305E158D9574 | sha1: 4E24D85E1E928A7AE600594DFBCD38047EB6DDDF | sha256: D16F3A507B4D149A9942BBEA0F5017AD6868F418AD2C1D4997E75283F27D460C | sha512: 1233D06F47CA5E2F72EB8AA686037D95443944FA08A0BC929123817FBD82774C5D25B6C1C0B270B61AE0E9052D20E7AA3793E1455652CB885AD176CD538D6359
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 44BF0628513408F391F4ECDFC8FA76C2 | sha1: 71C1216E3C3A64CF18AC68EF6F397D42E45DAC16 | sha256: A0F686AE61A29D54532C2EFD39CFDBD3DDD9E050985A603AE0B0821B8F1A44E4 | sha512: C7F1D3BD29E393EB6B7124811533BCC3FE58B63F2A8BA1909E40EB72225DAB395E3C7A1AF47D1F99493F1C897372D83D31806834B989B02438E157CBD69DED1E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: A404B0C2CF028BB53A4BA489B07E1E66 | sha1: 4538276DE9173A51D75A8EEBB2AE12E400DCF6B2 | sha256: 2CD5F761D3E13B6E7F669B057683E259CBE8BB563F609E482BE5C6707F2AA378 | sha512: 2E5E456B32B6AD3B1E92B853E31B8B723C3C05ED4D5F592D2B73339545B3F791E63ACEAD4E00A07308732DC5C742C8A4BAEDC49B6CA602D58FC55D153AFB47FC
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 8B5422BCE8143D86C262AE76BF9ECC96 | sha1: CEC61D4ED39A53D7C467E27328ED3AF3C704C224 | sha256: 8C3E2AEB47D92D035791175C9B094D83FF1D856EAD1798D0A9B9531A32CC2158 | sha512: 75B34578E339DF932EBE7AC9E8BD45E1EFEE1F2B164E4E285F3D3B31ED45A31D822F810F4BF10D1E6C5C87233478AEE1C146A172F6AE71FA5A2A4A9A2891C9AF
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: BC8FFB4A30E17BC7DFF6E3D6BA9EF0FA | sha1: 97906968BA2DFC43199215632A38A1259E137851 | sha256: 844CF6818B783586DF0520D193C704025239D80BBDA8CB2D56C98F869EFFAD24 | sha512: 4B33DD60C74F9B2EC2EF1DB40253BCB5740A7BF3D3004D9E86E25A0DE416725E9394E37628525714FF03184929930CF862681D9DB272C8B7052B10C6287BAA41
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: C3D6C8A583AF13BE12F5C035044D427C | sha1: 08B0E5540682C1C0B073A250396A4A16B78003D0 | sha256: 9857DAEF7A8EB0F9B24138B34EE437AA8E37FBAB95C6A2F8B0F51230E37FB774 | sha512: BD8F898EADA39794DE2E1F544A8C7FFE9E7A9427EF8897B358AC876292DC2BD7EE01AA87DEE5E7B00FDEFE438CF1FD02047285AA5773A8193F1F9F2B7BDD2B2A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: CE90E013F5B4E1D0F14C32C4E1D87322 | sha1: AC207AA2C801F1743B74835C3138DC25E96E217F | sha256: 1E6B2BEDB3E87103D1AD32A41B2199495EB9038A7763E1D74AA11FE24A65630D | sha512: 7B76EC540D8BDEDEF69B56623DC4D2FEF2EBFDBE30144D6EAD4095C9B10D2D8FCC2E7AD460CB896C8BCED2B6B6BBCFC0186E6BA6975E37440826E540B6A7EB8E
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 0AFD83341118B09F61F1A113929B0379 | sha1: 0EDF1E1B6BDD3018B42DD9AEADC74E415D62BBC8 | sha256: 5E6C5730A0C394D89DD381952667F6AD112E13E6E0447F15D0B5E18760B1D9CB | sha512: 8293D0E22A7739E4322B7B0B1DCBAFAC3E551D6B5B2F1FF8121F5AFCED4DDB02DC663E5C5E6EF82697806D60A572946E175D9DFE33B004AC246EEC1317DA1149
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 571ABBE56AC96BDB88240BCA414CAEDA | sha1: B8EC764BF91ADEADF4C7D5491FED43A4E8E9991B | sha256: 308EE777E5F07653589D1D52E48252014C0598AB7C60B52C771A53E3C43D2354 | sha512: 19388D6B400DF85206BD60580A50DCE4B49B0FCFD542D7DE83863FDF22695BC948D6A23F5872EDF2EB5AC86D8DC7B1BC3E92062056DF5E07FC9147F9079D480A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: D8EB857E37266D712E72163779F67E58 | sha1: CFC759A44BDE9C0A7C9EB79F23EA2E8D0A1277DB | sha256: C717A14AD6462733B48A5BC5589DF41420961A78D91EB9CFC46E9EF28BD4CAD5 | sha512: DD090742D05E1C0468F74B22D93CF270570E50D4D7EDEB5B9A1E51E06C983A200F18F11F17287745666B8FE7BC79787EE26A4FDE13646D60A87C42CC80DF6D9B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 009992EADBDF50B5AB504DF2D927D55E | sha1: 4A39D8E5013956BF5C191ECB6572A79A4D42F006 | sha256: B649755633DD9E7065346E3A66BA419311750511D02636662CCF8EBA49435AAD | sha512: CDB0C8EFC0733242967198DB34598933588FF3BDC4501D849A7AABD54351C854C3CDCEF7C975B6ED2ABCCA574D062CC52AFA46933C1844CD91D8E74E8CCBC6FB
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 5E24B257038D958310008B0ED7E7048E | sha1: A335CDB3C3E3A4CEAD585D9EE312C82109FFAA26 | sha256: 9F7ACAEC4C2E3668D6205E0FD065FCBCF630BDE3D51294859A74D6A80B7D0C75 | sha512: 21701C0E9777D38FFEE69CA465B6691164B5250EFCF8853452A2F511AEFE28BFC874B41DA3F3DDE7AF0CF58F03B1784EB2045216E71C839B25AD199394D0B879
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 5D975C0F65550F05BDBA8FC5F73482D8 | sha1: F348DAAE2670503650C8F868336161C9DC04A77D | sha256: 0A16BD209DCB212DBEA3D9371F1578ECDCF203CA16BF3D3177909AA7CF0FB338 | sha512: 0D13B1D3F8BD06E1B1499AEB31F66CAD9F25CA9CD9B95375736F4AF1015433D9A7D8C8C47FEDE2BEFC7D408448516F4867B0737145AEC53A46351AC679BE77B4
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 620817BB151D120D83AE979332E330C7 | sha1: BA4509FECE260DA4A89070F820C182279CA6E971 | sha256: B85C7672F7928617890B4FC63AAF9E835B7F1ACAD68810B04F8A2322528E97E5 | sha512: FB1A59D538F043BF4EA8E2E2CD75BF653F9254AD938A5B6AD0BEA8A0D46BC5ED0798A2ABF7E3E69D764FEE78D25BB2F6C629C8546B70DC5C03077FFB5CC7F327
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 55B1E2F6C68B44BBB4380E051D74A9F6 | sha1: 82841492CB57F5DDA6374B42AB4AFE73A507FD9F | sha256: 89995082A20239ECDAE785AE1013D94E193224234B3AE693FC5E4A1BFD6466C3 | sha512: BF2E43329ADE311F73C4FF3AE557CBDB484091FD54EB93F71AC643DB7A9E3A6208467F9647A336765FA8652DED4F217B3A3A62D0EC44F254F5378EEB8D8952B6
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 075859FF21FC7A5EFAF179DE3F931B68 | sha1: 8605F5135545B650975A1096CF4B8915E4F31C4A | sha256: FEDCE76DAAAF85322C60C1CC948A1AD134CC0D26496D4275C5DE8CB881B5DD2F | sha512: AC4C3CE3CE055B20BA80C3D53E8F820089A5410B5F872565FBC775E78E226990B56219BF64EC0D791BE2FB829BC4DFDDC6AC45555E54394198E07D13E386F204
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: EC141742F9FE7D73525D4849BB540BF4 | sha1: 6DD13EA50ED6E35C9863EBADC0AA5E91E127A679 | sha256: DCF72923F725ED1B13E5D39AA75BFA41585A66830693EE1D2D7685401A224C9A | sha512: 409120B830197E048621D95238BF72C0AB22D751F61E0EA097FD7E13D460A4B7C24C65F5AA088E957149ED5261E6449E6C308D2A2FB056A3778F4815E226FB43
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 73417C9FDC65962A858DF649324BBF53 | sha1: 25AC7C6DA34BB3C8D43BC53A9E3EFEE58B10C8EA | sha256: 4043F6FD4834EB2D584DA0017E3B1FAC3B4423CBFB0A40EA467E8406D82D2108 | sha512: 14EC10C14EF3EA6030DCC7D0F6C60C37B800179DB680149C33C2ABFCD4CD48A33AD70841373FD48F251FF5F6566E443238566A3E30F44B452909BA07DBDB3D25
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 1B06332B188BBE748F3C6BCCD78BEE70 | sha1: 48978711872AC62EA583B589EA69F28674DFD289 | sha256: D87C9862ECA3026524753A0CD182F2CDF3CC0A076073196D14FB4C78246A56B9 | sha512: 0827E4D2AC7CEFE7FAEBA866863C47901551F2F1A87F4B3965395C0591FFF493C1318DFFC8BC199C471929127F07A8E65AD1A94F7E5950A058A9DC9EF27A87E7
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: A44D51850D060F5BE6A1CF6358A9E317 | sha1: F1F5D7491AA939CC491DFD176FDDF29973DE49E6 | sha256: E86F0CF6A1F0C72387D7E64A9861F10CF24557C5D170852D466622F1C57FAA33 | sha512: 419EF2F113B91BF2974436FDBD4E6503C175D1B8157D31403AF330C5221BCCE2B421EE7C7929D1755572DEA305A2A04B3BBFDEA0AF3BFFA53604B575EAB07010
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 9D688ABDCACC36F44E30142BC8908686 | sha1: 8F1CB3CD00D5BBCB855C41BA92201839F5186B1D | sha256: FE7E24AE38E7285912B49DC35950732A094848E2A05C245FA4BC04DEA4534EE3 | sha512: 3CF7E86ECC8A475B3494817F9966000BDCDD1C73D5EC06B0FB3DF6635FE9E4E101B1DD85884259C4F4C30505E82E74B15DE00991A05F424CB51ABCA30424A7CC
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Client.resources.dll
md5: DF2139C5206F62AAC5DD445C280C25E5 | sha1: 8CD36D5B3D686B5433CB3F62F51CC86CAEFE6861 | sha256: DD83958E67B5F7DDB93963761CFC8391ADC5C6A7475B44EC87A63D3769A86457 | sha512: 99A27C95C51DC8FD03D75128315BFA4270E6542EF086B1769F0B25EF1CABB29F48F77EBC27FAD81934C11CEEA17CB63C4573D73C1133A9D8A333F4EAF17E7B9F
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Common.resources.dll
md5: 5B3192BA4A7B72A9BEE05A2E028490C5 | sha1: A088B5D3FD202CB1B639D3FD1BCDC79DCFA909C3 | sha256: CB5CED67034988385ABEABB021AEA1FB05AC2FEC5A3081197903822C36C94B6B | sha512: E8B59E37BD3D23754E24A359455C7458D157982B573D65D2DF663BE1E85554569E83E0540AFF6F2FFAE314292519F24DC55675359C9B23C5717B5CAEC1DFAC9E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: A4941776A5C74FAA6266A99772F0347E | sha1: 531E6BE7B4798357DDB9B81A10BBF9019305A2CD | sha256: 53D1335EE10CDF7829A2E34511C117F66536431BBDDE9858C2ACD0DBE30AA507 | sha512: E8A5E9D45226F8C9DEFD4469A65E5EC476EAF7F47A47C0EFD3B28C4DA9583017A0FFD004FB75F187C38ACCC901FFD1AE428978DDF02CB7E03C907CF2E4BD84A8
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 0EA86A67ACAE5F3966B2EBEE15FD1698 | sha1: 26ADFFF0A91848FF3CF050E9445C1BDE1633FA19 | sha256: 26C88745BB3DABF69FE577D782A440F882A6AC6DA1FB9481445DC88D304E973D | sha512: 166A942E453D1F2F766DBE5D04C28B1D8E061DC6E4F21FCA04B8A96376FE0D38377003DC9287C9D67A05F5A304D68DA927191765662E0F58256C395766D4535C
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 73CAE5E823BF738025B3BBE5C0E63E3F | sha1: 39E15CDFCA553F4B5CEA14B576AF15E33B19AAC5 | sha256: CB0E0A2E106AE8F6E1E65919C3FEC8BE272D5DC6F3DAF14DD37E56012DF08BAF | sha512: 9F52F9395276C467325BE71138881F7AF705A557006DFF0F5CDACCC56D4FA8B112D1731E88A643B16A8E5012AE292AACFA2995539E4E5DAF4981D7F4F8F4971D
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Client.resources.dll
md5: 303E5E5D45C6D5F3578F81116728DDAF | sha1: 555125312DABF9D2250934C7F9145022338440CE | sha256: 53A21AF554A43B96DF7D653DB5114346E740674A64679D5E43268917D899E46B | sha512: CE3F2F8BDC0F2232AC1C6923B95BBBDB709B016F57031D36CE6763D177CCEC1FB7FBD442E027C51BE5E1018CE1EA848F1385D5D0AE844A042B452085649D0027
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.Common.resources.dll
md5: 058761C9A1B96864E480E93F5D616760 | sha1: 2E793EC4A9044B1AA7BE1B7FC2C85568F63A4E86 | sha256: 8D1BE19C35354E7DEE7FE983E7B9A001BD3358FA38380AD796C3554FFC59854C | sha512: 111B8273E26E586F1488D7E0F7316C26BF445327BCF9A7ED699FC6FFB6760DB21264B7268D45644762EABE3F79586D6A9EFF3DB9D4277C4E5FC65C4B08E73818
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll
md5: 5F64233AC9CA2854183105F76E8AD194 | sha1: 7B297F26B96F84255CEF811D934DEFCEA204963C | sha256: 0AB1B628EB1855118FE438E680B71FEB81BB973D5C6E0258B359762ED39EFF19 | sha512: BA129E556FD087C8E445C886F856F48E7BAC2F9DA51D022F57798449B4AC57093FCD95FE474221B983157F5A347F04190033B00703AC79D4890A99487334B336
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll
md5: 67C601D731EF046F6A595F963035FE0F | sha1: 54697D4B596EC1707C6C8C930373ED671B0D9F37 | sha256: BFDAFD93BC746951DA159532113A8035C43C6D2E6E38CC35A9D617CD1F25290D | sha512: 2F98BC50DE447243C9001E750F3F63EC8534967B14A0C0907BF703880164DE8B2E95B11FF1C7C9538B1334397001BEA313CA89183694FD429CDF4EF54450F4F4
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: C5840F81E627CC4803DC8171F9B77FA5 | sha1: DEABB17C6EEFB0F129F654402943AE4678B8F6C2 | sha256: 1A77E3FDF7497A36AEDDEF954778A6E8FD532E3C50D2A7FB014873FF182FAB02 | sha512: EC97C082A6AEA1F5F0B2A51878D5035ADC1A4D27FF30B9BE40070C0117C8A1F1B716C72A7442612511C2AAB5B9A2E6C967CCE1FF3FA46F5314EC687FEDE76B61
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 3A9F21467D8E5627C5A01CC74CA9E079 | sha1: 81C98B5919C24FBF188B7D953237EF50B727F9B7 | sha256: 1C0C078C431C88858270463063ED19D3CAB377FF1CE0CAB96BFEE2B4688846D2 | sha512: ADE6559BC4CAD8D4853F426AACDC1F2D808E290BF91A2636EE129E6157DFB428E5F80BD3940E62760F0EFF1000E08BC3C8BF140F040479C7BDBF5EF47FA53358
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 9F3667E16EFE79CB302BDD25B13F526B | sha1: 06476595DDCB8EBA3A4B3F8030C8456E82AA0DBE | sha256: F6558ADF541EEBBFAB928B8B10E81731A6E66FBA4952F239FCBE8A1C7A4B0C98 | sha512: 6D7247F1A6F8CCA1C7EE0A846B28BB4192238C78441C678C4935D8637FFB9642AE3654E03CA436E9FC76316F5C8821A54D8BC0F4557BA96349BA0ACD72906553
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 49F48E0932F7366C7B30692B07622D35 | sha1: 4337B00DFB9629ADF669911EF84AA5D99A75208D | sha256: 0CF41D76F97A80E727DC3A478A8981B7A1A55B2D0D2ED20ACF797CC5B022CD77 | sha512: 341B2919C13C0321D8159E23A6182588A068D20E1BB5A1087464B0256AE9CCFE6CD837F9BD484E41AA3D953FFF11BD31239A90D6253C4EAA4B569F9A4E0DDABA
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 47BB6E8653AD57109F5B022A26343635 | sha1: 29F76DB174D3C47C26A6B435988CC1C04CDB0EE6 | sha256: 7C9FE5F2F4D03EF19236EEB17738CAAE12FF636A11C71B61FCD2EC5D41951C79 | sha512: E3A5FF655B70D007AAEDC8AE2714B0835DB0C33F10C13825C111B0C7689A9A4CFDD778F640C76E22FA3ECAFEE10BBDEE0BB23F7E030A23976156B9071E4297EB
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 9D68F68F31866187DA16E4E31A527590 | sha1: 43EC005714BA87E9B2E859AF17417DA32C351932 | sha256: 5660283E5A7D83B7BDD6EE64C8DDCD7EA4B4AE82349CA4D01A01E05B982F2407 | sha512: BB871C84B013F2E35AEB9ABDB7EC593C12F0BC13A2B3A0D47786E91BECB62868C3280833CFBAC456101E03600885090D3B16ECA8B399BF6440EC25F18E143AA4
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 9A2EF233BBDE700EEF3CD1B2136941A7 | sha1: 6D45A5DD5D224CB0F76FDA2CBE277BF8691731B2 | sha256: 56F7F572F6CA05A3C201925C808B0975833A8FE4BA4C14AC4878F6855A15A387 | sha512: 64023EA442CA044967E3645DAB37CB9663AE749778C974C00A52D66F70DAC45EE82F8B43E38A2EFC19141ECEB95B360F960288D8D4FCE325D8ADEC85C159EF9D
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: E82D68B1E4D0E4FFFA79BE8B2ACD5BEA | sha1: 7D1EEE9E4BE0C35F634DCCBD49BB33FAC3C56DB2 | sha256: 9B1FE93D2915717BCF244F7519DF1DDB269EABB7B0B803816CE02A628FF3F43B | sha512: 57D4C2D6ED6EB82002E7BFD91C54BA0E6BA204805E058D8CE680EADD77E0F55355241334014DE543804B4A372A5851EACE93E068B1205824E4DB510B9D069007
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: D8F83AD2FE36D7BEF5940611BC3758DD | sha1: B01DBC627D1F06D805342D7A0106C70C1BD855A8 | sha256: 606709C451EB40DF504FB9620B7E96D335EC37569A7C9FB3E2F963A4CF6442FC | sha512: 9522E0A9EBE3335F1CE35E46ED5B8BAF92D6DB4EC4D81EF870D49DFB2C0981AA4621BDE2A34A8422F73D229385B6264A3799BDBB4DA35F4D076AAB2924EBB6D9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: F6CCB633995D6D43A55EC1B78696C77C | sha1: AA753C40197F5D081D56B6A60D56C9E1BFE76147 | sha256: 2AD1AF11A06CFC682DBE985925DB527E76CFCED8CF87AB9C75D6435EB7605A5D | sha512: 914DE7FD00C98865EF6FAA977EA64C675E21DFAC271FB15FB2A8F1CADD7E5B3C3C441BD161A2B4D198B5445F9EA3697DD85C49166418D9D3658F4761BF61F9A1
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Common.resources.dll
md5: E76647195AA14931312EB6BC2D807535 | sha1: 46194C3BE0D784D946B746F1B96C1FADD05233CD | sha256: ECB770788B13A8BF5BDBA3D697909EF1303043DBB01078139D161BEB8A3314B1 | sha512: 592285DF92F8B71C9221AD9C977733591A0D92A0FEAA83F94209C75CA8E2A1CE1BED79A677491F5021046CC05E6F33E910380425C360BB34F994D0709E58629C
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: B42F5FBA340AE701243592705C5AD3AA | sha1: E2EB8B0ED7FCDE5C3A8EB1F52A3A4F428257095B | sha256: 758B1A777A7A639C4C1F5640FB937F84F6769AB5A3AEC397C6C80B6F6F6A8FAE | sha512: 4A358CD69249410F0AA96ECE3A182E6044BF2252B31378770EBB1C37AB7BD554E4C1AC58BE1AC5ED35A5238488B81952B76FD97E265574A9B522EA086C980031
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 3A80A4604FA04CD3D3B830900DCFFDD6 | sha1: 25E7D4E207E127D4CAF01B4600B6EA45FDA6316B | sha256: F7A474D601A6542929524995236A4B11DAF0A64A859B6E4E196226FC9EDEAA56 | sha512: A4741F4FF4049A92923D16C70BA32DED050E72CC3D464FA316D2237AC3F55C63D3A20A3B3B7E6ADA0B3D06A4C4AA9F9FACA28E85C59C6FD01B53F5DB8AA53CD1
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 02068786B6E37FED47D49FCAF5CFFE3B | sha1: A47D052EA740AB56EA77A8E806E2E0D0EC33DF17 | sha256: 6180A1B1B3ED8E86FA59E2629B4B0DF16E7C7CE1F408ED6737E2BF7879755CAA | sha512: 4F1BBE4E644DAD65C400F7F447A0FA73E239E5C9994998874A5B8AB41F36F51B57A21795649BEFE510E519C013ECC05FBF19E6B1805338404194AB6257A95A24
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 413543092FEE15F66361DD3483456085 | sha1: EB76460A0B2C32A5A64CE210CE20CD51F2BECB50 | sha256: CB2E52927F33D7048983E631E32170830DFDEDF94B5B91DECF4F669BA8FCD0B8 | sha512: DF1E3A4BB17FF0A5BECA4CF7E1090F8A9DACBEA82A7AED3F7067161704857A285955B370308BE2F04DD52CE9A2DD3526436FC785E6301101E940A9FD5C5319C8
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 629B146DBC6812478BB2CF0036598032 | sha1: 1F87CC64076D40F35CC76925EDDABD0BDC2BD2C4 | sha256: E0A529139807D3452C310DFE83A5A436E6D8336714747ED695950F9B66FAEC9C | sha512: 7316A98EB62BCC491CD48F29F368DCC8B3F7B4E60885974E9A6DD670BE005D46B3BA27C0B6AB04603080615CE77B9D1E1ACF9F6B7A95D332937512D3E4EE7C49
tools\TfsCmdlets\LICENSE.md
The MIT License (MIT)

Copyright (c) 2014 Igor Abade de Vasconcellos Leite

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

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

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

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

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

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

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

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

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

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

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

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

    return $false
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

## What is TfsCmdlets?

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

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

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

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

## Quick start guide

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

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

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

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

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

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

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

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

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

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

## How to install

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

### PowerShell Gallery

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

Open an elevated PowerShell prompt and type:

```PowerShell
Install-Module TfsCmdlets
```

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

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

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

### Windows Package Manager (winget)

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

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

```PowerShell
winget install TfsCmdlets
```

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

### Chocolatey

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

```PowerShell
choco install TfsCmdlets
```

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

### Nuget

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

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

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

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

### Offline installation

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

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

#### Full installer (MSI-based)

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

**To install the full installer**:

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

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

**To uninstall the full installer**:

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

#### Portable installer

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

**To install the portable installer**:

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

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

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

```PowerShell
Import-Module TfsCmdlets
```

**To uninstall the portable installer**:

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

## Contribution Guidelines

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

## Additional Information

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

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

This release fixes [issue #124](https://github.com/igoravl/TfsCmdlets/issues/124), plus some small refactorings/housekeeping.

## Fixes

- **Double confirmation in Remove-TfsGitRepository (and others)**: Many cmdlets (all Remove-* ones, and a few others) used to have a ConfirmImpact level set to High. At the same time, some of those also have a Force/ShouldContinue() logic. This meant that the user would be asked for confirmation twice - once when calling ShouldProcess(), and again when calling ShouldContinue(). Now, all cmdlets have their ConfirmImpact set to Medium, and those with potentially destructive actions have a ShouldContinue() call, that can be supressed by the user with the Force parameter.

## Misc

- Adds support to automatic WinGet manifest update and PR creation;
- Updates icon URL in the Nuget/Chocolatey manifest to a higher-res version;
- Adds list of exported cmdlets to the module manifest (psd1)

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

## Previous Versions

### 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.11 (_14/Jul/2020_)

#### Improvements

#### PowerShell 7 (Core) support

- Most cmdlets are now run in both Windows PowerShell and PowerShell 7;
- Exception made to those cmdlets still relying on the old Client Object Model library (e.g. most cmdlets that operate on a configuration server level);
- TfsCmdlets is expected to work on Linux and Mac, although it's been only lightly tested on Linux and have not been tested on a Mac **at all**.

#### New cmdlets

- Connect-TfsTeam
- Disconnect-TfsTeam
- Enter-TfsShell
- Exit-TfsShell
- Get-TfsReleaseDefinition
- Get-TfsVersion
- New-TfsProcessTemplate
- New-TfsTestPlan
- Remove-TfsWorkItemTag
- Rename-TfsGlobalList
- Rename-TfsTeamProject
- Rename-TfsTestPlan
- Search-TfsWorkItem
- Undo-TfsTeamProjectRemoval

#### Other improvements 

- **Documentation site**: Published new [documentation site](https://tfscmdlets.dev) (**WORK IN PROGRESS**)
- **Get-Help**: All cmdlets are now (most) properly documented. Examples are still missing in many of them, but all are guaranteed to have, at least, synopsis and parameter documentation.

#### Breaking Changes

- TfsCmdlets won't run on earlier versions of PowerShell. Please use either **Windows PowerShell 5.1** or **PowerShell 7 (Core)**.
- `Get-TfsCredential` renamed to `New-TfsCredential`
- `Get-TfsPolicyType` renamed to `Get-GitTfsPolicyType`
- `Get-TfsTeamBacklog` renamed to `Get-TfsTeamBacklogLevel`
- `Get-TfsTeamBoardCardRuleSettings` renamed to `Get-TfsTeamBoardCardRule`
- `Set-TfsTeamBoardCardRuleSettings` renamed to `Set-TfsTeamBoardCardRule`
- Removed `Set-TfsArea`, since same result can be obtained by using either `Rename-TfsArea` or `Move-TfsArea`
- Removed `Set-TfsWorkItemBoardStatus`, since same result can be obtained by using either `Set-TfsWorkItem`

#### Known issues

- PowerShell Core **only supports PAT (Personal Access Token)** logins. All other authentication methods (username/password, credential object, interactive) will only work in Windows PowerShell;
- Some cmdlets haven't been ported to .NET yet and thus will throw a `NotImplementedException` exception when first run.

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

#### Improvements

##### New cmdlets: `Enter-TfsShell`, `Exit-TfsShell`, `Get-TfsVersion`, `Invoke-TfsRestApi`

The new `Enter-TfsShell` and `Exit-TfsShell` cmdlets streamline the invocation of the "Azure DevOps Shell" mode. When invoked, shows a banner with the module version and activates the custom console prompt. The custom prompt displays the currently connected Azure DevOps org/server.

`Invoke-TfsRestApi` can be used to streamline calls to the Azure DevOps REST API for scenarios/APIs not yet covered by TfsCmdlets.

Lastly, `Get-TfsVersion` returns version information on a given team project collection / organization. Currently, only Azure DevOps Services organizations are supported. Support for TFS and Azure DevOps Server will be added in a future release.

##### Convert work item query-related cmdlets (`*-TfsWorkItemQuery`, `*-TfsWorkItemQueryFolder`) to REST API

In the process, they've been generalized and converted to aliases to their new "generic" counterparts (`*-TfsWorkItemQueryItem`), much like the Area/Iteration cmdlets.

##### Convert PowerShell Format/Types XML files (*.Format.ps1xml, *.Types.ps1xml) to YAML

Now both **TfsCmdlets.Types.ps1xml** and **TfsCmdlets.Format.ps1xml** files are generated during build time from YAML files with [ps1xmlgen](https://github.com/igoravl/ps1xmlgen). That offers a much better experience to edit/mantain PowerShell's type/format XML files.

##### Argument completers

This improvement is way overdue, but now we have the first set of argument completers. Any cmdlets with the arguments `-Server`, `-Collection` and `-Project` can be "Tab-completed".

##### New aliases for Connect-* cmdlets

Now, to connect to a Azure DevOps (or TFS) collection/organization/project/team you can use optionally use one of the aliases below:

* Connect-TfsConfigurationServer
  * ctfssvr
* Connect-TfsTeamProjectCollection
  * Connect-AzdoOrganization
  * Connect-TfsOrganization
  * ctfs
* Connect-TfsTeamProject
  * ctfstp
* Connect-TfsTeam
  * ctfsteam

##### Bug fixes

- Fix iteration processing in Set-TfsTeam ([72f0fc0](https://github.com/igoravl/TfsCmdlets/pull/98/commits/72f0fc0cdcba7d41c8341efd0b0304303058907e)), ([e15d1ee](https://github.com/igoravl/TfsCmdlets/pull/98/commits/e15d1ee0bff2e8a5bd20b26e11d1b41413eb79b9))
- Fix build when in Release configuration ([6a795ce](https://github.com/igoravl/TfsCmdlets/pull/98/commits/6a795ce49331e37fbd7319f26c1e452d0135a7f6))
- Fix classification node (area/iteration) retrieval for old APIs ([0df3616](https://github.com/igoravl/TfsCmdlets/pull/98/commits/0df3616868a15054125261555ecefed1d830d599))
- Fix TFS Client Library version retrieval ([a9ac849](https://github.com/igoravl/TfsCmdlets/pull/98/commits/a9ac849643f5738e9616ae5c01a12c93c4d1345c))
- Fix Azure DevOps Shell command prompt
- Fix Disconnect-* issues

#### Known issues

- Incremental build is currently disabled in the default Visual Studio Code Build task, as it's a bit inconsistent.

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

#### Improvements

- Not an improvement per se, but the *MoveBy* argument in the Set-TfsClassificationNode cmdlet (and related area/iteration ones) now displays a 'deprecated' warning when MoveBy is specified. The argument is then ignored.

#### Bug fixes

- Fix an issue with Area/Iteration cmdlets not processing pipelines correctly

#### Known issues

- N/A

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

#### Improvements

- Add folder management cmdlets for Build and Release Definitions:
  - Build
    - Get-TfsBuildDefinitionFolder
    - New-TfsBuildDefinitionFolder
    - Remove-TfsBuildDefinitionFolder
  - Release
    - Get-TfsReleaseDefinitionFolder
    - New-TfsReleaseDefinitionFolder
    - Remove-TfsReleaseDefinitionFolder

#### Bug fixes

N/A

#### Known issues

- Set-TfsArea and Set-TfsIteration no longer support reordering of node (`-MoveBy` argument). Still trying to figure out how to do it with the REST API

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

#### Improvements

- Area/iteration cmdlets have been ported to the new REST API
- New "generic" versions of the area/iteration cmdlets are now available. `*-TfsClassificationNode` cmdlets have a `-StructureGroup` argument that accepts either 'Areas' or 'Iterations'. Actually, area and iteration cmdlets (`*-TfsArea` and `*-TfsIteration`) are now merely aliases to their respective `*-TfsClassificationNode` counterparts.

#### Bug fixes

- Fix a bug in Connect-TfsTeamProjectCollection when passing a credential ([27dd30](https://github.com/igoravl/TfsCmdlets/commit/27dd302e1b243436229c3f44fa138c22952718b3))

#### Known issues

- Set-TfsArea and Set-TfsIteration no longer support reordering of node (`-MoveBy` argument). Still trying to figure out how to do it with the REST API

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

#### Improvements

- Add new group membership management cmdlets:
  - Add-TfsGroupMember
  - Get-TfsGroupMember
  - Remove-TfsGroupMember

#### Bug fixes

N/A

#### Known issues

N/A

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

#### Improvements

- Added essential help comments to all cmdlets. Future versions will improve the documentation quality and depth.

#### Bug Fixes

- Fix Nuget and Chocolatey package icons
- Fix bug in Get-TfsWorkItemType that would not return any WITDs

#### Known Issues

- N/A

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

#### Improvements

- Enable build from cmdline with VS 2015 ([ab2325b](https://github.com/igoravl/tfscmdlets/commit/ab2325bae7cce788292d8532742a230756d1fd06))
- Change PoShTools detection from error to warning ([09e62f3](https://github.com/igoravl/tfscmdlets/commit/09e62f3b034e1706fb5845b3f8588658f99a21f8))
- Skip PoShTools detection in AppVeyor ([47cafa4](https://github.com/igoravl/tfscmdlets/commit/47cafa40f16c3e9c7d6f18594154f994d74cfb9c))
- Add custom type detection logic ([b10f32c](https://github.com/igoravl/tfscmdlets/commit/b10f32c5538576ea3cec7bf9f8b8d4c96eddba56))

#### Bug Fixes

- Fix commit message with apostrophe breaking build ([8066ab8](https://github.com/igoravl/tfscmdlets/commit/8066ab8310fa21111e09c5ecba306914edb6e4ab))
- Add proper parameter initialization for credentials ([d0c4d6c](https://github.com/igoravl/tfscmdlets/commit/d0c4d6c7d28682f43ae730904d802ebf4a2d4584))
- Fix handling of current config server ([d7b53f](https://github.com/igoravl/tfscmdlets/commit/d7b53fca74a66f22f793bed39f1ef3bdf642ae83))

#### Known Issues

- N/A

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

#### Improvements

- Add cascade disconnection: When calling a "higher" Disconnect cmdlet (e.g. Disconnect-TfsConfigurationServer), the "lower" ones (e.g. TeamProjectCollection, TeamProject) are cascade-invoked, in other to prevent inconsistent connection information.

#### Bug fixes

- Fix conditional use of -Title in New-TfsWorkItem ([96a8a60](https://github.com/igoravl/tfscmdlets/commit/818af6e9d6ba3f30e976f3ef20d6070ac50fa3e7))
- Fix argument naming and pipelined return in Get-TfsWorkItem ([0a118125](https://github.com/igoravl/tfscmdlets/commit/0a11812554b447f4418e11454911ca5f53f34924))
- Fix return when passing -Current in Get-TfsConfigurationServer ([58647d2f](https://github.com/igoravl/tfscmdlets/commit/58647d2f29d84d6f5db4e0022062c2dd30cfaba1))

#### Known Issues

- N/A

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

#### Improvements

- Remove dependency on .NET 3.5

#### Bug fixes

- N/A

#### Known Issues

- N/A

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

#### Improvements

- Add help comments to the Areas & Iterations functions

#### Bug fixes

- Fix an issue in the AssemblyResolver implementation. Previously it was implemented as a scriptblock and was running into some race conditions that would crash PowerShell. Switched to a pure .NET implementation in order to avoid the race condition.

#### Known Issues

- TfsCmdlets has currently a dependency on .NET 3.5 and won't load in computers with only .NET 4.x installed. Workaround is to install .NET 3.5. Next version will no longer depend on .NET 3.5.
tools\TfsCmdlets\TfsCmdlets.dll-Help.xml
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
  <!-- Cmdlet: Get-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Get-TfsArea</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsArea</dev:code>
        <dev:remarks>
          <maml:para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsArea '\**\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Move-TfsArea</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>New-TfsArea</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Creates a new Work Item Area in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Remove-TfsArea</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: MoveTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
          <maml:name>MoveTo</maml:name>
          <maml:description>
            <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes node(s) recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: MoveTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>NewPath</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          <maml:para>This is an alias of the MoveTo parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes node(s) recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Rename-TfsArea</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Renames a Work Area. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Test-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Test-TfsArea</command:name>
      <command:verb>Test</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Determines whether the specified Work Area exist. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Test-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
    <command:details>
      <command:name>Get-TfsBuildDefinitionFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Gets one or more build/pipeline definition folders in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
          </maml:description>
          <command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
        </maml:description>
        <command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Get-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
    <command:details>
      <command:name>New-TfsBuildDefinitionFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Creates a new build/pipeline definition folder </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any child folders. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/New-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
    <command:details>
      <command:name>Remove-TfsBuildDefinitionFolder</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Deletes one or more build/pipeline definition folders. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Remove-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsConfigurationServer</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Connects to a configuration server. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, it is represented by the Tfs_Configuration database. Operations that should be performed on a server level (such as setting server-level permissions) require a connection to a TFS configuration server. Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. NOTE: Currently it is only supported in Windows PowerShell. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</dev:code>
        <dev:remarks>
          <maml:para>Connects to the TFS server specified by the URL in the Server argument</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsConfigurationServer -Server vsalm</dev:code>
        <dev:remarks>
          <maml:para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsConfigurationServer</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected configuration server. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsConfigurationServer</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
    <command:details>
      <command:name>Get-TfsConfigurationServer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Gets information about a configuration server. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by server -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by server">
        <maml:name>Get-TfsConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsConfigurationServer</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsConfigurationServerConnectionString -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsConfigurationServerConnectionString</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsConfigurationServerConnectionString</command:noun>
      <maml:description>
        <maml:para>Gets the configuration server database connection string. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Use computer name -->
      <command:syntaxItem tfscmdlets:parameterSet="Use computer name">
        <maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
        <!-- Parameter: ComputerName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ComputerName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>localhost</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use session -->
      <command:syntaxItem tfscmdlets:parameterSet="Use session">
        <maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
        <!-- Parameter: Session -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Session</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSSession</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ComputerName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ComputerName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>localhost</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Session -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Session</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSSession</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSCredential</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCredential</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsConfigurationServerConnectionString</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Online version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TfsInstallationPath</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsCredential -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>New-TfsCredential</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsCredential</command:noun>
      <maml:description>
        <maml:para>Provides credentials to use when you connect to a Team Foundation Server or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Url -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Url</maml:name>
        <maml:description>
          <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Uri</command:parameterValue>
        <dev:type>
          <maml:name>System.Uri</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: VssCredentials -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Common.VssCredentials</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/New-TfsCredential</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitBranch -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Branch">
    <command:details>
      <command:name>Get-TfsGitBranch</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitBranch</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more branches in a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by name">
        <maml:name>Get-TfsGitBranch</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default">
        <maml:name>Get-TfsGitBranch</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default branch in the given repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default branch in the given repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitBranchStats -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Branch/Get-TfsGitBranch</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitBranchPolicy -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
    <command:details>
      <command:name>Get-TfsGitBranchPolicy</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitBranchPolicy</command:noun>
      <maml:description>
        <maml:para>Gets the Git branch policy configuration of the given Git branches. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitBranchPolicy</maml:name>
        <!-- Parameter: PolicyType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>PolicyType</maml:name>
          <maml:description>
            <maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: PolicyType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>PolicyType</maml:name>
        <maml:description>
          <maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PolicyConfiguration -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitBranchPolicy</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitPolicyType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
    <command:details>
      <command:name>Get-TfsGitPolicyType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitPolicyType</command:noun>
      <maml:description>
        <maml:para>Gets one or more Git branch policies supported by the given team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitPolicyType</maml:name>
        <!-- Parameter: PolicyType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>PolicyType</maml:name>
          <maml:description>
            <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: PolicyType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>PolicyType</maml:name>
        <maml:description>
          <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
          <maml:para>This is an alias of the PolicyType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PolicyType -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyType</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitPolicyType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Disable-TfsGitRepository</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Disables one or more Git repositories. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Disables access to the repository. When a repository is disabled it cannot be accessed (including clones, pulls, pushes, builds, pull requests etc) but remains discoverable, with a warning message stating it is disabled. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Disable-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Enable-TfsGitRepository</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Enables one or more Git repositories. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlets re-enables access to a repository. When a repository is disabled it cannot be accessed (including clones, pulls, pushes, builds, pull requests etc) but remains discoverable, with a warning message stating it is disabled. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Enable-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Get-TfsGitRepository</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Get-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>New-TfsGitRepository</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Creates a new Git repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new repository </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/New-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Remove-TfsGitRepository</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Git repositories from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Remove-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Rename-TfsGitRepository</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Renames a Git repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Rename-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Export-TfsGlobalList</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Exports the contents of one or more Global Lists to XML. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlets generates an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist" </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>To export or list global lists, you must be a member of the Project Collection Valid Users group or have your View collection-level information permission set to Allow. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsGlobalList | Out-File "gl.xml"</dev:code>
        <dev:remarks>
          <maml:para>Exports all global lists in the current project collection to a file called gl.xml.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsGlobalList -Name "Builds - *"</dev:code>
        <dev:remarks>
          <maml:para>Exports all build-related global lists (with names starting with "Build - ") and return the resulting XML document.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Export-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Get-TfsGlobalList</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more Global Lists. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: GlobalList -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.GlobalList</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Get-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Import-TfsGlobalList</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Imports one or more Global Lists from an XML document </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdletsimports an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist" </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsGlobalList</maml:name>
        <!-- Parameter: InputObject -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
          <maml:name>InputObject</maml:name>
          <maml:description>
            <maml:para>XML document object containing one or more global list definitions. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite a global list that already exists. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: InputObject -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
        <maml:name>InputObject</maml:name>
        <maml:description>
          <maml:para>XML document object containing one or more global list definitions. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
        <maml:name>Xml</maml:name>
        <maml:description>
          <maml:para>XML document object containing one or more global list definitions. </maml:para>
          <maml:para>This is an alias of the InputObject parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite a global list that already exists. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>XML document object containing one or more global list definitions. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:alertSet>
      <maml:para>To import global lists, you must be a member of the Project Collection Administrators security group. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-Content gl.xml | Import-GlobalList</dev:code>
        <dev:remarks>
          <maml:para>Imports the contents of an XML document called gl.xml to the current project collection</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Import-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>New-TfsGlobalList</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Creates a new Global List. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Items -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
          <maml:name>Items</maml:name>
          <maml:description>
            <maml:para>Specifies the contents (items) of the new global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new global list. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Items -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
        <maml:name>Items</maml:name>
        <maml:description>
          <maml:para>Specifies the contents (items) of the new global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new global list. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the contents (items) of the new global list. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PSCustomObject -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCustomObject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/New-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Remove-TfsGlobalList</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Global Lists. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Remove-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Rename-TfsGlobalList</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Changes either the name or the contents of a Global List. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Rename-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsGlobalList -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
    <command:details>
      <command:name>Set-TfsGlobalList</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsGlobalList</command:noun>
      <maml:description>
        <maml:para>Changes the contents of a Global List. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsGlobalList</maml:name>
        <!-- Parameter: GlobalList -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
          <maml:name>GlobalList</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the global list to be changed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Add -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Add</maml:name>
          <maml:description>
            <maml:para>Specifies a list of items to be added to the global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Creates a new list if the specified one does not exist. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Remove -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Remove</maml:name>
          <maml:description>
            <maml:para>Specifies a list of items to be removed from the global list. </maml:para>
          </maml:description>
          <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: GlobalList -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
        <maml:name>GlobalList</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be changed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the global list to be changed. </maml:para>
          <maml:para>This is an alias of the GlobalList parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Add -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Add</maml:name>
        <maml:description>
          <maml:para>Specifies a list of items to be added to the global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Remove -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Remove</maml:name>
        <maml:description>
          <maml:para>Specifies a list of items to be removed from the global list. </maml:para>
        </maml:description>
        <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Creates a new list if the specified one does not exist. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the global list to be changed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Set-TfsGlobalList</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Add-TfsGroupMember</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Adds group members to an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsGroupMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to which the member is added. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to which the member is added. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Add-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Get-TfsGroupMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a Azure DevOps group </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGroupMember</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group fom which to get its members. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group fom which to get its members. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the group fom which to get its members. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Get-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Remove-TfsGroupMember</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Removes a member from an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGroupMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group from which the member is removed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group from which the member is removed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Remove-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsIdentity -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity">
    <command:details>
      <command:name>Get-TfsIdentity</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsIdentity</command:noun>
      <maml:description>
        <maml:para>Gets one or more identities that represents either users or groups in Azure DevOps. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get Identity -->
      <command:syntaxItem tfscmdlets:parameterSet="Get Identity">
        <maml:name>Get-TfsIdentity</maml:name>
        <!-- Parameter: Identity -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Identity</maml:name>
          <maml:description>
            <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: 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="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 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: 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: Identity -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Identity</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryMembership -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryMembership</maml:name>
        <maml:description>
          <maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
          <maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryMembership</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Direct</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Get-TfsIdentity</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsIdentitySync -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Start-TfsIdentitySync</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsIdentitySync</command:noun>
      <maml:description>
        <maml:para>Triggers an Identity Sync server job. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsIdentitySync</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Wait -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Wait</maml:name>
          <maml:description>
            <maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Wait -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Wait</maml:name>
        <maml:description>
          <maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Start-TfsIdentitySync</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsInstallationPath -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsInstallationPath</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsInstallationPath</command:noun>
      <maml:description>
        <maml:para>Gets the installation path of a given Team Foundation Server component. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Many times a Team Foundation Server admin needs to retrieve the location where TFS is actually installed. That can be useful, for instance, to locate tools like TfsSecurity or TfsServiceControl. That information is recorded at setup time, in a well-known location in the Windows Registry of the server where TFS is installed. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Use computer name -->
      <command:syntaxItem tfscmdlets:parameterSet="Use computer name">
        <maml:name>Get-TfsInstallationPath</maml:name>
        <!-- Parameter: Component -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Component</maml:name>
          <maml:description>
            <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
            <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
          </maml:description>
          <command:parameterValue required="true">TfsComponent</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.TfsComponent</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>BaseInstallation</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: ComputerName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ComputerName</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>localhost</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use session -->
      <command:syntaxItem tfscmdlets:parameterSet="Use session">
        <maml:name>Get-TfsInstallationPath</maml:name>
        <!-- Parameter: Session -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Session</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSSession</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Component -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Component</maml:name>
          <maml:description>
            <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
            <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
          </maml:description>
          <command:parameterValue required="true">TfsComponent</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.TfsComponent</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>BaseInstallation</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ComputerName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ComputerName</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>localhost</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Session -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Session</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSSession</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Component -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Component</maml:name>
        <maml:description>
          <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
          <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
        </maml:description>
        <command:parameterValue required="true">TfsComponent</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.TfsComponent</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>BaseInstallation</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSCredential</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCredential</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsInstallationPath -Version 2017</dev:code>
        <dev:remarks>
          <maml:para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</dev:code>
        <dev:remarks>
          <maml:para>Gets the location where the SharePoint Extensions have been installed in the remote server SPTFSSRV, prompting for admin credentials to be used for establishing a PS Remoting session to the server</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsInstallationPath</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Get-TfsIteration</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration</dev:code>
        <dev:remarks>
          <maml:para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration '\**\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Move-TfsIteration</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration</dev:code>
        <dev:remarks>
          <maml:para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration '\\**\\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>New-TfsIteration</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Creates a new Iteration in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FinishDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FinishDate</maml:name>
          <maml:description>
            <maml:para>Sets the finish date of the iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FinishDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FinishDate</maml:name>
        <maml:description>
          <maml:para>Sets the finish date of the iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Remove-TfsIteration</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: MoveTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
          <maml:name>MoveTo</maml:name>
          <maml:description>
            <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes node(s) recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: MoveTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>NewPath</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          <maml:para>This is an alias of the MoveTo parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes node(s) recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Rename-TfsIteration</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Renames a Iteration. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Set-TfsIteration</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Modifies the dates of an iteration. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FinishDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>FinishDate</maml:name>
          <maml:description>
            <maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FinishDate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>FinishDate</maml:name>
        <maml:description>
          <maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Set-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Test-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Test-TfsIteration</command:name>
      <command:verb>Test</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Determines whether the specified Iteration exist. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Test-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Export-TfsProcessTemplate</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Exports a XML-based process template definition to disk. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlet offers a functional replacement to the "Export Process Template" feature found in Team Explorer. All files pertaining to the specified process template (work item defininitons, reports, saved queries, process configuration and so on) are downloaded from the given Team Project Collection and saved in a local directory, preserving the directory structure required to later re-import it. This is specially handy to do small changes to a process template or to create a new process template based on an existing one. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationPath</maml:name>
          <maml:description>
            <maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NewDescription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewDescription</maml:name>
          <maml:description>
            <maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template.  When omitted, the original description is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationPath</maml:name>
        <maml:description>
          <maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewDescription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewDescription</maml:name>
        <maml:description>
          <maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template.  When omitted, the original description is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</dev:code>
        <dev:remarks>
          <maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Export-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Get-TfsProcessTemplate</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more process templates. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by name">
        <maml:name>Get-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default process -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default process">
        <maml:name>Get-TfsProcessTemplate</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default process template in the given orgnization / project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default process template in the given orgnization / project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Process -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Get-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Import-TfsProcessTemplate</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Imports a process template definition from disk. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsProcessTemplate</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Visible</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Visible</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Import-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>New-TfsProcessTemplate</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Creates a new inherited process. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process to create. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new process. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Parent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Parent</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ReferenceName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ReferenceName</maml:name>
          <maml:description>
            <maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new process. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ReferenceName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ReferenceName</maml:name>
        <maml:description>
          <maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Parent -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Parent</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Process -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/New-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegisteredConfigurationServer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
    <command:details>
      <command:name>Get-TfsRegisteredConfigurationServer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegisteredConfigurationServer</command:noun>
      <maml:description>
        <maml:para>Gets one or more Team Foundation Server addresses registered in the current computer. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegisteredConfigurationServer</maml:name>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
          <maml:para>This is an alias of the Server parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: RegisteredConfigurationServer -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Client.RegisteredConfigurationServer</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsRegisteredConfigurationServer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegisteredTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Get-TfsRegisteredTeamProjectCollection</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegisteredTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Gets one or more Team Project Collection addresses registered in the current computer. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegisteredTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsRegisteredTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegistryValue -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
    <command:details>
      <command:name>Get-TfsRegistryValue</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegistryValue</command:noun>
      <maml:description>
        <maml:para>Gets the value of a given Team Foundation Server registry entry. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. </maml:para>
      <maml:para>Registry entries can be scoped to the server, to a collection or to a specific user. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegistryValue</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the full path of the TFS Registry key </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
            <maml:para>Possible values: User, Collection, Server</maml:para>
          </maml:description>
          <command:parameterValue required="true">RegistryScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.RegistryScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Server</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the full path of the TFS Registry key </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
          <maml:para>Possible values: User, Collection, Server</maml:para>
        </maml:description>
        <command:parameterValue required="true">RegistryScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.RegistryScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Server</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Object -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
      <maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
        <dev:remarks>
          <maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Get-TfsRegistryValue</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsRegistryValue -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
    <command:details>
      <command:name>Set-TfsRegistryValue</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsRegistryValue</command:noun>
      <maml:description>
        <maml:para>Sets the value of a given Team Foundation Server registry entry. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the value specified in the command. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsRegistryValue</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the full path of the TFS Registry key </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Value -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Value</maml:name>
          <maml:description>
            <maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
            <maml:para>Possible values: User, Collection, Server</maml:para>
          </maml:description>
          <command:parameterValue required="true">RegistryScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.RegistryScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Server</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the full path of the TFS Registry key </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Value -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Value</maml:name>
        <maml:description>
          <maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
          <maml:para>Possible values: User, Collection, Server</maml:para>
        </maml:description>
        <command:parameterValue required="true">RegistryScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.RegistryScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Server</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Object -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
      <maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
        <dev:remarks>
          <maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Set-TfsRegistryValue</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsReleaseDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Get-TfsReleaseDefinition</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsReleaseDefinition</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more release definitions in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsReleaseDefinition</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: ReleaseDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.ReleaseDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Get-TfsReleaseDefinitionFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Gets one or more Release/pipeline definition folders in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, Ascending, Descending</maml:para>
          </maml:description>
          <command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, Ascending, Descending</maml:para>
        </maml:description>
        <command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>New-TfsReleaseDefinitionFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Creates a new release definition folder. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/New-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Remove-TfsReleaseDefinitionFolder</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Deletes one or more release definition folders. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Remove-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Invoke-TfsRestApi -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
    <command:details>
      <command:name>Invoke-TfsRestApi</command:name>
      <command:verb>Invoke</command:verb>
      <command:noun>TfsRestApi</command:noun>
      <maml:description>
        <maml:para>Invoke an Azure DevOps REST API. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Invoke-TfsRestApi can automatically parse an example URL from https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens (such as {organization}, {project} and {team}) as long as collection / project / team information are available via either the their respective arguments in this command or the corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted from the supplied example, when available. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Invoke-TfsRestApi</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AdditionalHeaders -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AdditionalHeaders</maml:name>
          <maml:description>
            <maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ApiVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ApiVersion</maml:name>
          <maml:description>
            <maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>4.1</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: AsTask -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsTask</maml:name>
          <maml:description>
            <maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Body -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
          <maml:name>Body</maml:name>
          <maml:description>
            <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Method -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Method</maml:name>
          <maml:description>
            <maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>GET</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryParameters -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryParameters</maml:name>
          <maml:description>
            <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Raw -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Raw</maml:name>
          <maml:description>
            <maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: RequestContentType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RequestContentType</maml:name>
          <maml:description>
            <maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>application/json</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ResponseContentType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ResponseContentType</maml:name>
          <maml:description>
            <maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>application/json</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UseHost -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseHost</maml:name>
          <maml:description>
            <maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Method -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Method</maml:name>
        <maml:description>
          <maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>GET</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Body -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
        <maml:name>Body</maml:name>
        <maml:description>
          <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
        <maml:name>Content</maml:name>
        <maml:description>
          <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
          <maml:para>This is an alias of the Body parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: RequestContentType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RequestContentType</maml:name>
        <maml:description>
          <maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>application/json</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ResponseContentType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ResponseContentType</maml:name>
        <maml:description>
          <maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>application/json</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AdditionalHeaders -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AdditionalHeaders</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryParameters -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryParameters</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ApiVersion -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ApiVersion</maml:name>
        <maml:description>
          <maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>4.1</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UseHost -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>UseHost</maml:name>
        <maml:description>
          <maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Raw -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Raw</maml:name>
        <maml:description>
          <maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsTask -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsTask</maml:name>
        <maml:description>
          <maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</dev:code>
        <dev:remarks>
          <maml:para>Calls the API described by an example extracted from the docs.microsoft.com web site. HTTP method, host name and API version are all set based on the supplied values; Tokens {organization}, {project} and {team} are properly replaced with the corresponding values provided by the current connection context (via previous calls to Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 3  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Invoke-TfsRestApi</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRestClient -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
    <command:details>
      <command:name>Get-TfsRestClient</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRestClient</command:noun>
      <maml:description>
        <maml:para>Gets an Azure DevOps HTTP Client object instance. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication information supplied by their parent connection object and can be used as a more convenient mechanism to issue API calls. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Get by collection -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by collection">
        <maml:name>Get-TfsRestClient</maml:name>
        <!-- Parameter: TypeName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
          <maml:name>TypeName</maml:name>
          <maml:description>
            <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by server -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by server">
        <maml:name>Get-TfsRestClient</maml:name>
        <!-- Parameter: TypeName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
          <maml:name>TypeName</maml:name>
          <maml:description>
            <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TypeName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
        <maml:name>TypeName</maml:name>
        <maml:description>
          <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          <maml:para>This is an alias of the TypeName parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: VssHttpClientBase -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssHttpClientBase</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Get-TfsRestClient</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookConsumer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookConsumer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookConsumer</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook consumers. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Service hook consumers are the services that can consume (receive) notifications triggered by Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookConsumer</maml:name>
        <!-- Parameter: Consumer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Consumer</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Consumer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Consumer</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          <maml:para>This is an alias of the Consumer parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          <maml:para>This is an alias of the Consumer parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Consumer -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Consumer</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookConsumer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookNotificationHistory -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookNotificationHistory</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookNotificationHistory</command:noun>
      <maml:description>
        <maml:para>Gets the notification history for a given service hook subscription </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookNotificationHistory</maml:name>
        <!-- Parameter: Subscription -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Subscription</maml:name>
          <maml:description>
            <maml:para>Specifies the subscription to get the notification history from. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: From -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>From</maml:name>
          <maml:description>
            <maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Status -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Status</maml:name>
          <maml:description>
            <maml:para>Specifies the notification status to filter on. </maml:para>
            <maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
          </maml:description>
          <command:parameterValue required="true">NotificationStatus</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: To -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>To</maml:name>
          <maml:description>
            <maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Subscription -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Subscription</maml:name>
        <maml:description>
          <maml:para>Specifies the subscription to get the notification history from. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: From -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>From</maml:name>
        <maml:description>
          <maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: To -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>To</maml:name>
        <maml:description>
          <maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Status -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Status</maml:name>
        <maml:description>
          <maml:para>Specifies the notification status to filter on. </maml:para>
          <maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
        </maml:description>
        <command:parameterValue required="true">NotificationStatus</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the subscription to get the notification history from. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Notification -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Notification</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookNotificationHistory</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookPublisher -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookPublisher</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookPublisher</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook publishers. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookPublisher</maml:name>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Publisher -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Publisher</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookPublisher</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookSubscription -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookSubscription</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookSubscription</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook subscriptions </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookSubscription</maml:name>
        <!-- Parameter: Subscription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Subscription</maml:name>
          <maml:description>
            <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Consumer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Consumer</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: EventType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>EventType</maml:name>
          <maml:description>
            <maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Subscription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Subscription</maml:name>
        <maml:description>
          <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
          <maml:para>This is an alias of the Subscription parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Consumer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Consumer</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: EventType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>EventType</maml:name>
        <maml:description>
          <maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Subscription -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Subscription</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookSubscription</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enter-TfsShell -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
    <command:details>
      <command:name>Enter-TfsShell</command:name>
      <command:verb>Enter</command:verb>
      <command:noun>TfsShell</command:noun>
      <maml:description>
        <maml:para>Activates the Azure DevOps Shell </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enter-TfsShell</maml:name>
        <!-- Parameter: DoNotClearHost -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DoNotClearHost</maml:name>
          <maml:description>
            <maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoLogo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoLogo</maml:name>
          <maml:description>
            <maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: WindowTitle -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>WindowTitle</maml:name>
          <maml:description>
            <maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WindowTitle -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>WindowTitle</maml:name>
        <maml:description>
          <maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DoNotClearHost -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DoNotClearHost</maml:name>
        <maml:description>
          <maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NoLogo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoLogo</maml:name>
        <maml:description>
          <maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Enter-TfsShell</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Exit-TfsShell -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
    <command:details>
      <command:name>Exit-TfsShell</command:name>
      <command:verb>Exit</command:verb>
      <command:noun>TfsShell</command:noun>
      <maml:description>
        <maml:para>Deactivates the Azure DevOps Shell </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Exit-TfsShell</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Exit-TfsShell</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsTeam</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Connects to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsTeam</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected team. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeam cmdlet removes the connection previously set by its counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" as provided by "Get-TfsTeam -Current" will no longer work after a call to this cmdlet, unless their -Team argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeam</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Get-TfsTeam</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more teams. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by team -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by team">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default team -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default team">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryMembership -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryMembership</maml:name>
        <maml:description>
          <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeSettings</maml:name>
        <maml:description>
          <maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default team in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Get-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>New-TfsTeam</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Creates a new team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogIteration</maml:name>
          <maml:description>
            <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultAreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
          <maml:name>DefaultAreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultIterationMacro -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DefaultIterationMacro</maml:name>
          <maml:description>
            <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>@CurrentIteration</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description of the new team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NoBacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoBacklogIteration</maml:name>
          <maml:description>
            <maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoDefaultArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoDefaultArea</maml:name>
          <maml:description>
            <maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultAreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>DefaultAreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>TeamFieldValue</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
          <maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoDefaultArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoDefaultArea</maml:name>
        <maml:description>
          <maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogIteration</maml:name>
        <maml:description>
          <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultIterationMacro -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DefaultIterationMacro</maml:name>
        <maml:description>
          <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>@CurrentIteration</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NoBacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoBacklogIteration</maml:name>
        <maml:description>
          <maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description of the new team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/New-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Remove-TfsTeam</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Deletes a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Remove-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Rename-TfsTeam</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Renames a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Rename-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Set-TfsTeam</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Changes the details of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Set team settings -->
      <command:syntaxItem tfscmdlets:parameterSet="Set team settings">
        <maml:name>Set-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogIteration</maml:name>
          <maml:description>
            <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BacklogVisibilities -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogVisibilities</maml:name>
          <maml:description>
            <maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BugsBehavior -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BugsBehavior</maml:name>
          <maml:description>
            <maml:para>Specifies how bugs should behave when added to a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultAreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
          <maml:name>DefaultAreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultIterationMacro -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DefaultIterationMacro</maml:name>
          <maml:description>
            <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>@CurrentIteration</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: WorkingDays -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>WorkingDays</maml:name>
          <maml:description>
            <maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
          </maml:description>
          <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Set default team -->
      <command:syntaxItem tfscmdlets:parameterSet="Set default team">
        <maml:name>Set-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Sets the specified team as the default team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Sets the specified team as the default team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a new description </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultAreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>DefaultAreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>TeamFieldValue</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
          <maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogIteration</maml:name>
        <maml:description>
          <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultIterationMacro -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DefaultIterationMacro</maml:name>
        <maml:description>
          <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>@CurrentIteration</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BugsBehavior -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BugsBehavior</maml:name>
        <maml:description>
          <maml:para>Specifies how bugs should behave when added to a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BacklogVisibilities -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogVisibilities</maml:name>
        <maml:description>
          <maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkingDays -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>WorkingDays</maml:name>
        <maml:description>
          <maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
        </maml:description>
        <command:parameterValue required="true">IEnumerable`1</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Set-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Add-TfsTeamAdmin</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Adds a new administrator to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to add to the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to add to the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the administrator to add to the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamAdmins -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Add-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Get-TfsTeamAdmin</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Gets the administrators of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamAdmin</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Get-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Remove-TfsTeamAdmin</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Removes an administrator from a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to remove from the team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to remove from the team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the administrator to remove from the team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamAdmins -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Remove-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBacklogLevel -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Backlog">
    <command:details>
      <command:name>Get-TfsTeamBacklogLevel</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBacklogLevel</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more backlog levels of a given team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBacklogLevel</maml:name>
        <!-- Parameter: Backlog -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Backlog</maml:name>
          <maml:description>
            <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Backlog -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Backlog</maml:name>
        <maml:description>
          <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
          <maml:para>This is an alias of the Backlog parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BacklogLevelConfiguration -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BacklogLevelConfiguration</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Backlog/Get-TfsTeamBacklogLevel</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBoard -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Get-TfsTeamBoard</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBoard</command:noun>
      <maml:description>
        <maml:para>Gets one or more team boards. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBoard</maml:name>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
          <maml:para>This is an alias of the Board parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Board -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.Board</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoard</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBoardCardRule -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Get-TfsTeamBoardCardRule</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBoardCardRule</command:noun>
      <maml:description>
        <maml:para>Gets one or more team board card rules. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: Rule -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Rule</maml:name>
          <maml:description>
            <maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: RuleType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RuleType</maml:name>
          <maml:description>
            <maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
            <maml:para>Possible values: CardColor, TagColor, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">CardRuleType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.CardRuleType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Rule -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Rule</maml:name>
        <maml:description>
          <maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: RuleType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RuleType</maml:name>
        <maml:description>
          <maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
          <maml:para>Possible values: CardColor, TagColor, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">CardRuleType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.CardRuleType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the board name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Rule -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.Rule</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoardCardRule</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeamBoardCardRuleSetting -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Set-TfsTeamBoardCardRuleSetting</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamBoardCardRuleSetting</command:noun>
      <maml:description>
        <maml:para>Set the card rule settings of the specified backlog board. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsTeamBoardCardRuleSetting</maml:name>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BoardCardRuleSettings -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Set-TfsTeamBoardCardRuleSetting</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Add-TfsTeamMember</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Adds new members to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to which the member is added. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team to which the member is added. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamAdmins -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Add-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Get-TfsTeamMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamMember</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team from which to get its members. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team from which to get its members. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the team from which to get its members. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Get-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Remove-TfsTeamMember</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Removes a member from a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team from which the member is removed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team from which the member is removed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Remove-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsTeamProject</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Connects to a Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsTeamProject</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected team project. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" as provided by "Get-TfsTeamProject -Current" will no longer work after a call to this cmdlet, unless their -Project argument is provided or a new call to Connect-TfsTeamProject is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeamProject</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Get-TfsTeamProject</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-TfsTeamProject cmdlets gets one or more Team Project objects (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied Team Project Collection. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Get by project -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by project">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Get-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>New-TfsTeamProject</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Creates a new team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description for the new team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SourceControl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SourceControl</maml:name>
          <maml:description>
            <maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Git</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description for the new team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: SourceControl -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SourceControl</maml:name>
        <maml:description>
          <maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Git</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/New-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Remove-TfsTeamProject</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Deletes one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Hard -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Hard</maml:name>
          <maml:description>
            <maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Hard -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Hard</maml:name>
        <maml:description>
          <maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Remove-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Rename-TfsTeamProject</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Renames a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project to rename. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to rename. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to rename. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Rename-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Set-TfsTeamProject</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Changes the details of a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AvatarImage -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AvatarImage</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). To remove a previously set image, pass $null to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AvatarImage -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AvatarImage</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). To remove a previously set image, pass $null to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Set-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Connect-TfsTeamProjectCollection</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Connects to a TFS team project collection or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or Azure DevOps organization. </maml:para>
      <maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsTeamProjectCollection. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="2">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssConnection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their -Collection argument in order to access a TFS instance. Those cmdlets will use the connection opened by Connect-TfsTeamProjectCollection as their "default connection". </maml:para>
      <maml:para>In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection provided by Connect-TfsTeamProjectCollection by default. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" using the cached credentials of the logged-on user</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a Team Foundation server called "tfs", firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
    <command:details>
      <command:name>Disconnect-TfsTeamProjectCollection</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected TFS team project collection or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to this cmdlet, unless their -Collection argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Dismount-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Dismount-TfsTeamProjectCollection</command:name>
      <command:verb>Dismount</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Detaches a team project collection database from a Team Foundation Server installation. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Before you move a collection, you must first detach it from the deployment of TFS on which it is running. It's very important that you do not skip this step. When you detach a collection, all jobs and services are stopped, and then the collection database is stopped. In addition, the detach process copies over the collection-specific data from the configuration database and saves it as part of the team project collection database. This configuration data is what allows the collection database to be attached to a different deployment of TFS. If that data is not present, you cannot attach the collection to any deployment of TFS except the one from which it originated. If detachment succeeds, this cmdlets returns the original database connection string. It is required to re-attach the collection to TFS. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Dismount-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the collection to detach. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the collection to detach. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Timeout -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Timeout</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">TimeSpan</command:parameterValue>
        <dev:type>
          <maml:name>System.TimeSpan</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the collection to detach. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>Detaching a collection prevents users from accessing any projects in that collection. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</dev:code>
        <dev:remarks>
          <maml:para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Dismount-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Get-TfsTeamProjectCollection</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Gets one of more team project collections (organizations in Azure DevOps). </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by collection -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by collection">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssConnection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Mount-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Mount-TfsTeamProjectCollection</command:name>
      <command:verb>Mount</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Attaches a team project collection database to a Team Foundation Server installation. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Use database server -->
      <command:syntaxItem tfscmdlets:parameterSet="Use database server">
        <maml:name>Mount-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DatabaseName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the collection database. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DatabaseServer -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseServer</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Clone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Clone</maml:name>
          <maml:description>
            <maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: InitialState -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>InitialState</maml:name>
          <maml:description>
            <maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Started</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <maml:description>
            <maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>5</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use connection string -->
      <command:syntaxItem tfscmdlets:parameterSet="Use connection string">
        <maml:name>Mount-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ConnectionString -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ConnectionString</maml:name>
          <maml:description>
            <maml:para>Specifies the connection string of the collection database. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Clone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Clone</maml:name>
          <maml:description>
            <maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: InitialState -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>InitialState</maml:name>
          <maml:description>
            <maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Started</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <maml:description>
            <maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>5</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DatabaseServer -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseServer</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DatabaseName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the collection database. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ConnectionString -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ConnectionString</maml:name>
        <maml:description>
          <maml:para>Specifies the connection string of the collection database. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: InitialState -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>InitialState</maml:name>
        <maml:description>
          <maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Started</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Clone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Clone</maml:name>
        <maml:description>
          <maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: PollingInterval -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>PollingInterval</maml:name>
        <maml:description>
          <maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>5</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Timeout -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Timeout</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">TimeSpan</command:parameterValue>
        <dev:type>
          <maml:name>System.TimeSpan</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Mount-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>New-TfsTeamProjectCollection</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Creates a new team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Connection -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Connection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/New-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Remove-TfsTeamProjectCollection</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Deletes a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Remove-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Start-TfsTeamProjectCollection</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Starts an offline team project collection and make it online. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Start-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Stop-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Stop-TfsTeamProjectCollection</command:name>
      <command:verb>Stop</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Stops a team project collection and make it offline. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Stop-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Stop-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsTeamProjectRemoval -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Undo-TfsTeamProjectRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsTeamProjectRemoval</command:noun>
      <maml:description>
        <maml:para>Undeletes one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsTeamProjectRemoval</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Undo-TfsTeamProjectRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Copy-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Copy-TfsTestPlan</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Clone a test plan and, optionally, its test suites and test cases. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other. When you clone a test suite, the following objects are copied from the source test plan to the destination test plan: * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information); * Shared steps referenced by cloned test cases; * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations); * Action Recordings linked from a cloned test case; * Links and Attachments; * Test configuration. The items below are only copied when using -CloneRequirements: * Requirements-based suites; * Requirements work items (product backlog items or user stories); * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the test plan to clone. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CloneRequirements -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CloneRequirements</maml:name>
          <maml:description>
            <maml:para>Clones requirements referenced by the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CopyAncestorHierarchy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CopyAncestorHierarchy</maml:name>
          <maml:description>
            <maml:para>Copies ancestor hierarchy. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: DeepClone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DeepClone</maml:name>
          <maml:description>
            <maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationWorkItemType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationWorkItemType</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the workitem type of the clone. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Test Case</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Clone all test suites recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: RelatedLinkComment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RelatedLinkComment</maml:name>
          <maml:description>
            <maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SuiteIds -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SuiteIds</maml:name>
          <maml:description>
            <maml:para>Clones only the specified suites. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DeepClone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DeepClone</maml:name>
        <maml:description>
          <maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Clone all test suites recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CopyAncestorHierarchy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CopyAncestorHierarchy</maml:name>
        <maml:description>
          <maml:para>Copies ancestor hierarchy. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CloneRequirements -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CloneRequirements</maml:name>
        <maml:description>
          <maml:para>Clones requirements referenced by the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationWorkItemType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationWorkItemType</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the workitem type of the clone. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Test Case</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: SuiteIds -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SuiteIds</maml:name>
        <maml:description>
          <maml:para>Clones only the specified suites. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: RelatedLinkComment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RelatedLinkComment</maml:name>
        <maml:description>
          <maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</dev:code>
        <dev:remarks>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Copy-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Get-TfsTestPlan</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Active -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Active</maml:name>
          <maml:description>
            <maml:para>Get only the active plans. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NoPlanDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoPlanDetails</maml:name>
          <maml:description>
            <maml:para>Get only basic properties of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Owner -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Owner</maml:name>
          <maml:description>
            <maml:para>Gets only the plans owned by the specified user. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Owner -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Owner</maml:name>
        <maml:description>
          <maml:para>Gets only the plans owned by the specified user. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoPlanDetails -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoPlanDetails</maml:name>
        <maml:description>
          <maml:para>Get only basic properties of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Active -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Active</maml:name>
        <maml:description>
          <maml:para>Get only the active plans. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Get-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>New-TfsTestPlan</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Creates a new test plan. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: EndDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>EndDate</maml:name>
          <maml:description>
            <maml:para>Specifies the end date of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Owner -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Owner</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: EndDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>EndDate</maml:name>
        <maml:description>
          <maml:para>Specifies the end date of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Owner -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Owner</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/New-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Remove-TfsTestPlan</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Deletes one or more test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Remove-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Rename-TfsTestPlan</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Renames a test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Rename-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsVersion -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsVersion</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsVersion</command:noun>
      <maml:description>
        <maml:para>Gets the version information about Team Foundation / Azure DevOps servers and Azure DevOps Services organizations. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsVersion</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ServerVersion -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Util.ServerVersion</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsVersion</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>Get-TfsWiki</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Wiki repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get all wikis -->
      <command:syntaxItem tfscmdlets:parameterSet="Get all wikis">
        <maml:name>Get-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Get Project Wiki">
        <maml:name>Get-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WikiV2 -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Get-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>New-TfsWiki</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Creates a new Wiki repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Create Code Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Create Code Wiki">
        <maml:name>New-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new Wiki </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Provision Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Provision Project Wiki">
        <maml:name>New-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: WikiV2 -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/New-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>Remove-TfsWiki</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Git repositories from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Remove code wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Remove code wiki">
        <maml:name>Remove-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the Wiki to be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Remove Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Remove Project Wiki">
        <maml:name>Remove-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Remove-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Copy-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Copy-TfsWorkItem</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Creates a copy of a work item, optionally changing its type. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) that is of the specified work item type. </maml:para>
      <maml:para>By default, the copy retains the same type of the original work item, unless the Type argument is specified </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationProject -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationProject</maml:name>
          <maml:description>
            <maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeAttachments -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeAttachments</maml:name>
          <maml:description>
            <maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NewType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewType</maml:name>
          <maml:description>
            <maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Copy</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewType</maml:name>
        <maml:description>
          <maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeAttachments -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeAttachments</maml:name>
        <maml:description>
          <maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeLinks -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeLinks</maml:name>
        <maml:description>
          <maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationProject -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationProject</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Copy</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Copy-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Get-TfsWorkItem</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Query by revision -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by revision">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Revision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
          <maml:name>Revision</maml:name>
          <maml:description>
            <maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ShowWindow -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowWindow</maml:name>
          <maml:description>
            <maml:para>Opens the specified work item in the default web browser. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by date -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by date">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsOf -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsOf</maml:name>
          <maml:description>
            <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get deleted -->
      <command:syntaxItem tfscmdlets:parameterSet="Get deleted">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Gets deleted work items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Simple query -->
      <command:syntaxItem tfscmdlets:parameterSet="Simple query">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsOf -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsOf</maml:name>
          <maml:description>
            <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ChangedBy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ChangedBy</maml:name>
          <maml:description>
            <maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ChangedDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ChangedDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date of the latest change to the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CreatedBy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CreatedBy</maml:name>
          <maml:description>
            <maml:para>Specifies the name or email of the user that created the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Object[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CreatedDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CreatedDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date when the work item was created. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Ever -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Ever</maml:name>
          <maml:description>
            <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StateChangeDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StateChangeDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns  work items that contain ANY ofthe supplied tags. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: WorkItemType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
          <maml:name>WorkItemType</maml:name>
          <maml:description>
            <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by WIQL -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by WIQL">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by filter -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by filter">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: Where -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Where</maml:name>
          <maml:description>
            <maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: WorkItemType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
        <maml:name>WorkItemType</maml:name>
        <maml:description>
          <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the WorkItemType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CreatedBy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CreatedBy</maml:name>
        <maml:description>
          <maml:para>Specifies the name or email of the user that created the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Object[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CreatedDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CreatedDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date when the work item was created. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ChangedBy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ChangedBy</maml:name>
        <maml:description>
          <maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ChangedDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ChangedDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date of the latest change to the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StateChangeDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StateChangeDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns  work items that contain ANY ofthe supplied tags. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Ever -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Ever</maml:name>
        <maml:description>
          <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Revision -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
        <maml:name>Revision</maml:name>
        <maml:description>
          <maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
        <maml:name>rev</maml:name>
        <maml:description>
          <maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
          <maml:para>This is an alias of the Revision parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsOf -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsOf</maml:name>
        <maml:description>
          <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>WIQL</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>QueryText</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>SavedQuery</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
        <maml:name>QueryPath</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Where -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Where</maml:name>
        <maml:description>
          <maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TimePrecision -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TimePrecision</maml:name>
        <maml:description>
          <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ShowWindow -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ShowWindow</maml:name>
        <maml:description>
          <maml:para>Opens the specified work item in the default web browser. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Gets deleted work items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeLinks -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeLinks</maml:name>
        <maml:description>
          <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Get-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Move-TfsWorkItem</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Moves a work item to a different team project in the same collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Comment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Comment</maml:name>
          <maml:description>
            <maml:para>Specifies a comment to be added to the history </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
          <maml:para>This is an alias of the Project parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Comment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Comment</maml:name>
        <maml:description>
          <maml:para>Specifies a comment to be added to the history </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Move-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>New-TfsWorkItem</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Creates a new work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItem</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies the type of the new work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AssignedTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AssignedTo</maml:name>
          <maml:description>
            <maml:para>Specifies the user this work item is assigned to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardLane -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardLane</maml:name>
          <maml:description>
            <maml:para>Specifies the board lane of the work item </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BypassRules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BypassRules</maml:name>
          <maml:description>
            <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the type of the new work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AssignedTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AssignedTo</maml:name>
        <maml:description>
          <maml:para>Specifies the user this work item is assigned to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BoardLane -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardLane</maml:name>
        <maml:description>
          <maml:para>Specifies the board lane of the work item </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BypassRules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BypassRules</maml:name>
        <maml:description>
          <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the type of the new work item. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/New-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Remove-TfsWorkItem</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Deletes a work item from a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies the work item to remove. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destroy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destroy</maml:name>
          <maml:description>
            <maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destroy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destroy</maml:name>
        <maml:description>
          <maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Remove-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Search-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Search-TfsWorkItem</command:name>
      <command:verb>Search</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Search-TfsWorkItem</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Results -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Results</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>100</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Results -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Results</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>100</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Search-TfsWorkItem</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Set-TfsWorkItem</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Sets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AssignedTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AssignedTo</maml:name>
          <maml:description>
            <maml:para>Specifies the user this work item is assigned to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardLane -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardLane</maml:name>
          <maml:description>
            <maml:para>Specifies the board lane of the work item </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BypassRules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BypassRules</maml:name>
          <maml:description>
            <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AssignedTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AssignedTo</maml:name>
        <maml:description>
          <maml:para>Specifies the user this work item is assigned to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BoardLane -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardLane</maml:name>
        <maml:description>
          <maml:para>Specifies the board lane of the work item </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BypassRules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BypassRules</maml:name>
        <maml:description>
          <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Set-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemAttachment -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Export-TfsWorkItemAttachment</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemAttachment</command:noun>
      <maml:description>
        <maml:para>Downloads one or more attachments from work items </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsWorkItemAttachment</maml:name>
        <!-- Parameter: Attachment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Attachment</maml:name>
          <maml:description>
            <maml:para>Specifies the attachment to download. Wildcards are supported. When omitted, all attachments in the specified work item are downloaded. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the directory to save the attachment to. When omitted, defaults to the current directory. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Attachment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Attachment</maml:name>
        <maml:description>
          <maml:para>Specifies the attachment to download. Wildcards are supported. When omitted, all attachments in the specified work item are downloaded. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the directory to save the attachment to. When omitted, defaults to the current directory. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Export-TfsWorkItemAttachment</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemHistory -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.History">
    <command:details>
      <command:name>Get-TfsWorkItemHistory</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemHistory</command:noun>
      <maml:description>
        <maml:para>Gets the history of changes of a work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemHistory</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: PSCustomObject -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCustomObject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/History/Get-TfsWorkItemHistory</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsWorkItemLink -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Add-TfsWorkItemLink</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsWorkItemLink</command:noun>
      <maml:description>
        <maml:para>Adds a link between two work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsWorkItemLink</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Add-TfsWorkItemLink</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemLink -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Get-TfsWorkItemLink</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLink</command:noun>
      <maml:description>
        <maml:para>Gets the links in a work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemLink</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeAttachments -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeAttachments</maml:name>
          <maml:description>
            <maml:para>Includes attachment information alongside links. When omitted, only links are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: LinkType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>LinkType</maml:name>
          <maml:description>
            <maml:para>Returns only the specified link types. When omitted, returns all link types. </maml:para>
            <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy</maml:para>
          </maml:description>
          <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: LinkType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>LinkType</maml:name>
        <maml:description>
          <maml:para>Returns only the specified link types. When omitted, returns all link types. </maml:para>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy</maml:para>
        </maml:description>
        <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: IncludeAttachments -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeAttachments</maml:name>
        <maml:description>
          <maml:para>Includes attachment information alongside links. When omitted, only links are retrieved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemRelation -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemRelation</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLink</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemLinkEndType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Get-TfsWorkItemLinkEndType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLinkEndType</command:noun>
      <maml:description>
        <maml:para>Gets the work item link end types of a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemLinkEndType</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLinkEndType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Export-TfsWorkItemQuery</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Exports a saved work item query to XML. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Work item queries can be exported to XML files (.WIQ extension) in order to be shared and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use this cmdlet to generate WIQ files compatible with the format supported by Team Explorer. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Export to file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <maml:name>Export-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Encoding -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Encoding</maml:name>
          <maml:description>
            <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>UTF-8</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: FlattenFolders -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FlattenFolders</maml:name>
          <maml:description>
            <maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Export to output stream -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
        <maml:name>Export-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsXml -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsXml</maml:name>
          <maml:description>
            <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Encoding -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Encoding</maml:name>
        <maml:description>
          <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>UTF-8</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: FlattenFolders -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FlattenFolders</maml:name>
        <maml:description>
          <maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsXml -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsXml</maml:name>
        <maml:description>
          <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Export-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Get-TfsWorkItemQuery</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Gets the definition of one or more work item saved queries. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Returns deleted items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Returns deleted items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>New-TfsWorkItemQuery</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Create a new work items query in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Personal</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Wiql -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
          <maml:name>Wiql</maml:name>
          <maml:description>
            <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Wiql -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
        <maml:name>Wiql</maml:name>
        <maml:description>
          <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
          <maml:para>This is an alias of the Wiql parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Personal</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemQueryFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Get-TfsWorkItemQueryFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemQueryFolder</command:noun>
      <maml:description>
        <maml:para>Gets the definition of one or more work item saved queries. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemQueryFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Returns deleted items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Returns deleted items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemQueryFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>New-TfsWorkItemQueryFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemQueryFolder</command:noun>
      <maml:description>
        <maml:para>Create a new work items query in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemQueryFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Personal</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Personal</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Get-TfsWorkItemTag</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Gets one or more work item tags. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeInactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeInactive</maml:name>
          <maml:description>
            <maml:para>Includes tags not associated to any work items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeInactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeInactive</maml:name>
        <maml:description>
          <maml:para>Includes tags not associated to any work items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Get-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>New-TfsWorkItemTag</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Creates a new work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new tag. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/New-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Remove-TfsWorkItemTag</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Deletes one or more work item tags. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Remove-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Rename-TfsWorkItemTag</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Renames a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the work item tag to rename. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Rename-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Export-TfsWorkItemType</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Exports an XML work item type definition from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Export to output stream -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
        <maml:name>Export-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: AsXml -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsXml</maml:name>
          <maml:description>
            <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeGlobalLists -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeGlobalLists</maml:name>
          <maml:description>
            <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Export to file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <maml:name>Export-TfsWorkItemType</maml:name>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeGlobalLists -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeGlobalLists</maml:name>
          <maml:description>
            <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          <maml:para>This is an alias of the Type parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeGlobalLists -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeGlobalLists</maml:name>
        <maml:description>
          <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsXml -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsXml</maml:name>
        <maml:description>
          <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Export-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Get-TfsWorkItemType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Type definitions from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by type -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by type">
        <maml:name>Get-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by work item -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by work item">
        <maml:name>Get-TfsWorkItemType</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
          <maml:para>This is an alias of the Type parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemType -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Get-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Import-TfsWorkItemType</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Imports a work item type definition into a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsWorkItemType</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Import-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsXamlBuild -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.XamlBuild">
    <command:details>
      <command:name>Start-TfsXamlBuild</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsXamlBuild</command:noun>
      <maml:description>
        <maml:para>Queues a XAML Build. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsXamlBuild</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/XamlBuild/Start-TfsXamlBuild</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
</helpItems>
tools\TfsCmdlets\TfsCmdlets.Format.ps1xml
 
tools\TfsCmdlets\TfsCmdlets.psd1
#
# Module manifest for module 'TfsCmdlets'
#
# Generated by: Igor Abade V. Leite
#
# Generated on: 9/10/2021
#

@{

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #Branch of this module
    Branch = 'main'

    #Desktop of this module
    Desktop = 'net471'

    #Build of this module
    Build = '2.1.2+2513.2'

    #Commit of this module
    Commit = 'ac3b32dfd38468c08f70ea32b546a00d61f9d8cc'

    #Version of this module
    Version = '2.1.2+2'

    PSData = @{

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

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

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

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

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

        # Prerelease string of this module
        # Prerelease = ''

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

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

    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

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

}


tools\TfsCmdlets\TfsCmdlets.psm1
# Private functions

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

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

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

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

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

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

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

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

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

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

    return $false
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
TfsCmdlets 2.5.1 48 Monday, August 22, 2022 Approved
TfsCmdlets 2.5.0 45 Wednesday, August 3, 2022 Approved
TfsCmdlets 2.4.1 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